1 2006-03-09 Wim Taymans <wim@fluendo.com>
3 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
4 * ext/pango/gsttextrender.c: (gst_text_render_init):
5 * gst/adder/gstadder.c: (gst_adder_init):
6 Don't leak padtemplates, patch by Christophe Fergeau,
9 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
11 * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
12 Fix invalid memory access: make sure string passed to
13 regexec() is NUL-termianted.
15 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
17 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
19 Refactor mpeg/audio typefinding to make it more maintainable
20 and easier to fine-tune. Make probing into middle of the file
21 work properly (fixes #333900, also see #152688).
23 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
25 * gst/typefind/gsttypefindfunctions.c:
26 (utf8_type_find_have_valid_utf8_at_offset):
27 Remove part from previous commit that was bogus:
28 g_utf8_validate() does in fact not accept embedded
29 zeroes, so we don't need to check for those (thanks
30 to Mike for the hint).
32 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
34 * gst/typefind/gsttypefindfunctions.c:
35 (utf8_type_find_count_embedded_zeroes),
36 (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
37 Make plain/text typefinder more conservative: firstly, check
38 for embedded zeroes, which are perfectly valid UTF-8 characters,
39 but also a fairly good sign that something is not a plain text
40 file; secondly, probe into the middle of the file if possible.
41 If we can't probe into the middle, limit the probability value
42 to be returned to TYPE_FIND_POSSIBLE (see #333900).
44 2006-03-08 Michael Smith <msmith@fluendo.com>
46 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
47 Make typefind function name for mpeg4 video unique.
49 2006-03-08 Wim Taymans <wim@fluendo.com>
51 * ext/libvisual/visual.c: (gst_visual_init),
52 (gst_visual_clear_actors), (gst_visual_dispose),
53 (gst_visual_reset), (gst_visual_src_setcaps),
54 (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
55 (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
56 (gst_visual_chain), (gst_visual_change_state):
57 Cleanups, post nice errors.
58 Handle sink and src events.
61 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
62 Use new basesink methods to configure max-lateness.
65 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
66 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
67 Debug statement cleanups.
69 * gst/volume/gstvolume.c: (gst_volume_class_init):
72 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
74 * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
75 (gst_text_overlay_init), (gst_text_overlay_set_property),
76 (gst_text_overlay_get_property):
77 Revert API/ABI break from March 1. Keep 'halign' and 'valign'
78 as string type properties, but mark them deprecated. Add
79 'halignment' and 'valignment' properties that use enums
82 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
84 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
85 Allow palettes with less than 256 colours in AVI files
86 (#333488, patch by: Fabrizio Gennari).
88 2006-03-07 Julien MOUTTE <julien@moutte.net>
90 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
91 (gst_text_overlay_video_event): Fix wrong EOS handling on text
92 pad. We were releasing the queued text buffer when we should keep
93 it until video pad gets EOS or discard the text buffer because it's
94 too old. That was eating the last subtitle buffer. Add some more
97 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
99 * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
100 (gst_text_overlay_video_chain):
101 Fix invalid memory access (we can't access a buffer after it's been
102 pushed downstream without taking a reference); fix memory leak (if
103 there's no text to render, bail out before allocating stuff).
105 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
107 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
108 (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
109 * ext/pango/gsttextoverlay.h:
110 If input is plain text, escape it before passing it to
111 pango_layout_set_markup().
113 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
115 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
116 Don't ignore flow return from gst_pad_push().
118 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
120 * ext/libvisual/visual.c: (gst_visual_getcaps),
121 (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
122 * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
123 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
124 (gst_vorbisenc_convert_sink):
125 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
126 (gst_audio_duration_from_pad_buffer):
127 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
128 (gst_audio_filter_chain):
129 * gst-libs/gst/rtp/gstbasertpdepayload.c:
130 (gst_base_rtp_depayload_setcaps):
131 * gst-libs/gst/video/video.c: (gst_video_frame_rate),
132 (gst_video_get_size):
133 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
134 Don't leak references returned by gst_pad_get_parent()
135 (#333663, based on patch by: Christophe Fergeau).
137 2006-03-06 Stefan Kost <ensonic@users.sf.net>
139 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
140 change location param details
141 * gst/volume/gstvolume.c: (plugin_init):
142 correct plugin description
144 2006-03-06 Tim-Philipp Müller <tim at centricular dot net>
146 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
147 (gst_gnome_vfs_src_check_get_range):
148 Override GstBaseSrc::check_get_range() in order to avoid opening
149 the resource just to check whether we can operate in pull-mode or
150 not - we can predict that pretty well from the URI alone. Should
151 fix problems with last.fm (#331690). (Requires latest core CVS).
153 2006-03-06 Wim Taymans <wim@fluendo.com>
155 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
156 (gst_video_sink_class_init):
157 Throw away frames that are later than 20 ms.
159 2006-03-06 Tim-Philipp Müller <tim at centricular dot net>
161 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
162 Set depth on WMA caps (#333545, patch by: Fabrizio Gennari).
164 2006-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
166 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
167 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
168 put Theora BOS pages before others. This hardcodes
169 the Ogg/Theora I profile, but hey.
171 2006-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
174 updated with some examples
175 * ext/theora/theoraenc.c: (granulepos_to_timestamp),
176 (granulepos_add), (theora_buffer_from_packet):
177 * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
178 (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
179 (gst_vorbisenc_chain):
180 implement strategy from ext/ogg/README
181 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
182 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
183 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
184 (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
185 Fix muxer so that oggz-validate is happy with all streams;
186 except for no eos mark, and the BOS page ordering
187 * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
188 (check_buffer_granulepos):
189 * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
190 update tests to check for OFFSET being set as requested
191 fixed type of granulepos, it's not a ClockTime
193 2006-03-05 Julien MOUTTE <julien@moutte.net>
195 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
196 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
197 Check that the xvimage we are creating has a correct size
198 before returning it. (#314897)
200 2006-03-05 Tim-Philipp Müller <tim at centricular dot net>
202 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
203 Give id3 and ape tag typefinders a rank slightly higher
204 than PRIMARY to ensure they're always run before any of
205 the other typefinders (in particular wav and mp3) (#324186).
207 2006-03-05 Tim-Philipp Müller <tim at centricular dot net>
209 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
210 Add support for '3IVD' fourcc (#333403).
212 2006-03-04 Tim-Philipp Müller <tim at centricular dot net>
215 Bump requirements to GStreamer CVS for the new error enum.
217 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
218 Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
219 space left on the device (fixes #333352).
221 2006-03-04 Sebastien Moutte <sebastien@moutte.net>
224 add a project file for libgstvolume
227 2006-03-03 Thomas Vander Stichele <thomas at apestaart dot org>
229 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
230 * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
232 Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
233 Set IN_CAPS on header buffers
235 2006-03-02 Wim Taymans <wim@fluendo.com>
237 * docs/plugins/Makefile.am:
238 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
239 * docs/plugins/gst-plugins-base-plugins-sections.txt:
240 Add audioresample to docs.
242 * gst/audioconvert/gstaudioconvert.c:
245 * gst/audioresample/gstaudioresample.c:
246 (gst_audioresample_base_init), (gst_audioresample_class_init),
247 (gst_audioresample_init), (gst_audioresample_dispose),
248 (audioresample_get_unit_size), (audioresample_transform_caps),
249 (resample_set_state_from_caps), (audioresample_transform_size),
250 (audioresample_set_caps), (audioresample_event),
251 (audioresample_do_output), (audioresample_transform),
252 (audioresample_pushthrough), (gst_audioresample_set_property),
253 (gst_audioresample_get_property), (plugin_init):
254 * gst/audioresample/gstaudioresample.h:
258 2006-03-02 Wim Taymans <wim@fluendo.com>
260 * docs/plugins/Makefile.am:
261 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
262 * docs/plugins/gst-plugins-base-plugins-sections.txt:
263 Added videoscale to docs.
265 * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
266 (gst_video_rate_swap_prev), (gst_video_rate_event),
267 (gst_video_rate_chain):
270 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
271 (gst_video_scale_init), (gst_video_scale_prepare_size),
272 (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
273 (gst_video_scale_fixate_caps), (gst_video_scale_transform):
274 * gst/videoscale/gstvideoscale.h:
275 Added docs, examples.
277 Post errors instead of g_warning.
279 2006-03-02 Wim Taymans <wim@fluendo.com>
281 * docs/libs/gst-plugins-base-libs-docs.sgml:
282 * docs/libs/gst-plugins-base-libs-sections.txt:
283 * docs/libs/gst-plugins-base-libs.types:
284 * docs/plugins/Makefile.am:
285 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
286 * docs/plugins/gst-plugins-base-plugins-sections.txt:
287 Added some more docs to libs and plugins.
289 * gst-libs/gst/audio/gstringbuffer.c:
290 (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
291 * gst-libs/gst/audio/gstringbuffer.h:
292 Document ringbuffer some more.
294 * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
295 (gst_video_rate_setcaps), (gst_video_rate_reset),
296 (gst_video_rate_init), (gst_video_rate_flush_prev),
297 (gst_video_rate_swap_prev), (gst_video_rate_event),
298 (gst_video_rate_chain), (gst_video_rate_change_state):
299 * gst/videorate/gstvideorate.h:
300 Fix videorate to use segments.
301 Make it work with 0/1 framerates (closes #331903)
302 Handle EOS correctly.
305 2006-03-02 Tim-Philipp Müller <tim at centricular dot net>
307 * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
308 (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
309 (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
310 In state change function, first chain up to parent class,
311 then handle downwards state change stuff. Remove some
312 commented out cruft from 0.8 code.
314 2006-03-02 Tim-Philipp Müller <tim at centricular dot net>
316 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
317 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
318 (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
319 (gst_ogm_parse_chain):
320 Don't remove/re-add source pad if the new caps are the same as
321 the old caps anyway (#333042). When removing source pad, don't
322 unref it afterwards - we didn't ref it when adding. Sprinkle some
323 GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
324 after using gst_pad_get_parent(). Return downstream flow return
325 value in chain function.
327 2006-03-02 Wim Taymans <wim@fluendo.com>
329 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
330 * docs/plugins/gst-plugins-base-plugins.args:
331 * docs/plugins/gst-plugins-base-plugins.hierarchy:
332 * docs/plugins/gst-plugins-base-plugins.interfaces:
333 * docs/plugins/gst-plugins-base-plugins.signals:
334 Fix hierarchy, added some more elements to the docs.
336 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
337 (gst_ffmpegcsp_get_type):
338 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
339 Fix docs for ffmpegcolorspace.
341 2006-03-01 Tim-Philipp Müller <tim at centricular dot net>
343 * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
344 (apetag_type_find), (ape_type_find), (plugin_init):
345 Some typefinding fine-tuning:
346 - rank ID3/APE tags in order of preference via probabilities, so that
347 ID3v2 > APEv2 > APEv1 > ID3v1.
348 - three or four bytes don't really justify MAXIMUM probability,
349 change those to 'very likely' (musepack and monkeysaudio).
351 2006-03-01 Wim Taymans <wim@fluendo.com>
353 * docs/plugins/Makefile.am:
354 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
355 * docs/plugins/gst-plugins-base-plugins-sections.txt:
356 * ext/alsa/gstalsamixer.c:
357 * ext/alsa/gstalsamixer.h:
358 * ext/alsa/gstalsamixerelement.c:
359 (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
360 * ext/alsa/gstalsamixerelement.h:
361 * ext/alsa/gstalsasink.c:
362 * ext/alsa/gstalsasink.h:
363 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
365 * ext/alsa/gstalsasrc.h:
369 2006-03-01 Wim Taymans <wim@fluendo.com>
371 * ext/theora/Makefile.am:
374 2006-03-01 Wim Taymans <wim@fluendo.com>
376 * docs/plugins/Makefile.am:
377 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
378 * docs/plugins/gst-plugins-base-plugins-sections.txt:
379 * ext/gnomevfs/gstgnomevfssink.h:
380 * ext/gnomevfs/gstgnomevfssrc.h:
381 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
382 * ext/vorbis/vorbisdec.h:
383 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
384 * ext/vorbis/vorbisenc.h:
385 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
386 (vorbis_parse_chain), (vorbis_parse_change_state):
387 * ext/vorbis/vorbisparse.h:
388 * gst/audioconvert/gstaudioconvert.h:
389 * gst/tcp/gsttcpserversink.h:
390 * gst/videotestsrc/gstvideotestsrc.c:
391 * gst/videotestsrc/gstvideotestsrc.h:
392 * gst/volume/gstvolume.c:
393 * gst/volume/gstvolume.h:
395 Added docs for vorbisdec and vorbisparse.
398 2006-03-01 Wim Taymans <wim@fluendo.com>
400 * docs/plugins/Makefile.am:
401 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
402 * docs/plugins/gst-plugins-base-plugins-sections.txt:
403 * ext/pango/gstclockoverlay.h:
404 * ext/pango/gsttextoverlay.h:
405 * ext/pango/gsttextrender.h:
406 * ext/pango/gsttimeoverlay.h:
407 * ext/theora/gsttheoradec.h:
408 * ext/theora/gsttheoraenc.h:
409 * ext/theora/theoradec.c:
410 * ext/theora/theoraenc.c:
411 * gst/audioconvert/gstaudioconvert.h:
412 * gst/audiotestsrc/gstaudiotestsrc.h:
413 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
414 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
415 * gst/tcp/gstmultifdsink.h:
416 Updated/added documentation.
418 * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
419 (gst_text_overlay_halign_get_type),
420 (gst_text_overlay_wrap_mode_get_type),
421 (gst_text_overlay_base_init), (gst_text_overlay_class_init),
422 (gst_text_overlay_init), (gst_text_overlay_set_property),
423 (gst_text_overlay_get_property):
424 Fix up properties to be enums instead of string to make bindings,
425 introspection and automatic GUI creation possible.
426 Add getters for the properties.
428 2006-02-28 Sebastien Moutte <sebastien@moutte.net>
430 * gst/audiotestsrc/gstaudiotestsrc.c:
431 added defines of M_PI and M_PI_2
432 * gst/ffmpegcolorspace/avcodec.h:
433 removed #include "stdint.h" for win32 as _stdint.h is
434 autogenerated to win32/common
435 * win32/common/libgstaudio.def:
436 * win32/common/libgsttag.def:
439 some project files bugs corrected
441 project files are reset to the default vs7 configuration
442 (they link to msvcr71.dll using default optimizations)
444 2006-02-28 Wim Taymans <wim@fluendo.com>
446 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
449 2006-02-28 Edward Hervey <edward@fluendo.com>
451 * ext/alsa/gstalsasrc.c:
452 Set proper class on the ElementDetails:
453 Source/Audio instead of Src/Audio/
455 2006-02-28 Edward Hervey <edward@fluendo.com>
457 * gst/videoscale/vs_scanline.c:
458 (vs_scanline_resample_nearest_RGBA):
459 Revert optimization in videoscale. It should go in liboil and have
460 an appropriate liboil function.
462 2006-02-28 Wim Taymans <wim@fluendo.com>
464 * gst-libs/gst/audio/gstbaseaudiosink.c:
465 (gst_base_audio_sink_provide_clock):
466 Don't try to provide a clock in the NULL state.
468 2006-02-28 Wim Taymans <wim@fluendo.com>
470 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
471 (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
472 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
473 (gst_ogg_demux_deactivate_current_chain),
474 (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
475 (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
476 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
477 (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
478 Use GstSegment infrastructure to remove duplicated code
479 and handle more seek cases correctly.
481 2006-02-28 Wim Taymans <wim@fluendo.com>
483 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
484 (gst_ffmpegcsp_transform):
485 Don't ignore return code from ffmpeg convert function.
487 * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
488 Split out some long statements to ease debugging.
490 2006-02-27 Jan Schmidt <thaytan@mad.scientist.com>
492 * ext/libvisual/visual.c: (gst_visual_init),
493 (gst_vis_src_negotiate), (get_buffer), (plugin_init):
494 Don't use gst_pad_use_fixed_caps, because it prevents downstream from
495 being able to renegotiate the size. Instead, use the negotiation
496 algorithm from the goom plugin to pick an initial output caps.
498 Also, allow theoretical libvisual plugins that might support non-GL
499 output even if they also do GL.
501 2006-02-26 Julien MOUTTE <julien@moutte.net>
503 * ext/libvisual/visual.c: (gst_visual_init),
504 (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
505 (plugin_init): Load only non GL plugins. Fix some memleaks and
506 possible negotiation issues.
508 2006-02-25 Julien MOUTTE <julien@moutte.net>
510 * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
512 2006-02-24 Michael Smith <msmith@fluendo.com>
514 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
515 (cmml_type_find), (plugin_init):
516 Fix CMML type find function to not require a specific minor version
519 Add an MPEG4 video elementary stream typefind function.
521 2006-02-04 Michael Smith <msmith@fluendo.com>
523 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
524 (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
525 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
526 (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
527 (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
528 (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
529 Annodex support in ogg demuxer. Doesn't do very much without the
530 other annodex patches (to come).
532 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
534 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
535 Pick up palette for MS video v1 (#327028, patch by:
536 Fabrizio Gennari <fabrizio dot get at tiscali dot it>)
538 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
540 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
541 (gst_ffmpegcsp_caps_remove_format_info),
542 (gst_ffmpegcsp_get_unit_size):
543 The 'palette_data' field from incoming RGB caps shouldn't be
544 proxied on outgoing YUV caps; also, restrict unit size
545 adjustment in case of paletted data only to the unit that
546 actually has a palette. Fixes #330711.
548 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
550 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
551 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
552 (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
553 (gst_ffmpegcsp_get_unit_size):
554 Plug some memory leaks.
556 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
558 * sys/ximage/Makefile.am:
559 * sys/xvimage/Makefile.am:
560 Add some _CFLAGS and _LIBS that seem to be missing
561 and/or required for Cygwin (see #317048).
563 2006-02-22 Wim Taymans <wim@fluendo.com>
565 * ext/alsa/gstalsasrc.c:
566 Fix description as pointed out by caugier.
568 2006-02-22 Tommi Myöhänen <ext-tommi do myohanen at nokia dot com>
570 Reviewed by : Edward Hervey <edward@fluendo.com>
572 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
574 Better 3gp typefinding (#331526).
576 2006-02-21 Tim-Philipp Müller <tim at centricular dot net>
578 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
579 Don't send EOS event here, the base class will send one for us.
581 * gst/playback/gstplaybasebin.c: (prepare_output):
582 Subpictures without video stream aren't allowed either.
584 * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
585 Fix debug statement copy'n'paste-o.
587 2006-02-21 Tim-Philipp Müller <tim at centricular dot net>
589 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
590 Fix issues with mixer keeping state when muting/unmuting
591 and when changing the volume whilst muted (see #331763
594 2006-02-20 Tim-Philipp Müller <tim at centricular dot net>
596 * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
597 (parse_subrip), (gst_sub_parse_format_autodetect):
598 Set right caps given that we send escaped text. Also,
599 honour <i></i>, <b></b> and <u></u> markers that can be found
600 in .srt files (fixes #310202).
602 2006-02-20 Tim-Philipp Müller <tim at centricular dot net>
604 * gst-libs/gst/audio/mixerutils.c:
605 (element_factory_rank_compare_func):
606 Make order in which elements are tried more determinable.
608 2006-02-20 Julien MOUTTE <julien@moutte.net>
610 * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
611 (remove_element_chain), (cleanup_decodebin),
612 (gst_decode_bin_change_state): Make decodebin reusable by
613 fixing remove_element_chain first and then introduce a
614 cleaner in state change to ->NULL. (Closes #331678)
616 2006-02-19 Wim Taymans <wim@fluendo.com>
618 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
619 use 0666 mask when creating files so umask gets applied
620 correctly. Fixes #331295.
622 2006-02-19 Tim-Philipp Müller <tim at centricular dot net>
624 * gst/subparse/Makefile.am:
625 * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
626 (gst_ssa_parse_dispose), (gst_ssa_parse_init),
627 (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
628 (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
629 (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
630 (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
631 * gst/subparse/gstssaparse.h:
632 * gst/subparse/gstsubparse.c: (plugin_init):
633 Add very basic parser for SSA subtitle streams (as often
634 found in matroska files).
636 2006-02-19 Tim-Philipp Müller <tim at centricular dot net>
638 * gst/playback/gstdecodebin.c: (mimetype_is_raw):
639 That should be text/x-pango-markup, not text/x-pango-layout.
641 2006-02-19 Julien MOUTTE <julien@moutte.net>
643 * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
646 2006-02-19 Julien MOUTTE <julien@moutte.net>
648 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
649 (gst_text_overlay_finalize), (gst_text_overlay_init),
650 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
651 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
652 (gst_text_overlay_text_event), (gst_text_overlay_video_event),
653 (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
654 (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
655 Fix state change deadlock.
657 2006-02-19 Julien MOUTTE <julien@moutte.net>
659 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
660 (gst_text_overlay_finalize), (gst_text_overlay_init),
661 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
662 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
663 (gst_text_overlay_text_event), (gst_text_overlay_video_event),
664 (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
665 (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
666 * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
669 2006-02-19 Julien MOUTTE <julien@moutte.net>
671 * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
672 should be considered as row.
674 2006-02-19 Julien MOUTTE <julien@moutte.net>
676 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
678 * gst/playback/gststreaminfo.h: Introduce language informations.
680 2006-02-18 Jan Schmidt <thaytan@mad.scientist.com>
682 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
683 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
684 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
685 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
686 Set shared memory segments to be deleted as soon as we have attached,
687 that way they get cleaned up automatically if we crash.
689 2006-02-18 Julien MOUTTE <julien@moutte.net>
691 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text):
692 * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
693 functions are called with lock held.
695 2006-02-18 Julien MOUTTE <julien@moutte.net>
697 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
698 (gst_text_overlay_finalize), (gst_text_overlay_init),
699 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
700 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
701 (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
702 (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
703 (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
704 (gst_text_overlay_change_state): Refactoring of textoverlay
705 without collectpads. This now supports sparse subtitles coming
706 from a demuxer instead of a sub file. Seeking is still broken
707 though. Need to discuss with wtay some more on how to handle
709 * ext/pango/gsttextoverlay.h:
710 * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
711 subtitles coming from the demuxer.
713 2006-02-17 Wim Taymans <wim@fluendo.com>
715 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
716 (gst_vorbisenc_convert_sink):
717 Use some more scaling functions.
719 2006-02-17 Tim-Philipp Müller <tim at centricular dot net>
721 * ext/cdparanoia/gstcdparanoiasrc.c:
722 (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
723 (gst_cd_paranoia_paranoia_callback),
724 (gst_cd_paranoia_src_signal_is_being_watched),
725 (gst_cd_paranoia_src_read_sector):
726 * ext/cdparanoia/gstcdparanoiasrc.h:
727 Add back 'transport-error' and 'uncorrected-error' signals and
728 make them actually be fired when bad stuff happens (#319340).
730 2006-02-17 Wim Taymans <wim@fluendo.com>
732 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
733 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
734 (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
735 (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
736 (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
737 (gst_ring_buffer_pause), (gst_ring_buffer_stop),
738 (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
739 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
740 (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
741 (gst_ring_buffer_clear):
745 2006-02-17 Wim Taymans <wim@fluendo.com>
747 * gst-libs/gst/audio/TODO:
750 * gst-libs/gst/audio/gstbaseaudiosink.c:
751 (gst_base_audio_sink_get_offset):
752 When trying to play samples ASAP and we don't have a
753 previous sample, try to play at position 0 instead of
756 2006-02-17 Wim Taymans <wim@fluendo.com>
758 * ext/alsa/gstalsasink.c: (gst_alsasink_open),
759 (gst_alsasink_reset):
760 Also release lock when we get an error in _reset();
761 fix an error message.
763 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
765 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
766 (gst_alsasink_init), (get_channel_free_structure),
767 (caps_add_channel_configuration), (gst_alsasink_getcaps),
768 (gst_alsasink_close):
769 * ext/alsa/gstalsasink.h:
770 Add support for more than 2 channels (#326720).
772 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
774 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
775 Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
776 with 4 or 6 channels, assume a default channel layout to make things
777 work (not sure there's anything else we can do in those cases).
779 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
781 * gst-libs/gst/audio/multichannel.c:
784 * gst-libs/gst/riff/Makefile.am:
785 * gst-libs/gst/riff/riff-ids.h:
786 * gst-libs/gst/riff/riff-media.c:
787 (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
788 Add support for WAVEFORMATEX, eg. PCM audio with more than two
789 channels and a channel layout map.
791 2006-02-16 Mathieu Garcia <b0nk at free dot fr>
793 Reviewed by Edward Hervey <edward@fluendo.com>
795 * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA):
796 C-level optimization of the RGBA nearest neighbour function.
797 Eventually this might end up in liboil with vectorized versions.
799 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
801 * gst-libs/gst/audio/multichannel.c:
802 (gst_audio_get_channel_positions):
803 When we have more than 2 channels, but no channel layout is
804 specified in the caps, return some default channel layout
805 to the caller and warn about about a possibly buggy element
806 (could be buggy filtercaps as well of course) (#317038).
808 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
810 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
811 Add gst-libs/gst/cdda to list of lib search paths.
813 2006-02-15 Andy Wingo <wingo@pobox.com>
815 * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
816 timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
817 to the Lord Jesus that I do not have to touch the ogg muxer ever
820 2006-02-15 Edward Hervey <edward@fluendo.com>
822 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
823 quicktime movie files can also contain 'uuid' atoms.
825 2006-02-14 Tim-Philipp Müller <tim at centricular dot net>
827 * gst/audioconvert/plugin.c: (plugin_init):
828 Register the GstAudioChannelPosition enum type with the type
829 system in the plugin_init function, so that it is known before
830 any element actually makes use of multi-channel stuff. This is
831 required for example if one wants to be able to deserialise/use
832 a caps string with channel positions before any pipeline has
833 been setup and started, like with gst-launch.
835 2006-02-14 Wim Taymans <wim@fluendo.com>
837 * gst-libs/gst/audio/gstringbuffer.c:
838 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
839 (gst_ring_buffer_samples_done), (wait_segment),
840 (gst_ring_buffer_commit), (gst_ring_buffer_clear):
841 Add some compiler G_(UN_)LIKELY help.
842 SIGNAL the ringbuffer waiters when going to PAUSED as well to
843 make sure they can exit their functions. Should fix #330748
845 2006-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
850 * win32/common/_stdint.h:
851 Windows does not have long long; copy the generated _stdint.h
852 * win32/common/interfaces-enumtypes.c:
853 (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
854 (gst_mixer_track_flags_get_type),
855 (gst_tuner_channel_flags_get_type):
856 * win32/common/multichannel-enumtypes.c:
857 (gst_audio_channel_position_get_type):
860 2006-02-13 Wim Taymans <wim@fluendo.com>
862 * gst-libs/gst/audio/gstbaseaudiosink.c:
863 (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
864 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
865 Always sync on first sample we receive when starting.
867 2006-02-13 Wim Taymans <wim@fluendo.com>
869 * gst/playback/gstplaybin.c: (gen_vis_element):
871 Move queue after tee so we don't queue video buffers but
872 audio samples instead. Fixes problems where the video queue
873 is filled and the audio queue empty.
875 2006-02-13 Tim-Philipp Müller <tim at centricular dot net>
877 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
878 No need to push an EOS event here, GstBaseSrc will do that for us
879 when we return FLOW_UNEXPECTED.
881 2006-02-12 Wim Taymans <wim@fluendo.com>
883 * gst-libs/gst/audio/gstbaseaudiosink.c:
884 (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
885 (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
886 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
887 Use scale functions when possible.
889 Free clockid when after waiting for EOS.
890 Use G_(UN_)LIKLY when it makes sense.
891 Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
893 2006-02-12 Edward Hervey <edward@fluendo.com>
895 * gst/playback/gstplaybasebin.c: (prepare_output):
896 Remove stray semi-colon (fixes #330888).
898 2006-02-12 Jan Schmidt <thaytan@mad.scientist.com>
900 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
901 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
902 Fix up the XShm call testing so that we catch errors, and don't
903 cause new ones by attempting to detach from a segment we failed
904 to attach to. Fixes #312439.
906 2006-02-10 Edward Hervey <edward@fluendo.com>
908 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
909 Added flv file typefind (video/x-flv).
911 2006-02-10 Edward Hervey <edward@fluendo.com>
913 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
914 (gst_riff_create_video_template_caps):
915 Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
916 Also added the caps to the default set of riff video caps.
918 2006-02-09 Andy Wingo <wingo@pobox.com>
920 * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
921 time and the end time of the last packet in the page.
922 (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
923 on the pages in our queue, set the duration as well. Reflow a
925 (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
926 Fixes bad muxing order.
928 2006-02-09 Thomas Vander Stichele <thomas at apestaart dot org>
930 * gst-libs/gst/rtp/gstbasertppayload.c:
931 (gst_basertppayload_setcaps), (gst_basertppayload_push):
932 update seqnum before setting it on the packet; this makes sure
933 that the timestamp and seqnum properties match after pushing
936 2006-02-09 Andy Wingo <wingo@pobox.com>
938 * gst-libs/gst/audio/gstringbuffer.c
939 (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
940 overflow after 13.5 hours of recording. Kapow!
942 * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
943 the buffer size -- we don't care about underrun/overrun reporting
944 right now, just need to return a useful value.
946 2006-02-09 Jan Schmidt <thaytan@mad.scientist.com>
951 === release 0.10.3 ===
953 2006-02-09 Jan Schmidt <thaytan@mad.scientist.com>
956 releasing 0.10.3, "Under Pressure"
958 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
961 Drat. Bump libtool version number for new API.
962 Prelease 0.10.2.3 (of 0.10.3)
964 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
967 * win32/common/config.h:
968 0.10.2.2 prerelease (of 0.10.3).
970 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
972 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
973 Revert Andy's newsegment change pending a more correct
976 2006-02-08 Thomas Vander Stichele <thomas at apestaart dot org>
978 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
979 (qt_type_find), (plugin_init):
980 detect more files as 3gp
981 group and reorder the iso file formats
983 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
985 * ext/vorbis/vorbis.c: (plugin_init):
986 Register musicbrainz tags, so apps don't have to.
988 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
990 * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
991 (gst_tag_to_vorbis_tag):
992 Make sure we called gst_tag_register_musicbrainz_tags()
993 before possibly mapping a vorbiscomment string from/to a
996 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
998 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
999 In case we can't find the required number of consecutive
1000 mpeg audio frames to positively identify an MPEG audio
1001 stream, check if there's at least a valid mpeg audio
1002 frame right at offset 0 and if so suggest mpeg/audio
1003 caps with a very low probability (#153004).
1005 2006-02-07 Andy Wingo <wingo@pobox.com>
1007 * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
1008 a TIME segment if we get timestamped buffers. Requires recent
1009 fixes in core to work properly.
1011 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
1013 * gst/playback/gstplaybasebin.c: (prepare_output):
1014 Don't print the URI as part of the error message, it
1015 makes error dialogs look rather ugly, especially if
1016 the URI is very long or has characters in it that
1019 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
1021 * gst/playback/gstplaybasebin.c: (prepare_output):
1022 Error out if we have only text or subtitles, but nothing
1023 else. Also error out if we have subtitles but no video
1026 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
1028 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
1029 Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
1030 Post an error message on the bus when we encounter an
1031 error, which will hopefully be more meaningful than the
1032 'Internal Flow Error' message users get to see if we
1033 just return GST_FLOW_ERROR.
1035 2006-02-07 Andy Wingo <wingo@pobox.com>
1037 * configure.ac (GST_MAJORMINOR): Update core version req to
1038 0.10.2.2, for the collectpads API addition (#330244).
1040 2006-02-06 Tim-Philipp Müller <tim at centricular dot net>
1042 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
1043 Return FALSE from plugin_init() when GnomeVFS can't
1044 be initialised for some reason (#328423).
1046 2006-02-06 Julien MOUTTE <julien@moutte.net>
1048 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event):
1049 Stick to seeking theory until i find the bug.
1050 * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
1052 2006-02-06 Jan Schmidt <thaytan@mad.scientist.com>
1054 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
1055 (theora_enc_finalize), (theora_enc_sink_setcaps),
1056 (theora_set_header_on_caps), (theora_enc_chain),
1057 (theora_enc_change_state):
1058 * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
1059 Make theoraenc and the tests leak free. Like, really.
1061 2006-02-06 Jan Schmidt <thaytan@mad.scientist.com>
1063 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
1064 (theora_enc_finalize), (theora_enc_sink_setcaps):
1065 Add a finalize method to ensure we clean up state even if
1066 someone omitted the state change back to NULL.
1068 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
1069 (gst_vorbisenc_chain):
1070 Free some more leaked bits.
1072 * tests/check/pipelines/theoraenc.c: (start_pipeline),
1074 Wait for state changes to happen if they're ASYNC.
1076 This ought to teach those fancy pants buildbots a lesson.
1078 2006-02-05 Jan Schmidt <thaytan@mad.scientist.com>
1080 * gst-libs/gst/tag/gstid3tag.c:
1081 Add mapping for ID3 International Standard Recording Code
1084 2006-02-05 Jan Schmidt <thaytan@mad.scientist.com>
1086 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
1087 Don't leak tag names.
1089 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
1091 * docs/libs/gst-plugins-base-libs-docs.sgml:
1092 * docs/libs/gst-plugins-base-libs-sections.txt:
1093 * gst-libs/gst/tag/gstid3tag.c:
1094 * gst-libs/gst/tag/gstvorbistag.c:
1095 * gst-libs/gst/tag/tags.c:
1096 Split libgsttag docs into multiple sections.
1098 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
1100 * docs/libs/Makefile.am:
1101 * docs/libs/gst-plugins-base-libs-docs.sgml:
1102 * docs/libs/gst-plugins-base-libs-sections.txt:
1103 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
1104 * gst-libs/gst/tag/gstvorbistag.c:
1105 * gst-libs/gst/tag/tag.h:
1106 * gst-libs/gst/tag/tags.c:
1107 Add libgsttag to the docs.
1109 2006-02-05 Julien MOUTTE <julien@moutte.net>
1111 * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
1112 (gst_text_overlay_init), (gst_text_overlay_src_event),
1113 (gst_text_overlay_collected): Fix clockoverlay.
1115 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
1117 * docs/libs/compiling.sgml:
1118 Fix typo: it's pkg-config, not pkg-gconfig
1120 * docs/libs/gst-plugins-base-libs-docs.sgml:
1121 * docs/libs/gst-plugins-base-libs-sections.txt:
1122 * docs/libs/tmpl/gstgconf.sgml:
1123 There is no libgstgconf in 0.10, remove it
1126 2006-02-05 Julien MOUTTE <julien@moutte.net>
1128 * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
1129 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
1130 (gst_text_overlay_src_event), (gst_text_overlay_collected):
1131 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
1132 (gst_sub_parse_class_init), (gst_sub_parse_init),
1133 (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
1134 (parse_mpsub), (parser_state_init), (handle_buffer),
1135 (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
1136 * gst/subparse/gstsubparse.h: Introduce seeking code.
1138 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
1140 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
1141 Add comment about LANGUAGE tag inconsistency (we want
1142 ISO-639-1, but extract three-letter identifiers?)
1145 Add two translatable files.
1147 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
1149 * gst-libs/gst/tag/Makefile.am:
1150 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
1151 * gst-libs/gst/tag/tag.h:
1152 * gst-libs/gst/tag/tags.c:
1153 (gst_tag_register_musicbrainz_tags_internal),
1154 (gst_tag_register_musicbrainz_tags):
1155 Forward-port some tags stuff from the 0.8 branch. This is
1156 mostly the addition of musicbrainz tags and their mapping
1157 to vorbistags, and a vorbistag mapping of the language tag.
1159 2006-02-05 Julien MOUTTE <julien@moutte.net>
1161 * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
1164 2006-02-04 David Schleef <ds@schleef.org>
1166 * ext/ogg/gstoggmux.c:
1167 * gst/typefind/gsttypefindfunctions.c:
1168 Add Dirac typefinding and add dirac format to oggmux.
1170 2006-02-03 Tim-Philipp Müller <tim at centricular dot net>
1172 * gst/playback/gstdecodebin.c: (try_to_link_1):
1173 Don't put essential function call into
1174 g_return_*() macro, otherwise it'll all be
1175 replaced by NOOPs when compiling with
1176 G_DISABLE_CHECKS defined.
1178 2006-02-03 Edgard Lima <edgard.lima@indt.org.br>
1180 * ext/ogg/gstoggdemux.c:
1181 * ext/ogg/gstoggparse.c:
1182 * gst/tcp/gsttcpserversink.c:
1183 * sys/v4l/v4lsrc_calls.c:
1184 * sys/v4l/v4lsrc_calls.h:
1185 Just make it compile with --disable-gst-debug.
1187 2006-02-03 Wim Taymans <wim@fluendo.com>
1189 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
1190 (gst_alsasink_class_init), (gst_alsasink_init),
1191 (gst_alsasink_write), (gst_alsasink_reset):
1192 * ext/alsa/gstalsasink.h:
1193 Add lock to protect alsa calls.
1194 Implement reset to flush samples ASAP, does not work
1197 2006-02-02 Wim Taymans <wim@fluendo.com>
1199 * gst-libs/gst/audio/gstbaseaudiosink.c:
1200 (gst_base_audio_sink_provide_clock):
1201 Ugh.. getting late I guess...
1203 2006-02-02 Wim Taymans <wim@fluendo.com>
1205 * gst-libs/gst/audio/gstbaseaudiosink.c:
1206 (gst_base_audio_sink_provide_clock),
1207 (gst_base_audio_sink_set_property),
1208 (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
1209 Don't try to provide a clock when we are not negotiated since
1210 we might not be able to make it run.
1212 2006-02-02 Tim-Philipp Müller <tim at centricular dot net>
1214 * gst/playback/gstdecodebin.c: (try_to_link_1):
1215 Unlinking two source pads is ... hard.
1217 2006-02-02 Wim Taymans <wim@fluendo.com>
1219 * gst-libs/gst/audio/TODO:
1222 * gst-libs/gst/audio/gstbaseaudiosink.c:
1223 (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
1224 On EOS, wait till the last sample is played before posting EOS.
1226 2006-02-01 Philippe Kalaf <burger at speedy dot org>
1228 * gst-libs/gst/rtp/gstbasertpdepayload.c:
1229 Patch by Kai Vehmanen : Adds ability to enable newsegment bypass by
1230 setting queue_delay to zero. Also avoid thread being started if
1231 queue_delay is zero.
1233 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
1235 * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
1236 Make test work again by connecting fakesinks to each decoded pad,
1237 which makes the pipeline wait until each fakesink has a buffer
1238 queued before going to PAUSED state. At that point we know the
1239 decodebin pads are negotiated.
1241 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
1243 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
1244 (gst_cdda_base_src_handle_event):
1245 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
1246 Pass unhandled queries to the parent class's query function.
1248 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
1250 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
1251 (gst_ogg_pad_src_query):
1252 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
1253 * ext/theora/theoradec.c: (theora_dec_src_query),
1254 (theora_dec_sink_query):
1255 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
1256 (vorbis_dec_sink_query):
1257 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
1258 (gst_vorbisenc_sink_query):
1259 * gst/adder/gstadder.c: (gst_adder_query):
1260 Pass unhandled queries upstream instead of just
1261 dropping them (#326447). Also, fix supported
1262 query types list for some elements.
1264 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
1266 * gst/typefind/gsttypefindfunctions.c: (au_type_find),
1267 (paris_type_find), (ilbc_type_find), (plugin_init):
1268 Fix typefinding for audio/x-au, audio/x-paris and
1269 audio/iLBC-sh. We cannot use the START_WITH macros
1270 here, because there can only be one typefind factory
1271 with the same name (caps), so the second one would
1272 replace the first one and the first one would never
1273 be called when doing typefinding (see #161712).
1276 2006-01-31 Wim Taymans <wim@fluendo.com>
1278 * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
1279 (vorbis_handle_header_packet), (vorbis_dec_push),
1280 (vorbis_handle_data_packet):
1281 Use scale_int when we can, add some more scaling.
1282 Check packettype before parsing it.
1284 2006-01-31 Wim Taymans <wim@fluendo.com>
1286 * ext/theora/theoradec.c: (_theora_granule_time),
1287 (theora_dec_src_convert), (theora_dec_sink_convert):
1288 Call right _scale functions.
1289 Use parameter instead of some other random value.
1291 2006-01-31 Wim Taymans <wim@fluendo.com>
1293 * ext/theora/theoradec.c: (_theora_granule_frame),
1294 (_theora_granule_time), (_inc_granulepos),
1295 (theora_dec_src_convert), (theora_dec_sink_convert),
1296 (theora_handle_type_packet), (theora_handle_data_packet),
1298 Use higher precision timestamps calculation.
1299 Convert some other conversions to _scale.
1301 2006-01-31 Stefan Kost <ensonic@users.sf.net>
1303 * gst/audiotestsrc/gstaudiotestsrc.c:
1304 (gst_audio_test_src_create_sine_table), (plugin_init):
1305 * gst/volume/gstvolume.c: (plugin_init):
1306 initialize gst_controller before using
1308 2006-01-31 Jan Schmidt <thaytan@mad.scientist.com>
1310 * tests/check/pipelines/theoraenc.c:
1311 * tests/check/pipelines/vorbisenc.c:
1312 Define constant using G_GINT64_CONSTANT to avoid errors when
1313 passing it around - otherwise it gets truncated to 32 bits.
1315 Fixes failing tests.
1317 2006-01-31 Andy Wingo <wingo@pobox.com>
1319 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
1320 caps being set doesn't have a framerate value. Basically a stopgap
1323 * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
1324 technically correct enough to put into core though.
1325 (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
1326 DURATION. Fixes theoraenc ! oggmux.
1328 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
1329 fraction, not double.
1331 2006-01-31 Sebastien Moutte <sebastien@moutte.net>
1334 add vs7 project files created by Sergey Scobich
1336 2006-01-30 Sebastien Moutte <sebastien@moutte.net>
1339 add vs8 project files created by Sergey Scobich
1341 2006-01-30 Andy Wingo <wingo@pobox.com>
1343 * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
1344 timestamp + duration, not just timestamp -- ogg pages should be
1345 ordered by stop time. Necessary fix given the change in vorbis
1348 * ext/theora/theoraenc.c (theora_enc_sink_setcaps)
1349 (gst_theora_enc_init): Pull the granule shift out of the encoder.
1350 (granulepos_add): New function, handles the messiness of adjusting
1352 (theora_buffer_from_packet):
1354 (theora_enc_sink_event): Use granulepos_add, not +.
1356 * tests/check/pipelines/theoraenc.c
1357 (check_buffer_granulepos_from_starttime): Just check the frame
1358 count, not the actual granulepos -- we can't dictate to the
1359 encoder when it should be placing keyframes.
1361 2006-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
1363 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
1364 SERVICE_NOT_AVAILABLE happens for example when you're trying to
1365 play an http:// stream from a server that's not serving
1367 2006-01-30 Andy Wingo <wingo@pobox.com>
1369 * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET):
1370 * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
1371 remove the UINT64_CONSTANT macro, doesn't appear to be needed or
1374 * ext/theora/gsttheoraenc.h:
1375 * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
1376 although theoraenc was timestamping correctly. Added handling of
1377 streams that start with nonzero timestamps.
1379 * tests/check/Makefile.am:
1380 * tests/check/pipelines/theoraenc.c: New file, basically does same
1383 * tests/check/pipelines/vorbisenc.c: I claim these bugs.
1385 2006-01-30 Wim Taymans <wim@fluendo.com>
1387 * gst-libs/gst/audio/gstaudiosink.c:
1388 (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
1389 (gst_audioringbuffer_pause):
1390 Implement pause that does not wait for completion.
1392 * gst-libs/gst/audio/gstbaseaudiosink.c:
1393 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
1394 Don't drop buffers when going to PAUSED but perform preroll on
1395 remaining samples now that core base class supports this.
1397 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
1398 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
1399 (gst_ring_buffer_commit):
1400 Pause should not signal waiters.
1401 Implement return value of _commit correctly.
1403 2006-01-30 Andy Wingo <wingo@pobox.com>
1405 * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
1407 * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
1408 updated to timestamp from the first sample, not the last.
1409 (gst_vorbisenc_buffer_from_header_packet): New function, takes
1410 special care of granulepos and timestamp for header packets.
1411 (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
1412 when the first buffer has a nonzero timestamp.
1414 * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
1415 (GstVorbisEnc.subgranule_offset): New members. Take care of the
1416 case when the first audio buffer we get has a nonzero timestamp.
1417 (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
1418 properly timestamp vorbis buffers with the time of the first
1419 sample, not the last.
1421 * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
1422 vorbis_granule_time_copy -- now it takes the granule/subgranule
1423 offset into account.
1425 * tests/check/pipelines/vorbisenc.c: New test for correctness of
1426 timestamps, durations, and granulepos on buffers produced by
1429 2006-01-30 Jan Schmidt <thaytan@mad.scientist.com>
1431 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1432 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
1433 Patch from Eric Jonas to support conversions to/from UYVY
1436 2006-01-30 Julien MOUTTE <julien@moutte.net>
1438 * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
1439 (setup_subtitle), (setup_source), (set_active_source):
1440 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
1441 (gen_text_element), (gen_audio_element), (gen_vis_element),
1442 (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
1444 2006-01-29 Sebastien Moutte <sebastien@moutte.net>
1446 * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
1447 * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
1448 use gst_guint64_to_gdouble to be compliant with vs6
1449 * gst/playback/gstdecodebin.c: (try_to_link_1)
1450 * gst/videorate/videorate.c: (gst_video_rate_blank_data)
1451 use G_GINT64_CONSTANT for int64 constants
1452 * win32/common/libgstinterfaces.def:
1453 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
1455 update and add new project files
1457 2006-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
1461 * win32/common/interfaces-enumtypes.c:
1462 (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
1463 (gst_mixer_track_flags_get_type),
1464 (gst_tuner_channel_flags_get_type):
1465 * win32/common/interfaces-enumtypes.h:
1466 * win32/common/multichannel-enumtypes.c:
1467 (gst_audio_channel_position_get_type):
1468 * win32/common/multichannel-enumtypes.h:
1469 add a win32-update rule like in core, and copy over enumtypes files
1471 2006-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
1474 * win32/common/config.h:
1475 * win32/common/config.h.in:
1476 add config files just like in core
1478 2006-01-28 Tim-Philipp Müller <tim at centricular dot net>
1480 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
1481 Make gcc-4.1 happy (part of #327357).
1483 2006-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
1485 * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
1486 (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
1487 (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
1488 * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
1489 (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
1490 (gst_alsasrc_unprepare), (gst_alsasrc_read):
1491 Update all error messages. All of them should either use
1492 the default translated message, or actually provide a
1493 translatable string.
1494 Make the string for channel count problems meaningful.
1496 2006-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
1498 * sys/v4l/v4l_calls.c: (gst_v4l_open):
1499 check for and throw RESOURCE_BUSY
1501 2006-01-27 David Schleef <ds@schleef.org>
1503 * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
1504 checked in this change -- it requires liboil features not
1505 in 0.3.6. Revert parts.
1507 2006-01-27 David Schleef <ds@schleef.org>
1510 * configure.ac: update liboil requirement to 0.3.6
1511 * gst/videoscale/Makefile.am:
1512 * gst/videoscale/vs_scanline.c: liboilify
1514 2006-01-27 Jan Schmidt <thaytan@mad.scientist.com>
1516 * ext/libvisual/visual.c: (get_buffer):
1517 When pad_alloc returns a GstFlowReturn other
1518 than GST_FLOW_OK, make sure it is passed upstream.
1520 2006-01-27 Jan Schmidt <thaytan@mad.scientist.com>
1522 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
1523 (gst_alsasink_class_init):
1524 Free the device name string.
1526 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
1527 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
1528 (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
1529 Don't remove a pad from the collectpads structure until it
1530 is released - it's a request pad, and may receive data again
1531 if the element gets moved back to PLAYING state.
1533 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
1534 Ensure we turn on double buffering on the Xv port, and
1535 set the colour key to something dark and mysterious that
1538 2006-01-27 Thomas Vander Stichele <thomas at apestaart dot org>
1540 * ext/alsa/gstalsaplugin.c: (plugin_init):
1541 * ext/cdparanoia/gstcdparanoiasrc.c:
1542 (gst_cd_paranoia_src_base_init), (plugin_init):
1543 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
1544 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
1545 - a library should not call setlocale. see "Libraries" node in
1547 - make sure all plugins that use translation do bindtextdomain
1548 to point to the localedir
1549 * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
1550 (setup_sinks), (plugin_init):
1551 all this, and check for NULL when creating sinks
1553 2006-01-27 Julien MOUTTE <julien@moutte.net>
1555 * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
1556 (plugin_init): Make typefinding of subtitles work again.
1558 2006-01-26 Tim-Philipp Müller <tim at centricular dot net>
1560 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
1561 (mp3_type_frame_length_from_header), (mp3_type_find),
1562 (wavpack_type_find), (m4a_type_find), (ircam_type_find),
1564 Backport a bunch of typefinding fixes from the 0.8 branch.
1565 Also, improve wavpack typefinding: if we can't peek the
1566 entire wavpack block, try to parse the bits we can get and
1567 see if we find what we're looking for in those.
1569 2006-01-26 Julien MOUTTE <julien@moutte.net>
1571 * sys/ximage/ximagesink.c:
1572 (gst_ximagesink_calculate_pixel_aspect_ratio):
1573 * sys/xvimage/xvimagesink.c:
1574 (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
1575 more cases of pixel aspect ratio.
1577 2006-01-26 Edward Hervey <edward@fluendo.com>
1579 * gst/playback/gstdecodebin.c: (pad_probe):
1580 Also consider the flush-start and tag events as unblockers
1583 2006-01-26 Julien MOUTTE <julien@moutte.net>
1585 * gst/playback/gstplaybin.c: (gst_play_bin_init),
1586 (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
1587 (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
1588 On the fly visualisation switch, works disabling, enabling as
1589 well but it won't be able to enable vis in a playbin that was
1590 created with no visualisation.
1592 2006-01-25 Wim Taymans <wim@fluendo.com>
1594 * gst-libs/gst/audio/gstbaseaudiosink.c:
1595 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
1596 Undo previous commit that returned WRONG_STATE sooner, it breaks
1599 2006-01-25 Wim Taymans <wim@fluendo.com>
1601 * gst-libs/gst/audio/gstbaseaudiosink.c:
1602 (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
1603 (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
1605 Post error when caps cannot be parsed.
1606 Resync on discontinuity in the stream.
1607 Clip samples to segment boundaries.
1608 return WRONG_STATE sooner when we are flushing.
1610 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
1611 (gst_base_audio_src_get_time), (gst_base_audio_src_create):
1612 Make audiosrc operate in TIME.
1613 Set TIMESTAMP and DURATION on buffers.
1615 2006-01-24 Tim-Philipp Müller <tim at centricular dot net>
1617 * tests/examples/seek/seek.c: (main):
1618 Output tag messages as well.
1620 2006-01-23 Edward Hervey <edward@fluendo.com>
1622 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
1623 (free_pad_probes), (remove_fakesink), (pad_probe),
1624 (close_pad_link), (gst_decode_bin_change_state):
1625 Replace GstPadBlockCallback with pad probes that detect
1626 first buffer AND eos before removing fakesink.
1627 Fixes hang with demuxers doing EOS while pre-rolling.
1630 2006-01-23 Andy Wingo <wingo@pobox.com>
1632 * ext/alsa/gstalsasink.c:
1633 * gst-libs/gst/rtp/gstbasertpdepayload.c:
1634 (gst_base_rtp_depayload_setcaps),
1635 (gst_base_rtp_depayload_add_to_queue),
1636 (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
1638 Patch by: Jens Granseuer <jensgr at gmx dot net>
1640 2006-01-22 Julien MOUTTE <julien@moutte.net>
1642 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
1643 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1644 (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some
1645 frames. We might get a frame destroyed after changing state to
1646 NULL, adding a safety check on xcontext.
1648 2006-01-22 Tim-Philipp Müller <tim at centricular dot net>
1650 * gst-libs/gst/interfaces/xoverlay.c:
1651 Fix prepare-xwindow-id code example in the docs - we need to
1652 ignore all messages that aren't element messages as well.
1654 2006-01-21 Julien MOUTTE <julien@moutte.net>
1656 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
1657 I think one day i'll completely undestand how caps negotiation
1658 is supposed to work. This refactoring handles buffer_alloc
1659 called with caps we can't handle. We definitely don't want a
1660 set_caps with those caps, so we define and allocate a buffer
1661 we would like to receive.
1663 2006-01-19 Tim-Philipp Müller <tim at centricular dot net>
1665 * gst/playback/gstplaybasebin.c: (setup_source):
1666 Free iterator when done.
1668 2006-01-17 Jan Schmidt <thaytan@mad.scientist.com>
1670 * gst-libs/gst/audio/gstbaseaudiosink.c:
1671 (gst_base_audio_sink_render):
1672 Fix playback of non-synchronised streams by assuming a rate
1673 of 1.0 instead of a random one.
1675 Makes this work again:
1677 gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
1678 endianness=(int)4321, signed=(boolean)true, width=(int)16,
1679 depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
1680 audioresample ! alsasink
1682 === release 0.10.2 ===
1684 2006-01-16 Thomas Vander Stichele <thomas at apestaart dot org>
1687 releasing 0.10.2, "Then the devil is six"
1689 2006-01-16 Jan Schmidt <thaytan@mad.scientist.com>
1691 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
1692 * gst/playback/gststreamselector.c:
1693 (gst_stream_selector_set_property):
1694 Comment out broken code that connects to the state-changed signal.
1695 At this point, changing current stream selection is broken, but
1696 stuff like gst-launch playbin current-audio=1 works and filters
1697 to the chosen stream.
1699 2006-01-16 Thomas Vander Stichele <thomas at apestaart dot org>
1701 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
1702 Fix #327216 (null dereference in vorbisdec)
1704 2006-01-16 Tim-Philipp Müller <tim at centricular dot net>
1706 * ext/theora/theoradec.c: (theora_handle_comment_packet):
1707 Post taglist actually on bus instead of just freeing it
1708 (fixes #327114 and totem bug #327080).
1710 * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
1711 Use gst_element_found_tags_for_pad(), so that the tags
1712 are sent downstream as an event as well.
1714 2006-01-15 Thomas Vander Stichele <thomas at apestaart dot org>
1716 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
1717 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
1718 (gst_ximagesink_buffer_alloc):
1719 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
1720 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
1721 (gst_xvimagesink_buffer_alloc):
1722 move all regularly occurring messages to GST_LOG level
1723 add some more object logs
1725 2006-01-14 Thomas Vander Stichele <thomas at apestaart dot org>
1727 * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
1728 fix a silly segfault
1730 2006-01-14 Tim-Philipp Müller <tim at centricular dot net>
1732 * docs/libs/gst-plugins-base-libs-docs.sgml:
1733 * docs/libs/gst-plugins-base-libs-sections.txt:
1734 * gst-libs/gst/audio/mixerutils.c:
1735 * gst-libs/gst/audio/mixerutils.h:
1736 Add docs for mixerutils stuff.
1738 2006-01-13 Tim-Philipp Müller <tim at centricular dot net>
1740 * gst/playback/gstplaybasebin.c: (setup_source):
1741 Fix playback for sources that emit raw audio or
1742 raw video streams (e.g.: cd audio sources) (#325984).
1744 2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
1746 * gst-libs/gst/audio/mixerutils.c:
1747 (gst_audio_mixer_filter_do_filter):
1748 actually save the element we create
1750 2006-01-12 Tim-Philipp Müller <tim at centricular dot net>
1752 * gst-libs/gst/cdda/gstcddabasesrc.c:
1753 (gst_cdda_base_src_handle_track_seek):
1754 No need to post a tag message on the bus when seeking
1755 within the same track, only post it when the current
1758 2006-01-11 Jan Schmidt <thaytan@mad.scientist.com>
1760 * gst/playback/gstplaybasebin.c: (group_destroy),
1761 (probe_triggered), (new_decoded_pad), (mute_group_type),
1762 (set_active_source):
1763 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
1764 * gst/playback/gststreamselector.c:
1765 (gst_stream_selector_base_init),
1766 (gst_stream_selector_set_property),
1767 (gst_stream_selector_request_new_pad):
1768 Reenable stream selection. These mechanisms need a complete overhaul
1769 in the face of 0.8->0.10 changes though.
1771 2006-01-11 Jan Schmidt <thaytan@mad.scientist.com>
1773 * ext/ogg/gstoggdemux.c:
1774 Change the pad template to src_%d to match the pads that
1775 are created from it. decodebin needs this information in order
1776 to decide that oggdemux is capable of producing multiple pads
1777 (and hence needs queues inserted).
1779 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
1780 (gst_ogg_mux_collected):
1781 Make debug output more useful by using GST_PTR_FORMAT.
1783 2006-01-11 Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
1785 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
1787 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
1788 Set depth and width for alaw/mulaw (fixes #326601).
1790 2006-01-11 Thomas Vander Stichele <thomas at apestaart dot org>
1792 * tests/icles/Makefile.am:
1793 don't build the tests if we don't have the libs
1795 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
1797 * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
1798 (gst_cd_paranoia_paranoia_callback):
1799 Don't try to free NULL pointers.
1801 2006-01-10 Edward Hervey <edward@fluendo.com>
1803 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
1804 (gst_audio_rate_change_state), (plugin_init):
1805 Add debugging category.
1807 Add case for incoming buffers without valid offset/offset_end.
1809 2006-01-10 Michael Smith <msmith@fluendo.com>
1811 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
1812 Don't leak GCond in audio sources.
1814 2006-01-10 Jan Schmidt <thaytan@mad.scientist.com>
1816 * gst/playback/gstplaybin.c: (gen_audio_element):
1817 Don't leak an autoaudiosink/alsasink when we generate
1818 a new audio element. (old code, I guess)
1820 2006-01-10 Michael Smith <msmith@fluendo.com>
1822 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
1823 Support float audio in audiorate.
1824 Use width rather than depth for selecting sample width.
1826 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
1828 * gst/videotestsrc/videotestsrc.h:
1829 Use GLib types here (that way we don't have to include the
1830 generated _stdint.h header, which makes life easier for win32
1831 folks that don't use autotools for the build) (#325990, patch
1832 by: Sergey Scobich).
1834 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
1836 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
1837 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
1838 (gst_ring_buffer_pause), (wait_segment):
1839 * gst-libs/gst/audio/gstringbuffer.h:
1840 Name (private) union, makes Forte compiler happy (this time
1841 for real) (#324900).
1843 2006-01-09 Tim-Philipp Müller <tim at centricular dot net>
1845 * gst-libs/gst/audio/Makefile.am:
1846 Link against libgstinterfaces, needed for mixer
1847 and property probe stuff.
1849 2006-01-09 Edward Hervey <edward@fluendo.com>
1851 * gst-libs/gst/Makefile.am:
1853 2006-01-09 Tim-Philipp Müller <tim at centricular dot net>
1855 * gst-libs/gst/audio/Makefile.am:
1856 * gst-libs/gst/audio/mixerutils.c:
1857 (gst_audio_mixer_filter_do_filter),
1858 (gst_audio_mixer_filter_check_element),
1859 (gst_audio_mixer_filter_probe_feature),
1860 (element_factory_rank_compare_func),
1861 (gst_audio_default_registry_mixer_filter):
1862 * gst-libs/gst/audio/mixerutils.h:
1863 Add gst_audio_default_registry_mixer_filter() utility
1866 2006-01-03 Michael Smith <msmith@fluendo.com>
1868 * gst/audioresample/resample.h:
1869 As before, but for o_buf
1871 2006-01-03 Michael Smith <msmith@fluendo.com>
1873 * gst/audioresample/resample.h:
1874 Declare struct _ResampleState.buffer as unsigned char *, not void *,
1875 since we do arithmetic on it.
1877 2006-01-02 Tim-Philipp Müller <tim at centricular dot net>
1879 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
1880 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
1881 (gst_ring_buffer_pause), (wait_segment):
1882 * gst-libs/gst/audio/gstringbuffer.h:
1883 Sun's Forte compiler doesn't seem to like anonymous structs,
1884 so use same setup as in GstBaseSrc (fixes #324900).
1886 2005-12-30 Stefan Kost <ensonic@users.sf.net>
1889 * gst/volume/Makefile.am:
1890 * gst/volume/demo.c:
1891 move old example to tests/examples/volume/volune.c
1892 * tests/examples/Makefile.am:
1893 * tests/examples/seek/seek.c: (main):
1894 change window-close event from "delete-event" to "destroy"
1895 * tests/examples/volume/Makefile.am:
1896 * tests/examples/volume/volume.c: (value_changed_callback),
1897 (setup_gui), (message_received), (eos_message_received), (main):
1898 fix event handling and bus usage
1900 2005-12-29 Stefan Kost <ensonic@users.sf.net>
1902 * gst/audiotestsrc/gstaudiotestsrc.c:
1903 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
1904 (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
1905 (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
1906 (gst_audio_test_src_create_square),
1907 (gst_audio_test_src_create_saw),
1908 (gst_audio_test_src_create_triangle),
1909 (gst_audio_test_src_create_silence),
1910 (gst_audio_test_src_create_white_noise),
1911 (gst_audio_test_src_create_pink_noise),
1912 (gst_audio_test_src_init_sine_table),
1913 (gst_audio_test_src_create_sine_table),
1914 (gst_audio_test_src_change_wave),
1915 (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
1916 (gst_audio_test_src_create), (gst_audio_test_src_set_property):
1917 * gst/audiotestsrc/gstaudiotestsrc.h:
1918 update to basesrc changes, implement segmented seeking and eos
1919 handling, add a 'sine-tab' waveform for performance critical playback
1921 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
1924 ... and this time the other modified file that I missed last time.
1926 2005-12-29 Michael Smith <msmith@fluendo.com>
1928 * gst/playback/gstdecodebin.c: (new_pad):
1929 Fix non-C89 variable declaration not at the start of a block. Should
1930 help some compilers.
1932 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
1934 * tests/check/Makefile.am:
1935 And now fix 'make distcheck' (builddir != srcdir)
1937 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
1940 * ext/cdparanoia/Makefile.am:
1941 * ext/cdparanoia/gstcdparanoia.c:
1942 * ext/cdparanoia/gstcdparanoia.h:
1943 * ext/cdparanoia/gstcdparanoiasrc.c:
1944 (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
1945 (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
1946 (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
1947 (gst_cd_paranoia_paranoia_callback),
1948 (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
1949 (gst_cd_paranoia_src_set_property),
1950 (gst_cd_paranoia_src_get_property), (plugin_init):
1951 * ext/cdparanoia/gstcdparanoiasrc.h:
1952 New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
1953 plugin again (there are still fixes required to playbin to make
1954 cdda:// uris work there).
1956 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
1958 * tests/check/Makefile.am:
1959 Fix test case compilation.
1961 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
1963 * gst-libs/gst/cdda/gstcddabasesrc.c:
1964 (gst_cdda_base_src_update_duration),
1965 (gst_cdda_base_src_calculate_cddb_id):
1966 An integer is not a string. Fix access to uninitialised variable.
1968 * tests/check/Makefile.am:
1969 Add cddabasesrc unit test; also actually enable the vorbis test.
1971 * tests/check/generic/states.c:
1972 Blacklist new cd audio elements as well.
1974 * tests/check/libs/cddabasesrc.c:
1975 Unit test for GstCddaBaseSrc (discid calculation mostly).
1977 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
1979 * docs/libs/Makefile.am:
1980 * docs/libs/gst-plugins-base-libs-docs.sgml:
1981 * docs/libs/gst-plugins-base-libs-sections.txt:
1982 * docs/libs/gst-plugins-base-libs.types:
1983 Add docs for libgstcdda/GstCddaBaseSrc.
1985 * gst-libs/gst/interfaces/mixertrack.h:
1986 Do one struct member per line with a semicolon at the end, that way
1987 even gtk-doc might parse it without complaining.
1989 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
1992 * gst-libs/gst/Makefile.am:
1993 * gst-libs/gst/cdda/Makefile.am:
1994 * gst-libs/gst/cdda/base64.c:
1995 * gst-libs/gst/cdda/base64.h:
1996 * gst-libs/gst/cdda/gstcddabasesrc.c:
1997 (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
1998 (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
1999 (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
2000 (gst_cdda_base_src_get_property),
2001 (gst_cdda_base_src_get_track_from_sector),
2002 (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
2003 (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
2004 (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
2005 (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
2006 (gst_cdda_base_src_uri_get_protocols),
2007 (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
2008 (gst_cdda_base_src_uri_handler_init),
2009 (gst_cdda_base_src_setup_interfaces),
2010 (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
2011 (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
2012 (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
2013 (gst_cdda_base_src_add_tags),
2014 (gst_cdda_base_src_add_index_associations),
2015 (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
2016 (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
2017 (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
2018 (gst_cdda_base_src_create):
2019 * gst-libs/gst/cdda/gstcddabasesrc.h:
2020 * gst-libs/gst/cdda/sha1.c:
2021 * gst-libs/gst/cdda/sha1.h:
2022 Add new libgstcdda with GstCddaBaseSrc class.
2024 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
2026 * ext/gnomevfs/gstgnomevfssink.h:
2027 Use GstBaseSinkClass as parent_class member for class struct, not
2030 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
2032 * gst/videotestsrc/gstvideotestsrc.c:
2033 (gst_video_test_src_class_init), (gst_video_test_src_start):
2034 Add start method to reset running time and number of frames sent
2035 when starting up (fixes #324696; patch by: Michal Benes).
2037 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
2039 * docs/plugins/Makefile.am:
2040 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2041 * docs/plugins/gst-plugins-base-plugins-sections.txt:
2042 * docs/plugins/gst-plugins-base-plugins.args:
2043 * docs/plugins/gst-plugins-base-plugins.hierarchy:
2044 * docs/plugins/gst-plugins-base-plugins.signals:
2045 Add docs stuff for gnomevfssrc and gnomevfssink.
2047 * ext/gnomevfs/gstgnomevfssrc.c:
2048 Fix example pipeline in gtk-doc blurb.
2050 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
2052 * ext/gnomevfs/Makefile.am:
2053 * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
2054 (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
2055 (gst_gnome_vfs_handle_get_type), (plugin_init):
2056 * ext/gnomevfs/gstgnomevfs.h:
2057 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
2058 (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
2059 (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
2060 (gst_gnome_vfs_sink_set_property),
2061 (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
2062 (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
2063 (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
2064 (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
2065 (gst_gnome_vfs_sink_uri_get_type),
2066 (gst_gnome_vfs_sink_uri_get_protocols),
2067 (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
2068 (gst_gnome_vfs_sink_uri_handler_init):
2069 * ext/gnomevfs/gstgnomevfssink.h:
2070 Port gnomevfssink; add gtk-doc blurb.
2072 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
2073 (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
2074 (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
2075 (gst_gnome_vfs_src_uri_get_type),
2076 (gst_gnome_vfs_src_uri_get_protocols),
2077 (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
2078 (gst_gnome_vfs_src_uri_handler_init),
2079 (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
2080 (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
2081 (gst_gnome_vfs_src_send_additional_headers_callback),
2082 (gst_gnome_vfs_src_received_headers_callback),
2083 (gst_gnome_vfs_src_push_callbacks),
2084 (gst_gnome_vfs_src_pop_callbacks),
2085 (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
2086 (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
2087 (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
2088 * ext/gnomevfs/gstgnomevfssrc.h:
2089 s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
2090 file; add gtk-doc blurb with example pipelines.
2092 === release 0.10.1 ===
2094 2005-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
2097 releasing 0.10.1, "Dobro Dedek"
2099 2005-12-21 Edgard Lima <edgard.lima@indt.org.br>
2101 * gst/typefind/gsttypefindfunctions.c:
2102 iLBC30 and iLBC20 added to typefind.
2104 2005-12-20 Thomas Vander Stichele <thomas at apestaart dot org>
2106 * gst-libs/gst/audio/gstbaseaudiosink.c:
2107 (gst_base_audio_sink_class_init):
2108 * gst-libs/gst/audio/gstbaseaudiosrc.c:
2109 (gst_base_audio_src_class_init):
2110 update strings, values are in microseconds
2111 change the default sink buffer time to something that is smaller
2112 (to help software volume mixing have a slightly lower delay) but
2113 still be acceptable on Wim's laptop
2115 2005-12-20 Edward Hervey <edward@fluendo.com>
2117 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
2118 Made a quack, forgot to add DUCK to the riff video template.
2120 2005-12-19 Edward Hervey <edward@fluendo.com>
2122 * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
2123 (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
2124 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
2125 (gst_ogm_parse_chain):
2126 Make sure pads are initialized correctly.
2127 * gst-libs/gst/riff/riff-ids.h:
2128 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
2129 (gst_riff_create_video_template_caps):
2130 Add a whole bunch of FOURCC <=> MimeType.
2131 Extend the riff video pad template to support the newly added fourcc.
2133 2005-12-18 Jan Schmidt <thaytan@mad.scientist.com>
2135 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
2136 (gst_ogg_demux_activate_chain):
2137 Extra debug output when activating/deactivating chains.
2139 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
2140 (is_demuxer_element), (try_to_link_1), (remove_element_chain),
2142 Remove a queue from our list when it becomes unlinked.
2143 Don't add queues to elements in class 'Demux' if they
2144 can only produce one pad
2146 2005-12-18 Julien MOUTTE <julien@moutte.net>
2148 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
2149 (gst_video_sink_get_type): Add a debug category.
2151 2005-12-17 Philippe Khalaf <burger@speedy.org>
2153 * gst-libs/gst/rtp/gstbasertpdepayload.c:
2154 (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
2155 Handle downstream newsegment by sending our own newsegment before the
2156 next buffer to be released. (#323900)
2158 2005-12-17 Philippe Khalaf <burger@speedy.org>
2160 * gst-libs/gst/rtp/gstbasertpdepayload.c:
2161 (gst_base_rtp_depayload_set_gst_timestamp):
2162 add queue delay to new segment as well (as opposed to just the first
2163 buffer). (bug #322347)
2165 2005-12-16 Stefan Kost <ensonic@users.sf.net>
2167 * ext/libvisual/visual.c: (make_valid_name):
2168 change some char* into char[]
2169 * gst/audiotestsrc/gstaudiotestsrc.c:
2170 (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
2171 (gst_audio_test_src_create):
2172 * gst/audiotestsrc/gstaudiotestsrc.h:
2173 prepare to handle EOS and SEGMENT_DONE
2175 2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
2177 * tests/check/generic/states.c: (GST_START_TEST):
2178 Blacklist cdparanoia element in state test.
2180 2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
2183 * gst/tcp/gsttcpclientsink.c:
2184 * gst/tcp/gsttcpserversink.c:
2185 * gst/tcp/gsttcpserversrc.c:
2186 Add <string.h> includes for memset and FD_ZERO (fixes #323878;
2187 patch by: Benjamin Pineau).
2189 2005-12-15 Michael Smith <msmith@fluendo.com>
2191 * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
2192 (gst_video_rate_chain):
2193 Fix timestamping for videorate when the first buffer it sees has a
2194 non-zero timestamp. Fix some misleading debug output.
2196 2005-12-15 Michael Smith <msmith@fluendo.com>
2198 * gst/audioresample/gstaudioresample.c:
2199 Don't leak all input buffers to audioresample.
2201 2005-12-15 Tim-Philipp Müller <tim at centricular dot net>
2203 * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
2204 Don't operate on empty text buffers. Strip newlines and
2205 tabs only from the end of the text, but leave them intact
2206 in the middle. Fix typo in gtk-doc description.
2208 2005-12-15 Tim-Philipp Müller <tim at centricular dot net>
2210 * gst/playback/gstplaybasebin.c:
2211 * gst/playback/gstplaybin.c: (handoff):
2212 Make sure the video frame buffer we return to apps via the
2213 "frame" property always has caps set on it. Modify
2214 _gst_gvalue_set_object() macro to handle NULL objects
2217 2005-12-14 Stefan Kost <ensonic@users.sf.net>
2219 * gst/audiotestsrc/gstaudiotestsrc.c:
2220 (gst_audio_test_src_class_init), (gst_audio_test_src_init),
2221 (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
2222 (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
2223 (gst_audio_test_src_create):
2224 * gst/audiotestsrc/gstaudiotestsrc.h:
2225 Adjust to some recent api changes and add wtays new cool seeking
2228 2005-12-14 Tim-Philipp Müller <tim at centricular dot net>
2230 * ext/alsa/Makefile.am:
2231 * ext/alsa/gstalsadeviceprobe.c:
2232 * ext/alsa/gstalsadeviceprobe.h:
2233 Helper functions to add device probing via the GstPropertyProbe
2234 interface to a class.
2236 * ext/alsa/gstalsamixer.h:
2237 Comment out GST_ALSA_MIXER, it returns a struct that's not
2240 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
2241 Add some debug info.
2243 * ext/alsa/gstalsamixerelement.c:
2244 (gst_alsa_mixer_element_interface_supported),
2245 (gst_implements_interface_init),
2246 (gst_alsa_mixer_element_init_interfaces),
2247 (gst_alsa_mixer_element_class_init),
2248 (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
2249 (gst_alsa_mixer_element_set_property),
2250 (gst_alsa_mixer_element_get_property),
2251 (gst_alsa_mixer_element_change_state):
2252 * ext/alsa/gstalsamixerelement.h:
2253 Add 'device' and 'device-name' properties. Add GstPropertyProbe
2254 for device handling (gnome-volume-control will need that).
2256 2005-12-12 Christian Schaller <uraeus@gnome.org>
2258 * ext/Makefile.am: fix cdparanoia entry
2259 * gst-plugins-base.spec.in: add cdparanoia
2261 2005-12-12 Michael Smith <msmith@fluendo.com>
2263 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
2264 Use the correct function to free list of typefind factories.
2266 2005-12-12 Wim Taymans <wim@fluendo.com>
2268 * gst/videotestsrc/gstvideotestsrc.c:
2269 (gst_video_test_src_class_init), (gst_video_test_src_init),
2270 (gst_video_test_src_parse_caps), (gst_video_test_src_query),
2271 (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
2272 (gst_video_test_src_create):
2273 * gst/videotestsrc/gstvideotestsrc.h:
2274 Implement seeking in videotestsrc.
2277 2005-12-12 Wim Taymans <wim@fluendo.com>
2279 * ext/cdparanoia/Makefile.am:
2280 * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
2281 (gst_paranoia_endian_get_type), (_do_init),
2282 (cdparanoia_class_init), (cdparanoia_init),
2283 (cdparanoia_set_property), (cdparanoia_get_property),
2284 (cdparanoia_do_seek), (cdparanoia_is_seekable),
2285 (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
2286 (cdparanoia_convert), (cdparanoia_get_query_types),
2287 (cdparanoia_query), (cdparanoia_set_index),
2288 (cdparanoia_uri_set_uri):
2289 * ext/cdparanoia/gstcdparanoia.h:
2290 Partially ported cdparanoia now that basesrc can support a
2293 2005-12-12 Wim Taymans <wim@fluendo.com>
2295 * tests/examples/seek/scrubby.c: (main):
2296 Set higher priority for bus events so they don't get reordered with
2299 * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
2300 (flush_toggle_cb), (main):
2301 Added checkbox to disable flushing seeks.
2302 Disable scrubbing when doing non flushing seeks.
2304 2005-12-12 Tim-Philipp Müller <tim at centricular dot net>
2306 * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
2307 (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
2308 (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
2309 (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
2310 Implement some sort of event handling that doesn't rely on
2311 g_return_if_fail; make sure we always push the last chunk of an
2312 .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
2313 state change function; remove some old cruft. Seeking is still
2314 rather unlikely to work though.
2319 2005-12-11 Julien MOUTTE <julien@moutte.net>
2321 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
2322 Fixed a leak of the current image reference when cleaning up.
2323 Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
2325 2005-12-09 Michael Smith <msmith@fluendo.com>
2327 * tools/Makefile.am:
2328 * tools/gst-launch-ext-m.m:
2329 Remove gst-launch-ext. It doesn't work, and is no longer
2330 particularly useful.
2332 2005-12-08 Luca Ognibene <luogni@tin.it>
2334 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
2335 don't pass random values to ogmparse convert function.
2336 Make seeking possible in the exile1.ogm file.
2338 2005-12-07 Tim-Philipp Müller <tim at centricular dot net>
2340 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
2341 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
2342 Work around refcount problem with g_value_set_object() that occur
2343 if the core has been compiled against GLib-2.6 (g_value_set_object()
2344 will only g_object_ref() the element, but the caller will
2345 gst_object_unref() it and bad things will happen due to the way
2346 GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
2347 totem for people on FC4 using Thomas's 0.10 RPMs.
2349 2005-12-07 Edward Hervey <edward@fluendo.com>
2351 Time to welcome ogm to 0.10 :)
2353 * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
2354 (gst_ogg_pad_typefind):
2355 Oggdemux can now properly typefind elements with dynamic pads.
2356 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
2357 Properly set caps on src pad, and set caps on outgoing buffers.
2359 2005-12-06 Thomas Vander Stichele <thomas at apestaart dot org>
2361 * ext/alsa/gstalsamixer.h:
2362 * ext/alsa/gstalsamixerelement.h:
2363 * ext/alsa/gstalsamixeroptions.h:
2364 * ext/alsa/gstalsamixertrack.h:
2365 * ext/alsa/gstalsasink.c:
2366 * ext/alsa/gstalsasink.h:
2367 * ext/alsa/gstalsasrc.c:
2368 * ext/alsa/gstalsasrc.h:
2369 * ext/cdparanoia/gstcdparanoia.h:
2370 * ext/gnomevfs/gstgnomevfsuri.h:
2371 * ext/ogg/gstoggdemux.c:
2372 * ext/ogg/gstoggmux.c:
2373 * ext/pango/gsttextoverlay.h:
2374 * ext/theora/theoradec.c:
2375 * ext/theora/theoraenc.c:
2376 * ext/vorbis/vorbisdec.h:
2377 * ext/vorbis/vorbisenc.c:
2378 * ext/vorbis/vorbisenc.h:
2379 * ext/vorbis/vorbisparse.h:
2380 * gst-libs/gst/audio/gstaudioclock.h:
2381 * gst-libs/gst/audio/gstaudiosink.c:
2382 * gst-libs/gst/audio/gstaudiosink.h:
2383 * gst-libs/gst/audio/gstaudiosrc.c:
2384 * gst-libs/gst/audio/gstaudiosrc.h:
2385 * gst-libs/gst/audio/gstbaseaudiosink.c:
2386 * gst-libs/gst/audio/gstbaseaudiosink.h:
2387 * gst-libs/gst/audio/gstbaseaudiosrc.c:
2388 * gst-libs/gst/audio/gstbaseaudiosrc.h:
2389 * gst-libs/gst/audio/gstringbuffer.h:
2390 * gst-libs/gst/audio/multichannel.h:
2391 * gst-libs/gst/floatcast/floatcast.h:
2392 * gst-libs/gst/interfaces/colorbalance.c:
2393 * gst-libs/gst/interfaces/colorbalance.h:
2394 * gst-libs/gst/interfaces/colorbalancechannel.h:
2395 * gst-libs/gst/interfaces/mixer.h:
2396 * gst-libs/gst/interfaces/mixeroptions.h:
2397 * gst-libs/gst/interfaces/mixertrack.h:
2398 * gst-libs/gst/interfaces/navigation.h:
2399 * gst-libs/gst/interfaces/propertyprobe.h:
2400 * gst-libs/gst/interfaces/tuner.h:
2401 * gst-libs/gst/interfaces/tunerchannel.h:
2402 * gst-libs/gst/interfaces/tunernorm.h:
2403 * gst-libs/gst/interfaces/xoverlay.h:
2404 * gst-libs/gst/netbuffer/gstnetbuffer.h:
2405 * gst-libs/gst/riff/riff-ids.h:
2406 * gst-libs/gst/riff/riff-media.h:
2407 * gst-libs/gst/riff/riff-read.h:
2408 * gst-libs/gst/rtp/gstbasertpdepayload.h:
2409 * gst-libs/gst/rtp/gstbasertppayload.c:
2410 * gst-libs/gst/rtp/gstbasertppayload.h:
2411 * gst-libs/gst/rtp/gstrtpbuffer.c:
2412 * gst-libs/gst/rtp/gstrtpbuffer.h:
2413 * gst-libs/gst/tag/gsttageditingprivate.h:
2414 * gst-libs/gst/tag/gstvorbistag.c:
2415 (gst_tag_list_from_vorbiscomment_buffer):
2416 * gst-libs/gst/tag/tag.h:
2417 * gst-libs/gst/video/video.h:
2418 * gst/adder/gstadder.c:
2419 * gst/adder/gstadder.h:
2420 * gst/audioconvert/audioconvert.c:
2421 * gst/audioconvert/audioconvert.h:
2422 * gst/audioconvert/gstaudioconvert.c:
2423 * gst/audioconvert/gstchannelmix.c:
2424 * gst/audioconvert/gstchannelmix.h:
2425 * gst/audiorate/gstaudiorate.c:
2426 * gst/audioresample/buffer.h:
2427 * gst/audioresample/functable.h:
2428 * gst/audioresample/gstaudioresample.c:
2429 * gst/audioresample/resample.h:
2430 * gst/ffmpegcolorspace/avcodec.h:
2431 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
2432 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
2433 * gst/ffmpegcolorspace/imgconvert.c:
2434 * gst/ffmpegcolorspace/imgconvert_template.h:
2435 * gst/playback/gstdecodebin.c:
2436 * gst/playback/gstplaybasebin.h:
2437 * gst/playback/gstplaybin.c:
2438 * gst/playback/gststreaminfo.h:
2439 * gst/tcp/gstfdset.c:
2440 * gst/tcp/gstfdset.h:
2441 * gst/tcp/gstmultifdsink.c:
2442 * gst/tcp/gstmultifdsink.h:
2444 * gst/tcp/gsttcpclientsrc.c:
2445 * gst/tcp/gsttcpclientsrc.h:
2446 * gst/tcp/gsttcpplugin.h:
2447 * gst/tcp/gsttcpserversink.c:
2448 * gst/tcp/gsttcpserversrc.c:
2449 * gst/typefind/gsttypefindfunctions.c:
2450 * gst/videorate/gstvideorate.c:
2451 * gst/videotestsrc/gstvideotestsrc.h:
2452 * gst/videotestsrc/videotestsrc.h:
2453 * sys/v4l/gstv4lcolorbalance.h:
2454 * sys/v4l/gstv4ltuner.h:
2455 * sys/v4l/gstv4lxoverlay.h:
2456 * sys/v4l/v4l_calls.h:
2457 * sys/v4l/videodev_mjpeg.h:
2458 * tests/check/elements/audioconvert.c:
2459 * tests/check/elements/audioresample.c:
2460 * tests/check/elements/audiotestsrc.c:
2461 * tests/check/elements/videotestsrc.c:
2462 * tests/check/elements/volume.c:
2463 * tests/examples/seek/scrubby.c:
2464 * tests/examples/seek/seek.c:
2467 === release 0.10.0 ===
2469 2005-12-05 <thomas (at) apestaart (dot) org>
2472 releasing 0.10.0, "Mont-d'or"
2474 2005-12-05 Jan Schmidt <thaytan@mad.scientist.com>
2476 * tests/examples/seek/Makefile.am:
2477 Build fix for when gtk is not available.
2479 2005-12-05 Andy Wingo <wingo@pobox.com>
2481 * ext/libvisual/visual.c: (get_buffer):
2482 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
2483 * ext/pango/gsttextrender.c: (gst_text_render_chain):
2484 * ext/theora/theoradec.c: (theora_handle_data_packet):
2485 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
2487 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
2488 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
2489 Update for alloc_buffer changes.
2491 2005-12-05 Andy Wingo <wingo@pobox.com>
2493 patch by: Kai Vehmanen <kv2004 eca cx>
2495 * gst-libs/gst/rtp/gstbasertpdepayload.c
2496 (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
2498 2005-12-04 Andy Wingo <wingo@pobox.com>
2500 patch by: Sebastien Cote <sebas642 yahoo ca>
2502 * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
2505 2005-12-02 Tim-Philipp Müller <tim at centricular dot net>
2507 * docs/plugins/Makefile.am:
2508 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2509 * docs/plugins/gst-plugins-base-plugins-sections.txt:
2510 * docs/plugins/gst-plugins-base-plugins.hierarchy:
2511 * ext/pango/gstclockoverlay.c:
2512 * ext/pango/gsttextoverlay.c:
2513 * ext/pango/gsttextrender.c:
2514 * ext/pango/gsttimeoverlay.c:
2515 Add gtk-doc blurbs to pango elements.
2517 2005-12-02 Wim Taymans <wim@fluendo.com>
2519 * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
2520 * gst/audioresample/buffer.h:
2521 * gst/audioresample/gstaudioresample.c:
2522 * gst/audioresample/gstaudioresample.h:
2523 * gst/audioresample/resample.c: (resample_input_flush),
2524 (resample_input_pushthrough), (resample_input_eos),
2525 (resample_get_output_size_for_input),
2526 (resample_get_input_size_for_output), (resample_get_output_size),
2527 (resample_get_output_data):
2528 * gst/audioresample/resample.h:
2529 * gst/audioresample/resample_ref.c: (resample_scale_ref):
2530 Fix audioresample, seek torture, new segments, reverse negotiation
2533 2005-12-02 Wim Taymans <wim@fluendo.com>
2535 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
2538 2005-12-02 Wim Taymans <wim@fluendo.com>
2540 * gst/audioconvert/gstaudioconvert.c:
2541 (gst_audio_convert_transform):
2544 === release 0.9.7 ===
2546 2005-12-01 <thomas (at) apestaart (dot) org>
2549 releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
2551 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
2557 add win32 MANIFEST file
2558 do something to the hungarian translation
2560 2005-12-01 Tim-Philipp Müller <tim at centricular dot net>
2563 Add $(PANGO_DIR) to SUBDIRS
2565 * ext/pango/gstclockoverlay.c:
2566 * ext/pango/gsttimeoverlay.c:
2567 Fix and improve element descriptions.
2569 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
2571 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2572 * docs/plugins/inspect/plugin-libvisual.xml:
2573 * docs/plugins/inspect/plugin-pango.xml:
2574 add pango plugin to docs
2576 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
2582 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
2585 * tests/Makefile.am:
2586 * tests/icles/.cvsignore:
2587 * tests/icles/Makefile.am:
2588 * tests/icles/stress-xoverlay.c: (myclock), (open_display),
2589 (close_display), (resize_window), (move_window), (create_window),
2590 (terminate_playback), (pause_playback), (start_playback), (main):
2591 add stress test for xoverlay from Julien
2593 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
2595 * docs/libs/tmpl/gstcolorbalance.sgml:
2596 * gst-libs/gst/rtp/gstbasertpdepayload.c:
2597 * gst-libs/gst/rtp/gstbasertppayload.c:
2598 * gst-libs/gst/rtp/gstrtpbuffer.c:
2599 * gst-libs/gst/rtp/gstrtpbuffer.h:
2600 Do burger's rename for rtp payloaders and depayloaders
2602 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
2605 add Visual Studio 6 build files
2607 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
2609 * docs/libs/gst-plugins-base-libs-docs.sgml:
2610 * docs/libs/gst-plugins-base-libs-sections.txt:
2611 * docs/libs/tmpl/gstaudio.sgml:
2612 * docs/libs/tmpl/gstringbuffer.sgml:
2613 * gst-libs/gst/interfaces/xoverlay.c:
2614 * gst-libs/gst/video/gstvideofilter.c:
2615 * gst-libs/gst/video/gstvideosink.c:
2616 update documentation
2618 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
2620 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
2621 (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
2622 (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
2623 (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
2624 (gst_multi_fd_sink_get_stats),
2625 (gst_multi_fd_sink_remove_client_link),
2626 (gst_multi_fd_sink_handle_client_read),
2627 (gst_multi_fd_sink_client_queue_data),
2628 (gst_multi_fd_sink_client_queue_caps),
2629 (gst_multi_fd_sink_client_queue_buffer),
2630 (gst_multi_fd_sink_new_client),
2631 (gst_multi_fd_sink_handle_client_write),
2632 (gst_multi_fd_sink_recover_client),
2633 (gst_multi_fd_sink_queue_buffer),
2634 (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
2635 (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
2636 (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
2637 (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
2638 * gst/tcp/gstmultifdsink.h:
2639 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
2640 (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
2641 (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
2642 (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
2643 (gst_tcp_client_sink_set_property),
2644 (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
2645 (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
2646 * gst/tcp/gsttcpclientsink.h:
2647 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
2648 (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
2649 (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
2650 (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
2651 (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
2652 (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
2653 * gst/tcp/gsttcpclientsrc.h:
2654 * gst/tcp/gsttcpplugin.c: (plugin_init):
2655 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
2656 (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
2657 (gst_tcp_server_sink_finalize),
2658 (gst_tcp_server_sink_handle_server_read),
2659 (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
2660 (gst_tcp_server_sink_set_property),
2661 (gst_tcp_server_sink_get_property),
2662 (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
2663 * gst/tcp/gsttcpserversink.h:
2664 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
2665 (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
2666 (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
2667 (gst_tcp_server_src_set_property),
2668 (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
2669 (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
2670 * gst/tcp/gsttcpserversrc.h:
2673 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
2675 * docs/plugins/Makefile.am:
2676 * docs/plugins/gst-plugins-base-plugins.args:
2677 * docs/plugins/inspect/plugin-libvisual.xml:
2678 * gst/audioconvert/plugin.h:
2679 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
2680 (gst_audio_rate_base_init), (gst_audio_rate_class_init),
2681 (gst_audio_rate_setcaps), (gst_audio_rate_init),
2682 (gst_audio_rate_chain), (gst_audio_rate_set_property),
2683 (gst_audio_rate_get_property), (gst_audio_rate_change_state),
2685 * gst/audiotestsrc/gstaudiotestsrc.c:
2686 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
2687 (gst_audio_test_src_class_init), (gst_audio_test_src_init),
2688 (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
2689 (gst_audio_test_src_get_query_types),
2690 (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
2691 (gst_audio_test_src_create_square),
2692 (gst_audio_test_src_create_saw),
2693 (gst_audio_test_src_create_triangle),
2694 (gst_audio_test_src_create_silence),
2695 (gst_audio_test_src_create_white_noise),
2696 (gst_audio_test_src_init_pink_noise),
2697 (gst_audio_test_src_generate_pink_noise_value),
2698 (gst_audio_test_src_create_pink_noise),
2699 (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
2700 (gst_audio_test_src_create), (gst_audio_test_src_set_property),
2701 (gst_audio_test_src_get_property), (gst_audio_test_src_start),
2703 * gst/audiotestsrc/gstaudiotestsrc.h:
2704 * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
2705 (gst_sub_parse_base_init), (gst_sub_parse_class_init),
2706 (gst_sub_parse_init), (gst_sub_parse_formats),
2707 (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
2708 (convert_encoding), (get_next_line),
2709 (gst_sub_parse_data_format_autodetect),
2710 (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
2711 (gst_sub_parse_loop), (gst_sub_parse_chain),
2712 (gst_sub_parse_change_state), (gst_sub_parse_type_find),
2714 * gst/subparse/gstsubparse.h:
2715 * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
2716 (gst_video_rate_base_init), (gst_video_rate_class_init),
2717 (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
2718 (gst_video_rate_setcaps), (gst_video_rate_blank_data),
2719 (gst_video_rate_init), (gst_video_rate_event),
2720 (gst_video_rate_chain), (gst_video_rate_set_property),
2721 (gst_video_rate_get_property), (gst_video_rate_change_state),
2723 * gst/videoscale/gstvideoscale.c:
2724 (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
2725 (gst_video_scale_src_template_factory),
2726 (gst_video_scale_sink_template_factory),
2727 (gst_video_scale_get_type), (gst_video_scale_base_init),
2728 (gst_video_scale_class_init), (gst_video_scale_init),
2729 (gst_video_scale_set_property), (gst_video_scale_get_property),
2730 (gst_video_scale_transform_caps), (gst_video_scale_get_format),
2731 (gst_video_scale_prepare_size), (parse_caps),
2732 (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
2733 (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
2734 (gst_video_scale_transform), (gst_video_scale_handle_src_event),
2736 * gst/videoscale/gstvideoscale.h:
2737 * gst/videotestsrc/gstvideotestsrc.c:
2738 (gst_video_test_src_pattern_get_type),
2739 (gst_video_test_src_base_init), (gst_video_test_src_class_init),
2740 (gst_video_test_src_init), (gst_video_test_src_src_fixate),
2741 (gst_video_test_src_set_pattern),
2742 (gst_video_test_src_set_property),
2743 (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
2744 (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
2745 (gst_video_test_src_event), (gst_video_test_src_get_times),
2746 (gst_video_test_src_create), (plugin_init):
2747 * gst/videotestsrc/gstvideotestsrc.h:
2748 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
2749 (gst_video_test_src_smpte), (gst_video_test_src_snow),
2750 (gst_video_test_src_black):
2751 * gst/videotestsrc/videotestsrc.h:
2753 clean up docs a little
2755 2005-11-30 Wim Taymans <wim@fluendo.com>
2757 * gst-libs/gst/rtp/gstbasertpdepayload.h:
2758 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
2759 (gst_basertppayload_event), (gst_basertppayload_push),
2760 (gst_basertppayload_change_state):
2761 * gst-libs/gst/rtp/gstbasertppayload.h:
2764 2005-11-30 Julien MOUTTE <julien@moutte.net>
2766 * docs/libs/gst-plugins-base-libs-docs.sgml:
2767 * docs/libs/gst-plugins-base-libs-sections.txt:
2768 * gst-libs/gst/video/gstvideofilter.c:
2769 * gst-libs/gst/video/gstvideosink.c:
2770 * gst-libs/gst/video/gstvideosink.h: Adding docs.
2772 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
2792 * scripts/autoplugins.sh:
2795 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
2799 * examples/Makefile.am:
2800 * examples/capsfilter/Makefile.am:
2801 * examples/capsfilter/capsfilter1.c:
2802 * examples/gob/Makefile.am:
2803 * examples/gob/gst-identity2.gob:
2804 * examples/indexing/.cvsignore:
2805 * examples/indexing/Makefile.am:
2806 * examples/indexing/indexmpeg.c:
2807 * examples/seeking/.cvsignore:
2808 * examples/seeking/Makefile.am:
2809 * examples/seeking/cdparanoia.c:
2810 * examples/seeking/cdplayer.c:
2811 * examples/seeking/chained.c:
2812 * examples/seeking/scrubby.c:
2813 * examples/seeking/seek.c:
2814 * examples/stats/Makefile.am:
2815 * examples/stats/mp2ogg.c:
2816 * examples/switch/.cvsignore:
2817 * examples/switch/Makefile.am:
2818 * examples/switch/switcher.c:
2819 * tests/Makefile.am:
2820 * tests/check/generic/.cvsignore:
2821 * tests/check/pipelines/.cvsignore:
2822 * tests/examples/Makefile.am:
2823 * tests/examples/seek/Makefile.am:
2824 reorganize stuff under tests/
2826 2005-11-30 Edward Hervey <edward@fluendo.com>
2828 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
2829 Go away you stupid GstStaticPadTemplate memleak.
2831 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
2833 * gst-libs/gst/net/Makefile.am:
2834 * gst-libs/gst/net/README:
2835 * gst-libs/gst/net/gstnetbuffer.c:
2836 * gst-libs/gst/net/gstnetbuffer.h:
2837 this was moved to "netbuffer"
2839 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
2841 * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
2842 (gst_video_filter_class_init), (gst_video_filter_init):
2843 * gst-libs/gst/video/gstvideofilter.h:
2844 borgify name to bring in line with other classes
2846 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
2848 * gst/audioscale/.cvsignore:
2849 * gst/audioscale/Makefile.am:
2850 * gst/audioscale/README:
2851 * gst/audioscale/audioscale.vcproj:
2852 * gst/audioscale/dtof.c:
2853 * gst/audioscale/dtos.c:
2854 * gst/audioscale/functable.c:
2855 * gst/audioscale/gstaudioscale.c:
2856 * gst/audioscale/gstaudioscale.h:
2857 * gst/audioscale/private.h:
2858 * gst/audioscale/resample.c:
2859 * gst/audioscale/resample.h:
2860 * gst/audioscale/test.c:
2863 2005-11-30 Edward Hervey <edward@fluendo.com>
2865 * gst-libs/gst/netbuffer/Makefile.am:
2866 really, really tired
2868 2005-11-30 Edward Hervey <edward@fluendo.com>
2870 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
2871 Update for new GstTypeFindFactory _register()
2873 2005-11-30 Edward Hervey <edward@fluendo.com>
2875 * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir):
2876 Let's not override libgstnet from core for no reason...
2877 (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
2878 Ok, maybe not so quick next time.
2880 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
2883 * gst-libs/gst/Makefile.am:
2884 moved gst-libs/gst/net to netbuffer through CVS surgery
2885 remove old directory
2886 updating build to accomodate
2889 2005-11-29 Andy Wingo <wingo@pobox.com>
2891 * pkgconfig/gstreamer-plugins-base.pc.in:
2892 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
2893 * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
2896 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
2898 * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
2899 3rd time's the charm. Correct ref-counting for discarded buffers.
2901 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
2903 * gst/playback/gststreamselector.c:
2904 (gst_stream_selector_class_init),
2905 (gst_stream_selector_set_property),
2906 (gst_stream_selector_get_property),
2907 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
2910 2005-11-29 Tim-Philipp Müller <tim at centricular dot net>
2912 * gst/subparse/gstsubparse.c: (feed_textbuf):
2913 Don't access already unref'ed buffer.
2915 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
2917 * gst/playback/gststreamselector.c:
2918 (gst_stream_selector_class_init), (gst_stream_selector_init),
2919 (gst_stream_selector_dispose), (gst_stream_selector_set_property),
2920 (gst_stream_selector_get_property),
2921 (gst_stream_selector_get_linked_pad),
2922 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
2923 * gst/playback/gststreamselector.h:
2924 Add the active-pad property for playbin to use shortly. Ignore buffers
2925 from any other pad, returning GST_FLOW_NOT_LINKED
2927 2005-11-29 Julien MOUTTE <julien@moutte.net>
2929 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
2930 patch from bug #322704 (Alessandro Decina).
2932 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
2934 * gst-libs/gst/audio/Makefile.am:
2935 folded audiofilter into the audio library
2937 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
2939 * gst/videoscale/gstvideoscale.h:
2940 * gst/videoscale/gstvideoscale.c:
2941 remove unimplemented scale methods
2943 2005-11-28 Tim-Philipp Müller <tim at centricular dot net>
2945 * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
2948 2005-11-28 Julien MOUTTE <julien@moutte.net>
2950 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
2951 (gst_ximagesink_setcaps):
2952 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
2953 (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
2954 happens (only visible on ximagesink but bug is in xv too) set_caps was
2955 destroying the internal x[v]image used to memcpy non locally alloced
2956 buffers so that it got renewed on next _chain. The issue is that
2957 _expose will try to put that image as it reffed it in _put.
2958 Using gst_buffer_unref instead of destroy fixes it !
2960 2005-11-28 Edward Hervey <edward@fluendo.com>
2962 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
2963 (try_to_link_1), (queue_filled_cb):
2964 Better use of the queues. Start with a small size queue and only increase
2965 the size of the queues when the other queues are empty.
2967 2005-11-28 Thomas Vander Stichele <thomas at apestaart dot org>
2969 * gst-libs/gst/video/Makefile.am:
2970 compile in copied-over videofilter into the video library
2971 * gst-libs/gst/video/videosink.h:
2972 rename the header to gstvideosink.h since it's a base GstObject class
2973 * sys/ximage/ximagesink.h:
2974 * sys/xvimage/xvimagesink.h:
2977 2005-11-28 Wim Taymans <wim@fluendo.com>
2979 * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
2980 * gst/playback/gstplaybasebin.h:
2981 Prepare to handle errors betters.
2983 * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
2984 Set sinks to PAUSED first before adding and linking them so that
2985 we don't interrupt dataflow.
2987 2005-11-28 Wim Taymans <wim@fluendo.com>
2989 * gst-libs/gst/audio/TODO:
2992 * gst-libs/gst/audio/gstaudiosink.c:
2993 (gst_audioringbuffer_open_device),
2994 (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
2995 (gst_audioringbuffer_release):
2998 * gst-libs/gst/audio/gstbaseaudiosink.c:
2999 (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
3000 (gst_base_audio_sink_change_state):
3001 Slave to the master clock when going to PLAYING and unslave when
3004 * gst-libs/gst/audio/gstringbuffer.c:
3005 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
3006 (gst_ring_buffer_acquire), (gst_ring_buffer_release),
3007 (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
3008 (gst_ring_buffer_clear_all), (wait_segment),
3009 (gst_ring_buffer_commit), (gst_ring_buffer_read),
3010 (gst_ring_buffer_advance):
3011 * gst-libs/gst/audio/gstringbuffer.h:
3012 Add some docs and cleanups.
3014 2005-11-28 Julien MOUTTE <julien@moutte.net>
3016 * sys/xvimage/xvimagesink.c:
3017 (gst_xvimagesink_navigation_send_event): Fix navigation events
3018 coordinates translation with pixel aspect ratios.
3020 2005-11-28 Julien MOUTTE <julien@moutte.net>
3022 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
3023 Use calculated video geometry from _setcaps instead of buffer
3024 caps to respect pixel aspect ratio. (fixes #322388)
3026 2005-11-28 Julien MOUTTE <julien@moutte.net>
3028 * docs/libs/tmpl/gstcolorbalance.sgml:
3029 * docs/libs/tmpl/gstmixer.sgml:
3030 * docs/libs/tmpl/gstxoverlay.sgml:
3031 * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
3034 2005-11-28 Julien MOUTTE <julien@moutte.net>
3036 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
3037 Refuse to create an XvImage if we can't find the format.
3039 2005-11-28 Edward Hervey <edward@fluendo.com>
3041 * gst-libs/gst/riff/riff-media.c:
3042 (gst_riff_create_audio_template_caps):
3043 Add ATRAC3 to the list of riff-possible audio caps.
3044 I know we still don't have a plugin for atrac3, but it's saner to output
3045 that than a cryptic mimetype.
3047 2005-11-27 Edward Hervey <edward@fluendo.com>
3049 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
3050 Don't try to create a zero-sized subbuffer.
3052 2005-11-27 Julien MOUTTE <julien@moutte.net>
3054 * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
3055 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
3056 (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
3057 (gst_ximagesink_expose): Fixed a tricky race.
3058 * sys/ximage/ximagesink.h:
3059 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
3060 (gst_xvimagesink_expose): Fixed a tricky race.
3061 * sys/xvimage/xvimagesink.h:
3063 2005-11-27 Edward Hervey <edward@fluendo.com>
3065 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
3066 (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
3067 Remove unused properties, and add queues between demuxers and decoders
3068 so that a lot more files can preroll properly.
3070 2005-11-27 Thomas Vander Stichele <thomas at apestaart dot org>
3072 * gst-libs/gst/net/Makefile.am:
3073 * gst-libs/gst/rtp/Makefile.am:
3074 * gst-libs/gst/tag/Makefile.am:
3075 remove silly include
3076 * gst/tags/Makefile.am:
3077 * gst/tags/gsttagediting.c:
3078 * gst/tags/gsttageditingprivate.h:
3079 * gst/tags/tagedit.vcproj:
3080 remove directory, is as good as empty
3082 2005-11-27 Thomas Vander Stichele <thomas at apestaart dot org>
3085 added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
3086 * gst-libs/Makefile.am:
3087 * gst-libs/gst/audio/Makefile.am:
3088 * gst-libs/gst/interfaces/Makefile.am:
3089 * gst-libs/gst/net/Makefile.am:
3090 * gst-libs/gst/riff/Makefile.am:
3091 * gst-libs/gst/rtp/Makefile.am:
3092 * gst-libs/gst/tag/Makefile.am:
3093 * gst-libs/gst/video/Makefile.am:
3096 2005-11-27 Julien MOUTTE <julien@moutte.net>
3098 * docs/libs/tmpl/gstcolorbalance.sgml:
3099 * docs/libs/tmpl/gstmixer.sgml:
3100 * docs/libs/tmpl/gstxoverlay.sgml:
3101 * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
3102 * sys/ximage/ximagesink.h:
3103 * sys/xvimage/xvimagesink.h: More and more documentation.
3105 2005-11-26 Julien MOUTTE <julien@moutte.net>
3107 * docs/libs/gst-plugins-base-libs-docs.sgml:
3108 * docs/libs/gst-plugins-base-libs-sections.txt:
3109 * docs/libs/tmpl/gstcolorbalance.sgml:
3110 * docs/libs/tmpl/gstmixer.sgml:
3111 * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
3114 2005-11-26 Julien MOUTTE <julien@moutte.net>
3116 * docs/plugins/Makefile.am:
3117 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3118 * docs/plugins/gst-plugins-base-plugins-sections.txt:
3119 * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
3121 2005-11-26 Julien MOUTTE <julien@moutte.net>
3123 * docs/plugins/Makefile.am:
3124 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3125 * docs/plugins/gst-plugins-base-plugins-sections.txt:
3126 * docs/plugins/inspect/plugin-adder.xml:
3127 * docs/plugins/inspect/plugin-alsa.xml:
3128 * docs/plugins/inspect/plugin-audioconvert.xml:
3129 * docs/plugins/inspect/plugin-audiorate.xml:
3130 * docs/plugins/inspect/plugin-audioresample.xml:
3131 * docs/plugins/inspect/plugin-audiotestsrc.xml:
3132 * docs/plugins/inspect/plugin-decodebin.xml:
3133 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
3134 * docs/plugins/inspect/plugin-gnomevfs.xml:
3135 * docs/plugins/inspect/plugin-ogg.xml:
3136 * docs/plugins/inspect/plugin-playbin.xml:
3137 * docs/plugins/inspect/plugin-subparse.xml:
3138 * docs/plugins/inspect/plugin-tcp.xml:
3139 * docs/plugins/inspect/plugin-theora.xml:
3140 * docs/plugins/inspect/plugin-typefindfunctions.xml:
3141 * docs/plugins/inspect/plugin-video4linux.xml:
3142 * docs/plugins/inspect/plugin-videorate.xml:
3143 * docs/plugins/inspect/plugin-videoscale.xml:
3144 * docs/plugins/inspect/plugin-videotestsrc.xml:
3145 * docs/plugins/inspect/plugin-volume.xml:
3146 * docs/plugins/inspect/plugin-vorbis.xml:
3147 * docs/plugins/inspect/plugin-ximagesink.xml:
3148 * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
3149 * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
3151 2005-11-26 Edward Hervey <edward@fluendo.com>
3153 * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
3154 Properly return GstFlowReturn from gst_pad_push in chain functions.
3156 2005-11-25 Michael Smith <msmith@fluendo.com>
3158 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
3159 (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
3160 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
3161 (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
3162 Handle various conditions better when we don't understand a stream.
3163 Removes a heap of CRITICALs on ogg streams containing unknown data.
3165 2005-11-24 Andy Wingo <wingo@pobox.com>
3167 * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
3170 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
3172 * configure.ac: back to HEAD
3174 === release 0.9.6 ===
3176 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
3179 releasing 0.9.6, "White Eight"
3181 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
3183 * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
3184 * docs/plugins/inspect/plugin-sine.xml:
3185 remove sinesrc some more
3187 2005-11-23 Wim Taymans <wim@fluendo.com>
3189 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
3190 If we are reading too slowly, jump forward in the ringbuffer
3191 instead of blocking.
3193 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
3195 * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
3197 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
3198 * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
3199 (gst_videorate_chain):
3200 * gst/videotestsrc/gstvideotestsrc.c:
3201 (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
3202 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
3203 (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
3204 (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
3205 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
3206 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
3207 Updates for API changes
3209 2005-11-23 Wim Taymans <wim@fluendo.com>
3211 * gst-libs/gst/audio/gstbaseaudiosink.c:
3212 (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
3213 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
3214 Fix for calibration API change.
3216 2005-11-23 Michael Smith <msmith@fluendo.com>
3218 * gst-libs/gst/audio/multichannel.c:
3219 (gst_audio_get_channel_positions),
3220 (gst_audio_set_channel_positions),
3221 (gst_audio_set_structure_channel_positions_list),
3222 (gst_audio_fixate_channel_positions):
3223 Use gst_value_array_*() functions on value arrays, not
3226 2005-11-23 Edward Hervey <edward@fluendo.com>
3229 eheh, sinesrc is gone. Replacing sample srcfile by existing one.
3232 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
3234 * check/Makefile.am:
3235 * check/elements/videotestsrc.c: (setup_videotestsrc),
3236 (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
3238 add a test for videotestsrc
3240 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
3242 * gst/sine/.cvsignore:
3243 * gst/sine/Makefile.am:
3244 * gst/sine/gstsinesrc.c:
3245 * gst/sine/gstsinesrc.h:
3246 * gst/sine/sinesrc.vcproj:
3247 and remove sinesrc from the repository. Closes #321446
3249 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
3252 * gst-plugins-base.spec.in:
3253 remove sinesrc from the build
3255 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
3257 * check/Makefile.am:
3258 * check/elements/audiotestsrc.c: (setup_audiotestsrc),
3259 (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
3261 add a test for audiotestsrc, testing all waves. Even seems
3262 leak-free at first glance, nice job Stefan
3264 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
3280 Translation string updates
3282 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
3283 (gst_v4lsrc_set_caps):
3284 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
3285 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
3286 * sys/v4l/v4lsrc_calls.h:
3287 Improve v4lsrc, by making it work again.
3289 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
3291 * ext/libvisual/visual.c: (gst_visual_chain):
3292 Fix the fps calculations.
3294 * gst/ffmpegcolorspace/avcodec.h:
3295 Move structure element for clarity
3297 * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
3298 * gst-libs/gst/interfaces/tunernorm.h:
3299 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
3300 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
3301 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
3302 (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
3303 (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
3304 (gst_v4lmjpegsrc_getcaps):
3305 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
3306 (gst_v4lsrc_set_caps):
3307 * sys/v4l/gstv4lsrc.h:
3308 * sys/v4l/v4l_calls.c: (gst_v4l_open):
3309 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
3310 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
3311 * sys/v4l/v4lsrc_calls.h:
3312 Fractional framerates...
3314 2005-11-22 Wim Taymans <wim@fluendo.com>
3316 * gst-libs/gst/audio/gstbaseaudiosink.c:
3317 (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
3318 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
3319 And we provide a clock by default, of course...
3321 2005-11-22 Wim Taymans <wim@fluendo.com>
3323 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
3324 This clock can be slaved to a master clock now.
3326 * gst-libs/gst/audio/gstbaseaudiosink.c:
3327 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
3328 (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
3329 (gst_base_audio_sink_set_clock),
3330 (gst_base_audio_sink_set_property),
3331 (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
3332 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
3333 * gst-libs/gst/audio/gstbaseaudiosink.h:
3334 Handle slaving the internal clock to the clock selected in the
3336 Add property to make the basesink not provide a clock.
3338 * gst-libs/gst/rtp/gstbasertpdepayload.c:
3339 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
3340 (gst_base_rtp_depayload_wait):
3341 * gst-libs/gst/rtp/gstbasertpdepayload.h:
3342 We can use the clock in GstElement, no need to store it ourselves.
3344 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
3346 * docs/libs/tmpl/gstaudio.sgml:
3348 * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
3349 (gst_paranoia_endian_get_type):
3350 * ext/theora/theoraenc.c: (gst_border_mode_get_type):
3351 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
3352 * gst/audiotestsrc/gstaudiotestsrc.c:
3353 (gst_audiostestsrc_wave_get_type):
3354 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
3355 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
3356 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
3357 (gst_sync_method_get_type), (gst_unit_type_get_type),
3358 (gst_client_status_get_type), (gst_multifdsink_class_init),
3359 (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
3360 (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
3361 (gst_multifdsink_get_property):
3362 * gst/tcp/gstmultifdsink.h:
3363 * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
3364 * gst/videotestsrc/gstvideotestsrc.c:
3365 (gst_videotestsrc_pattern_get_type):
3366 remove deprecated properties
3367 fix up enums to correctly have short lowercase dashed nicks
3369 2005-11-22 Michael Smith <msmith@fluendo.com>
3371 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
3372 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
3375 2005-11-22 Michael Smith <msmith@fluendo.com>
3377 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
3378 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
3379 Use utility method for scaling clocktime for fractional framerates.
3381 2005-11-22 Jan Schmidt <thaytan@mad.scientist.com>
3383 * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
3385 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
3386 * ext/theora/theoradec.c: (theora_handle_type_packet):
3387 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
3389 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
3390 * gst-libs/gst/video/video.c: (gst_video_frame_rate):
3391 * gst-libs/gst/video/video.h:
3392 * gst/ffmpegcolorspace/avcodec.h:
3393 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
3394 (gst_ffmpeg_caps_to_pixfmt):
3395 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3396 (gst_ffmpegcsp_set_caps):
3397 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
3398 (gst_videorate_setcaps), (gst_videorate_blank_data),
3399 (gst_videorate_chain):
3400 * gst/videotestsrc/gstvideotestsrc.c:
3401 (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
3402 (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
3403 (gst_videotestsrc_event), (gst_videotestsrc_create):
3404 * gst/videotestsrc/gstvideotestsrc.h:
3405 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
3406 (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
3407 (gst_ximagesink_get_times), (gst_ximagesink_init):
3408 * sys/ximage/ximagesink.h:
3409 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3410 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
3411 (gst_xvimagesink_get_times), (gst_xvimagesink_init):
3412 * sys/xvimage/xvimagesink.h:
3413 Convert elements to use fractions for their framerate.
3414 V4L elements to come later tonight.
3416 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
3418 * gst-libs/gst/audio/audio.c:
3419 * gst-libs/gst/audio/audio.h:
3420 remove some deprecated functions
3422 2005-11-22 Andy Wingo <wingo@pobox.com>
3424 * Update for gst_tag_setter API changes.
3426 2005-11-22 Andy Wingo <wingo@pobox.com>
3428 * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
3429 (gst_ogg_demux_perform_seek):
3430 * ext/theora/theoradec.c (theora_dec_sink_event):
3431 * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
3434 2005-11-22 Wim Taymans <wim@fluendo.com>
3436 * examples/seeking/seek.c: (main):
3437 Give higher priority to bus signals than the gtk events
3438 to fix a race condition in the segment looping.
3440 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
3442 * ext/theora/Makefile.am:
3443 * ext/vorbis/Makefile.am:
3444 * gst-libs/gst/tag/Makefile.am:
3445 * gst-plugins-base.spec.in:
3446 Rename libgsttagedit to libgsttag (#322117).
3448 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
3450 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
3451 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
3452 Call gst_x_overlay_prepare_xwindow_id() to give applications
3453 a final chance to set their own xwindow id before the video
3454 sink creates its own window.
3456 2005-11-22 Julien MOUTTE <julien@moutte.net>
3458 * sys/xvimage/xvimagesink.c:
3459 (gst_xvimagesink_navigation_send_event): Handle navigation
3460 events correcly with borders if applicable.
3462 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
3464 Patch by: Luca Ognibene
3466 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
3467 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
3468 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3469 (gst_ffmpegcsp_caps_remove_format_info):
3470 * gst/ffmpegcolorspace/imgconvert.c:
3471 * gst/ffmpegcolorspace/imgconvert_template.h:
3472 Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
3473 #318353); use gst_structure_has_name().
3475 2005-11-22 Julien MOUTTE <julien@moutte.net>
3477 * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
3478 (gst_ximagesink_class_init): Add debug macros on functions.
3479 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
3480 (gst_xvimagesink_xwindow_draw_borders),
3481 (gst_xvimagesink_xvimage_put),
3482 (gst_xvimagesink_xwindow_update_geometry),
3483 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
3484 (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
3485 (gst_xvimagesink_xcontext_clear),
3486 (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
3487 (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
3488 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
3489 (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
3490 (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
3491 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
3492 * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
3493 expose while being PAUSED, out of data flow navigation events, etc..
3495 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
3497 * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
3498 * gst-libs/gst/audio/audio.h:
3499 fix prototype - wondering why the test worked regardless
3501 2005-11-21 Thomas Vander Stichele <thomas at apestaart dot org>
3503 * check/Makefile.am:
3504 * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
3505 * gst-libs/gst/audio/audio.h:
3506 add a method that returns a proper GstClockTime
3508 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
3510 * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
3511 (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
3512 * gst-libs/gst/interfaces/xoverlay.h:
3513 Remove everything having to do with the desired size; add
3514 gst_x_overlay_prepare_xwindow_id() function; remove the
3515 'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
3516 post a message on the bus instead (#321816).
3518 * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
3519 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
3520 (gst_xvimagesink_xoverlay_init):
3521 Remove desired size stuff (#321816).
3523 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
3525 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
3526 (mpeg2_sys_type_find), (mpeg1_sys_type_find),
3527 (mpeg_video_type_find), (mpeg_video_stream_type_find):
3528 Terminate vararg functions with NULL instead of 0 to
3531 2005-11-21 Andy Wingo <wingo@pobox.com>
3533 patch by: Sebastien Cote <sebas642@yahoo.ca>
3535 * gst-libs/gst/rtp/gstrtpbuffer.h:
3536 * gst-libs/gst/rtp/gstrtpbuffer.c
3537 (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
3539 2005-11-21 Andy Wingo <wingo@pobox.com>
3541 * gst/playback/gstplaybin.c (gen_audio_element)
3542 (gen_video_element): Use the new MISSING_PLUGIN core error
3543 category. Closes #320060.
3545 * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event):
3546 * gst/videorate/gstvideorate.c (gst_videorate_event):
3547 * ext/theora/theoradec.c (theora_dec_sink_event):
3548 * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
3551 * gst/subparse/gstsubparse.c (gst_subparse_src_event):
3552 * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
3553 stream lock changes.
3555 2005-11-21 Wim Taymans <wim@fluendo.com>
3557 * gst-libs/gst/audio/gstbaseaudiosink.c:
3558 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
3559 (gst_base_audio_sink_provide_clock),
3560 (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
3561 (gst_base_audio_sink_change_state):
3562 * gst/audioresample/gstaudioresample.c:
3565 2005-11-21 Andy Wingo <wingo@pobox.com>
3568 * *.c: Ran scripts/update-macros. Oh yes.
3570 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
3572 * sys/ximage/Makefile.am:
3573 * sys/ximage/ximage.c:
3574 Rename ximage plugin to ximagesink (#321426) (Don't forget to
3575 remove your old libgstximage.* manually if necessary).
3577 2005-11-21 Michael Smith <msmith@fluendo.com>
3579 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
3580 Minimal fix for bug #320200: set the min/max bitrate in the correct
3581 units. A better fix would be to upgrade to the RATEMANAGE2
3582 interface, rather than using the deprecated interface used here, but
3583 that would require an update in our libvorbis dependency (to 1.1),
3584 which is probably undesirable.
3586 2005-11-21 Jan Schmidt <thaytan@mad.scientist.com>
3588 * ext/libvisual/visual.c: (get_buffer):
3589 * gst-libs/gst/audio/gstbaseaudiosrc.c:
3590 (gst_base_audio_src_fixate):
3591 * gst/audioconvert/gstaudioconvert.c:
3592 (gst_audio_convert_fixate_caps):
3593 * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
3594 * gst/audiotestsrc/gstaudiotestsrc.c:
3595 (gst_audiotestsrc_src_fixate):
3596 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
3597 * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
3598 * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
3599 * gst/videotestsrc/gstvideotestsrc.c:
3600 (gst_videotestsrc_src_fixate):
3601 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
3602 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
3603 Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
3607 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
3609 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
3610 (gst_riff_create_iavs_caps):
3611 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
3612 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
3613 (gst_riff_parse_info):
3614 * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
3615 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
3616 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
3617 Fixes for GST_FOURCC_FORMAT API change.
3619 2005-11-21 Andy Wingo <wingo@pobox.com>
3621 patch by: Alessandro Dessina <alessandro nnva org>
3623 * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
3624 * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
3625 (gst_ogg_parse_chain):
3626 * ext/theora/theoraenc.c (theora_set_header_on_caps):
3627 * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
3628 * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
3629 gst_value_list calls on arrays. Fixes #321962.
3631 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
3633 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
3634 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
3635 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
3636 * gst/adder/gstadder.c: (gst_adder_init),
3637 (gst_adder_request_new_pad), (gst_adder_collected),
3638 (gst_adder_change_state):
3639 Update for gst_collectpads_foo() to gst_collect_pads_foo()
3642 2005-11-21 Michael Smith <msmith@fluendo.com>
3644 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
3645 (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
3646 Properly handle pad_push return values.
3648 2005-11-20 Jan Schmidt <thaytan@mad.scientist.com>
3650 * gst-libs/gst/tag/Makefile.am:
3651 * gst-libs/gst/tag/gstvorbistag.c:
3652 (gst_tag_list_to_vorbiscomment_buffer):
3653 Remove obsolete vorbistag element and debug category.
3655 * gst/playback/gstplaybasebin.c: (check_queue):
3656 Don't divide by 0 when queue-threshold is 0.
3658 * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
3659 Don't modify an existing pixel-aspect-ratio if we fail to read
3662 2005-11-20 Wim Taymans <wim@fluendo.com>
3664 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
3665 (gst_vorbisenc_push_packet):
3666 GST_PAD_IS_USABLE is gone, use the return value of
3667 the push or pad_alloc_buffer instead.
3669 2005-11-18 Julien MOUTTE <julien@moutte.net>
3671 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
3672 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
3673 (gst_ximagesink_ximage_destroy),
3674 (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
3675 (gst_ximagesink_xwindow_new),
3676 (gst_ximagesink_xwindow_update_geometry),
3677 (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
3678 (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
3679 (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
3680 (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
3681 (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
3682 (gst_ximagesink_navigation_send_event),
3683 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
3684 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
3685 (gst_ximagesink_finalize), (gst_ximagesink_init),
3686 (gst_ximagesink_class_init):
3687 * sys/ximage/ximagesink.h: Refactoring of ximagesink.
3688 This new version brings correct software scaling, non flickering
3689 window while resizing, pixel aspect ratio handling, usage of
3690 hardware buffer pools, out of data flow event thread for
3691 navigation and handling of expose events even when being PAUSED,
3692 a new property to keep video aspect ratio when resizing, etc...
3694 2005-11-18 Julien MOUTTE <julien@moutte.net>
3696 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
3697 (gst_videoscale_fixate_caps): Introduce back caps fixate with
3700 2005-11-18 <bilboed@dvdsrc.fluendo.com>
3702 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
3703 Unsetting IS_SINK flag from the fakesink, so decodebin
3704 never behaves as a sink.
3706 2005-11-17 Wim Taymans <wim@fluendo.com>
3708 * gst-libs/gst/audio/gstbaseaudiosrc.c:
3709 (gst_base_audio_src_change_state):
3710 Fix the audiosrc base class again, we did not unflush.
3712 2005-11-17 Julien MOUTTE <julien@moutte.net>
3714 * examples/seeking/seek.c: (make_dv_pipeline),
3715 (make_vorbis_theora_pipeline), (make_avi_pipeline),
3716 (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
3717 to ogg/vorbis/theora pipeline.
3719 2005-11-17 Wim Taymans <wim@fluendo.com>
3721 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
3722 (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
3723 (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
3724 Fix EOS on multiple streams.
3727 2005-11-16 Wim Taymans <wim@fluendo.com>
3729 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
3730 (gst_ogg_demux_perform_seek):
3731 Segment done must include stream time.
3733 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
3734 (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
3735 (gst_ogg_mux_change_state):
3736 Fix ogg muxer again.
3738 2005-11-16 Wim Taymans <wim@fluendo.com>
3740 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
3743 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
3745 * ext/libvisual/visual.c: (gst_visual_init):
3746 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
3747 * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
3748 (gst_ogg_parse_chain):
3749 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
3750 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
3751 * ext/theora/theoradec.c: (gst_theora_dec_init):
3752 * ext/theora/theoraenc.c: (gst_theora_enc_init):
3753 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
3754 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
3755 * gst/adder/gstadder.c: (gst_adder_class_init),
3756 (gst_adder_dispose):
3757 * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
3758 * gst/subparse/gstsubparse.c: (gst_subparse_init):
3759 * gst/videorate/gstvideorate.c: (gst_videorate_init):
3760 Fix a whole set of pad template leaks
3762 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
3764 * check/generic/states.c: (GST_START_TEST):
3765 fix the test so that it only checks for elements that are part of
3768 2005-11-16 Michael Smith <msmith@fluendo.com>
3770 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
3771 (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
3772 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
3773 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
3774 (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
3775 (gst_ogg_mux_change_state):
3776 Fix leaking collectpads.
3778 2005-11-16 Edward Hervey <edward@fluendo.com>
3780 * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
3781 (gst_videorate_event), (gst_videorate_chain):
3782 Handle segment seeks
3784 2005-11-16 Wim Taymans <wim@fluendo.com>
3786 * gst-libs/gst/audio/gstbaseaudiosink.c:
3787 (gst_base_audio_sink_provide_clock),
3788 (gst_base_audio_sink_change_state):
3789 Set ringbuffer to non-flushing when going to PAUSED, set to
3790 flushing again when going to READY.
3792 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
3793 (gst_ring_buffer_stop):
3794 Start in flushing mode by default.
3795 Don't set flushing in the _stop method, let the app call
3798 2005-11-16 Julien MOUTTE <julien@moutte.net>
3800 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
3801 * gst-libs/gst/video/videosink.h: Add helper function needed
3804 2005-11-16 Tim-Philipp Müller <tim at centricular dot net>
3806 * gst/videoscale/gstvideoscale.c:
3807 (gst_videoscale_handle_src_event):
3808 Don't leak reference to pad parent.
3810 2005-11-16 Wim Taymans <wim@fluendo.com>
3812 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
3813 Set ringbuffer to flushing when stopping so that we don't
3814 block on wait_segment anymore and livelock.
3816 2005-11-16 Wim Taymans <wim@fluendo.com>
3818 * examples/seeking/seek.c: (send_event), (do_seek),
3819 (loop_toggle_cb), (segment_done), (main):
3820 Added looping checkbox.
3822 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
3824 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
3825 (gst_ogg_demux_init):
3826 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
3827 (gst_vorbis_dec_init):
3828 revert unrefs, they don't pass make check
3830 2005-11-15 Johan Dahlin <johan@gnome.org>
3832 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
3833 (gst_ogg_demux_init), (gst_ogg_demux_finalize):
3834 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
3835 (gst_vorbis_dec_init):
3836 Fix pad template leaks.
3838 2005-11-15 Tim-Philipp Müller <tim at centricular dot net>
3840 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
3841 Make state change function thread safe.
3843 2005-11-15 Edward Hervey <edward@fluendo.com>
3845 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
3846 (gst_ogg_demux_class_init):
3847 Implement GstElement::send_event, so we can send seek events
3850 2005-11-14 Julien MOUTTE <julien@moutte.net>
3852 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
3853 Discovered how to take away flickering while resizing the
3854 window. Please don't put that in ximagesink, refactoring in
3857 2005-11-14 Michael Smith <msmith@fluendo.com>
3859 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
3860 (gst_multifdsink_render):
3861 Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
3863 2005-11-14 Tim-Philipp Müller <tim at centricular dot net>
3865 * gst/playback/gstplaybin.c: (gen_audio_element):
3866 Use autoaudiosink, it tends to be more widely available than
3869 2005-11-14 Andy Wingo <wingo@pobox.com>
3871 * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
3872 as well if it is available. Fixes #316442.
3874 2005-11-14 Michael Smith <msmith@fluendo.com>
3876 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
3877 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
3878 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
3879 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
3880 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
3881 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
3882 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
3883 (gst_vorbisenc_change_state):
3884 Fix a small memory leak in vorbisenc.
3885 Fix large memory leaks in oggmux, also fix lots of state change
3888 2005-11-14 Thomas Vander Stichele <thomas at apestaart dot org>
3890 * gst/videotestsrc/gstvideotestsrc.c:
3891 (gst_videotestsrc_class_init), (gst_videotestsrc_init),
3892 (gst_videotestsrc_src_fixate):
3893 move fixation to a fixate function
3894 remove negotiate function, basesrc's is good enough
3895 fixes a bug for check when using the element alone
3897 2005-11-13 Edward Hervey <edward@fluendo.com>
3899 * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
3900 (key_toggle_cb), (main):
3901 Added checkboxes for adding/removing the accurate and key_unit seek
3904 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
3906 * configure.ac: back to HEAD
3908 === release 0.9.5 ===
3910 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
3913 releasing 0.9.5, "No No Kia"
3915 2005-11-11 Edward Hervey <edward@fluendo.com>
3917 * examples/seeking/seek.c: (make_parselaunch_pipeline):
3918 Added parse-launch syntax seeking mode for the seeking example.
3919 This should help stress-test even more cases.
3920 Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
3922 2005-11-11 Tim-Philipp Müller <tim at centricular dot net>
3924 * sys/xvimage/xvimagesink.c:
3925 (gst_xvimagesink_navigation_send_event):
3926 Check whether peer pad exists before sending navigation events
3929 2005-11-11 Michael Smith <msmith@fluendo.com>
3931 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
3932 (gst_vorbisenc_buffer_from_packet):
3933 * ext/vorbis/vorbisenc.h:
3934 Set duration on encoded buffers. This allows oggmux's
3935 max_page_delay parameter to actually work.
3937 2005-11-11 Tim-Philipp Müller <tim at centricular dot net>
3939 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
3940 (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
3941 (gst_ffmpegcsp_avpicture_fill):
3942 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3943 (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
3944 Make palettes work again (see #132341). Use our own macros
3947 2005-11-10 Andy Wingo <wingo@pobox.com>
3949 * gst/playback/gstplaybasebin.c (prepare_output): Fix format
3952 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
3954 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3955 (gst_ffmpegcsp_transform_caps):
3956 Prefer passthrough in transform_caps
3958 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
3960 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
3961 check for ALSA errors properly, instead of relying on ALSA's
3962 error strings to serve to the user.
3964 2005-11-10 Wim Taymans <wim@fluendo.com>
3966 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
3967 (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
3968 (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
3969 Modernise the seek code.
3971 2005-11-10 Michael Smith <msmith@fluendo.com>
3973 * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
3974 (setup_substreams), (set_active_source):
3975 Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
3976 trying to go to NULL if we failed to read a file.
3978 2005-11-10 Wim Taymans <wim@fluendo.com>
3980 * gst/audiotestsrc/gstaudiotestsrc.c:
3981 (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
3982 (gst_audiotestsrc_create):
3983 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
3984 (gst_sinesrc_get_times), (gst_sinesrc_create):
3985 * gst/videotestsrc/gstvideotestsrc.c:
3986 (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
3987 (gst_videotestsrc_create):
3988 The base class can now sync for us.
3990 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
3992 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
3993 a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
3994 name=source autoprobe=false autoprobe-fps=false copy-mode=1
3995 device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
3996 format=(fourcc)I420" ! xvimagesink
3998 2005-11-10 Tim-Philipp Müller <tim at centricular dot net>
4000 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
4001 (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
4002 (gst_sinesrc_newsegment):
4003 Send newsegment event in TIME format, set duration if
4004 num-buffers is set, fix duration querying.
4006 2005-11-10 Michael Smith <msmith@fluendo.com>
4008 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
4009 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
4010 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
4011 (gst_ogg_mux_collected):
4012 Fix EOS handling, partially. Now forwarding an EOS event once we have
4013 EOS on all pads works correctly. However, we still don't properly set
4014 EOS on the actual ogg stream pages.
4016 2005-11-09 Tim-Philipp Müller <tim at centricular dot net>
4018 * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
4019 Set elements to NULL state before disposing of them.
4021 2005-11-08 Sebastien Cote <sebas642 at yahoo dot ca>
4023 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
4025 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4026 (gst_base_rtp_depayload_init),
4027 (gst_base_rtp_depayload_set_gst_timestamp):
4028 * gst-libs/gst/rtp/gstbasertpdepayload.h:
4029 We need to send a newsegment event for each instance, not
4030 just for the first instance of this class (get rid of
4031 static variable in function). (#321011).
4033 2005-11-08 Michael Smith <msmith@fluendo.com>
4035 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
4036 (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
4037 (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
4038 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
4039 Forward port rewrite of muxing strategy to 0.9 version of oggmux.
4040 This makes us mux things correctly according to the ogg muxing
4041 rules. Still not handling EOS correctly right now, though.
4043 2005-11-08 Tim-Philipp Müller <tim at centricular dot net>
4045 * gst/audioconvert/gstaudioconvert.c:
4048 2005-11-08 Tim-Philipp Müller <tim at centricular dot net>
4050 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4051 (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
4052 Initialise segment_stop to GST_CLOCK_TIME_NONE when
4053 creating a new chain; should fix live streaming. Also
4054 add more debug output and fix a typo.
4056 2005-11-08 Brian Cameron <brian dot cameron at sun dot com>
4058 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
4060 * gst/volume/gstvolume.c: (volume_set_caps):
4061 Fix compilation on Solaris with Forte. (#320923)
4063 2005-11-08 Wim Taymans <wim@fluendo.com>
4065 * gst-libs/gst/audio/gstbaseaudiosink.c:
4066 (gst_base_audio_sink_render):
4067 No need to do a typecheck.
4069 2005-11-07 Tim-Philipp Müller <tim at centricular dot net>
4071 * ext/alsa/gstalsa.h:
4072 We register a debug category, so let's use it.
4074 2005-11-04 Zeeshan Ali <zeenix@gmail.com>
4076 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4077 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
4078 Fixed a small problem.
4080 2005-11-04 Wim Taymans <wim@fluendo.com>
4082 * examples/seeking/Makefile.am:
4083 * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
4084 (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
4085 (make_playerbin_pipeline), (format_value), (update_scale),
4086 (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
4087 (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
4088 (print_usage), (main):
4089 Added app for playback speed testing.
4091 * examples/seeking/seek.c: (dynamic_link),
4092 (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
4093 (make_mpeg_pipeline), (do_seek), (set_update_scale),
4094 (message_received), (main):
4095 Updated seek example.
4097 2005-11-04 Zeeshan Ali <zeenix@gmail.com>
4099 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4100 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
4101 (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
4102 (gst_base_rtp_depayload_set_clock):
4103 * gst-libs/gst/rtp/gstbasertpdepayload.h:
4104 Don't sleep on the bench (system clock) when you have a nice
4105 comfortable bed (Gstreamer clock) to sleep on.
4107 2005-11-03 Wim Taymans <wim@fluendo.com>
4109 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
4110 (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
4111 (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
4112 Handle the case where a pad_block failed.
4114 2005-11-02 Sebastien Cote <sebas642@yahoo.ca>
4116 reviewed by: Zeeshan Ali <zeenix@gmail.com>
4118 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4119 (gst_base_rtp_depayload_add_to_queue),
4120 (gst_base_rtp_depayload_push),
4121 (gst_base_rtp_depayload_set_gst_timestamp),
4122 (gst_base_rtp_depayload_queue_release):
4123 Fixes some bugs in the depayloader's queuing/de-queueing code.
4125 2005-10-31 Michael Smith <msmith@fluendo.com>
4127 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
4128 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
4129 (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
4130 Patch from Alessandro Decina <alessandro@nnva.org>.
4131 Make oggdemux only find the final time in a chain, not per-pad,
4132 since the per-pad information can be very expensive to locate, and
4133 it isn't used anywhere. This makes reading a file containing
4134 OggSkeleton reasonably fast.
4135 Also, make chain finding work when there are logical bitstreams that
4136 can't be decoded. Fixes #319110.
4138 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
4140 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4141 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
4142 (gst_base_rtp_depayload_chain),
4143 (gst_base_rtp_depayload_add_to_queue),
4144 (gst_base_rtp_depayload_push),
4145 (gst_base_rtp_depayload_set_gst_timestamp),
4146 (gst_base_rtp_depayload_queue_release),
4147 (gst_base_rtp_depayload_start_thread),
4148 (gst_base_rtp_depayload_set_property),
4149 (gst_base_rtp_depayload_get_property):
4150 * gst-libs/gst/rtp/gstbasertpdepayload.h:
4151 Some random fixes, to fullfill the desires of thomas.
4153 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
4155 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4156 (gst_base_rtp_depayload_add_to_queue),
4157 (gst_base_rtp_depayload_push):
4158 Fixed the queueing algorithm.
4160 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
4162 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4163 (gst_base_rtp_depayload_push):
4166 2005-10-31 Wim Taymans <wim@fluendo.com>
4168 * gst-libs/gst/audio/gstringbuffer.h:
4171 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
4172 (gst_ffmpeg_caps_to_pixfmt):
4173 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4174 (gst_ffmpegcsp_set_caps):
4176 Handle missing required caps fields better.
4178 2005-10-31 Wim Taymans <wim@fluendo.com>
4180 * gst-libs/gst/audio/gstbaseaudiosink.c:
4181 (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
4182 (gst_base_audio_sink_render):
4183 * gst-libs/gst/audio/gstringbuffer.c:
4184 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
4185 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
4186 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
4187 (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
4188 (gst_ring_buffer_read):
4189 * gst-libs/gst/audio/gstringbuffer.h:
4190 Add flushing mode to the ringbuffer so that it in all cases does
4191 not try to handle more audio. This makes sure it does not try to
4192 block anymore when flushing and fixes a livelock.
4194 2005-10-29 Tim-Philipp Müller <tim at centricular dot net>
4196 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
4197 (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
4198 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
4199 Explicitly check for -1 values before doing a conversion
4200 and always map them to -1. (#315545)
4202 2005-10-28 Thomas Vander Stichele <thomas at apestaart dot org>
4204 * gst/playback/gstplaybin.c: (gen_video_element):
4205 first try autovideosink, then xvimagesink, then error out
4207 add translatable file
4224 2005-10-27 Philippe Khalaf <burger at speedy dot org>
4226 * gst-libs/gst/rtp/gstbasedepayload.c:
4227 * gst-libs/gst/rtp/gstbasedepayload.h:
4230 2005-10-27 Tim-Philipp Müller <tim at centricular dot net>
4232 * gst/playback/.cvsignore:
4233 * gst/playback/decodetest.c:
4234 * gst/playback/test3.c:
4235 Port these two tests as well.
4237 2005-10-27 Wim Taymans <wim@fluendo.com>
4239 * ext/theora/theoradec.c: (theora_dec_src_query),
4240 (theora_dec_sink_event):
4241 * ext/theora/theoraenc.c: (theora_enc_sink_event),
4242 (theora_enc_change_state):
4243 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
4244 (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
4245 Take proper locks when handling events.
4247 2005-10-27 Wim Taymans <wim@fluendo.com>
4249 * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
4250 (gst_adder_change_state):
4251 Fix timestamps and fix deadlock when stopping the collectpads.
4253 2005-10-27 Zeeshan Ali <zeenix@gmail.com>
4255 * gst-libs/gst/rtp/gstrtpbuffer.h:
4256 Declaring the payload types as strings too so that they can be used
4257 in the padtemplate inialization.
4259 2005-10-26 Andre Magalhaes <andrunko@gmail.com>
4261 reviewed by: Zeeshan Ali <zeenix@gmail.com>
4263 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4264 (gst_base_rtp_depayload_class_init):
4265 Fixes a small but nasty bug. The derived elements no longer segfaults
4268 2005-10-26 Michael Smith <msmith@fluendo.com>
4270 * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
4271 When clearing an audioconvert context, set tmpbufsize to zero, so
4272 we'll allocate it again later if required.
4273 This fixes audioconvert re-negotiating formats, which previously
4274 segfaulted with a NULL destination buffer.
4276 2005-10-26 Zeeshan Ali <zeenix@gmail.com>
4278 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4279 (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
4280 (gst_base_rtp_depayload_set_gst_timestamp),
4281 (gst_base_rtp_depayload_queue_release):
4282 Fixed a smalll memleak.
4284 2005-10-26 Zeeshan Ali <zeenix@gmail.com>
4285 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4286 (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
4287 (gst_base_rtp_depayload_finalize),
4288 (gst_base_rtp_depayload_setcaps),
4289 (gst_base_rtp_depayload_add_to_queue),
4290 (gst_base_rtp_depayload_push),
4291 (gst_base_rtp_depayload_set_gst_timestamp),
4292 (gst_base_rtp_depayload_queue_release),
4293 (gst_base_rtp_depayload_thread),
4294 (gst_base_rtp_depayload_change_state):
4295 * gst-libs/gst/rtp/gstbasertpdepayload.h:
4296 Changed the C++ comments to C comments
4298 2005-10-26 Tim-Philipp Müller <tim at centricular dot net>
4300 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
4301 * gst/tcp/gsttcpclientsrc.h:
4302 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
4303 * gst/tcp/gsttcpserversrc.h:
4304 Remove unused 'curoffset' structure member.
4306 2005-10-25 Zeeshan Ali <zeenix@gmail.com>
4308 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4309 (gst_base_rtp_depayload_base_init),
4310 (gst_base_rtp_depayload_finalize):
4311 * gst-libs/gst/rtp/gstbasertpdepayload.h:
4312 * gst-libs/gst/rtp/gstbasertppayload.h:
4313 The pad-template on the sinkpad should be set by the derived classes.
4314 Also added some useful macros.
4316 2005-10-24 Wim Taymans <wim@fluendo.com>
4318 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
4319 Correctly flush decoder samples even if we could not
4320 copy them to an output buffer. Fixes #319618.
4322 2005-10-24 Julien MOUTTE <julien@moutte.net>
4324 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
4325 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
4326 the caps against our xcontext caps.
4328 2005-10-24 Wim Taymans <wim@fluendo.com>
4330 * gst-libs/gst/audio/gstbaseaudiosink.c:
4331 (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
4333 Use sync property from baseclass to disable sync.
4335 2005-10-24 Wim Taymans <wim@fluendo.com>
4337 * gst-libs/gst/audio/gstbaseaudiosink.c:
4338 (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
4339 Buffers with no timestamps get aligned with previous buffers or
4340 on underrun, played ASAP.
4342 2005-10-24 Julien MOUTTE <julien@moutte.net>
4344 * gst-libs/gst/video/video.h:
4345 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
4346 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
4347 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
4348 here comes my change on caps for framerate and geometry range.
4349 We are now accepting 1 to MAXINT for width and height, and from
4350 0.0 to MAXDOUBLE for framerate. That allows duration less png frames
4351 to be blended correctly in videomixer.
4353 2005-10-24 Thomas Vander Stichele <thomas at apestaart dot org>
4358 === release 0.9.4 ===
4360 2005-10-23 Thomas Vander Stichele <thomas at apestaart dot org>
4365 releasing 0.9.4, "Velociraptor"
4367 2005-10-23 Thomas Vander Stichele <thomas at apestaart dot org>
4369 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
4373 2005-10-21 Wim Taymans <wim@fluendo.com>
4375 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
4376 (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
4377 (pad_blocked), (close_pad_link), (new_pad):
4378 Don't try to remove elements twice.
4380 2005-10-21 Wim Taymans <wim@fluendo.com>
4382 * ext/theora/theoradec.c: (theora_dec_src_query),
4383 (theora_dec_sink_event):
4384 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
4385 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
4386 (vorbis_handle_data_packet):
4387 * ext/vorbis/vorbisdec.h:
4390 * gst-libs/gst/audio/gstbaseaudiosink.c:
4391 (gst_base_audio_sink_render):
4392 Don't try to sync on buffers without a timestamp.
4394 2005-10-21 Wim Taymans <wim@fluendo.com>
4396 * ext/theora/theoradec.c: (theora_dec_src_query),
4397 (theora_dec_sink_event):
4398 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
4399 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
4400 (vorbis_handle_data_packet):
4401 * ext/vorbis/vorbisdec.h:
4404 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
4406 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
4407 (gst_vorbisenc_src_query):
4408 Implement position and duration queries.
4410 * gst/playback/test3.c: (update_scale), (main):
4411 Fix for async state changes and print nicer output.
4413 2005-10-20 Wim Taymans <wim@fluendo.com>
4415 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
4416 (dump_element_stats), (main):
4417 * gst/playback/test6.c: (main):
4420 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
4422 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
4423 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
4424 Don't use functions for position queries when handling
4427 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
4429 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
4430 (vorbis_handle_data_packet), (vorbis_dec_chain),
4431 (vorbis_dec_change_state):
4432 * ext/vorbis/vorbisdec.h:
4433 Vorbis streams can be embedded in other container formats
4434 than ogg, container formats where the demuxer might set
4435 timestamps on encoded vorbis buffers instead of those silly
4436 granulepos thingies. In short: make vorbisdec handle
4437 timestamps on incoming buffers as well.
4439 2005-10-20 Wim Taymans <wim@fluendo.com>
4441 * gst/playback/gstplaybasebin.c: (group_destroy),
4442 (gst_play_base_bin_change_state):
4444 Handle case where playbasebin is now ASYNC because
4447 2005-10-19 Tim-Philipp Müller <tim at centricular dot net>
4449 * gst/audioconvert/Makefile.am:
4450 * gst/audioconvert/bufferframesconvert.c:
4451 * gst/audioconvert/plugin.c: (plugin_init):
4452 * gst/audioconvert/plugin.h:
4453 And bye bye buffer-frames-convert
4455 2005-10-19 Wim Taymans <wim@fluendo.com>
4457 * check/elements/audioconvert.c:
4458 * docs/libs/tmpl/gstaudio.sgml:
4459 * docs/libs/tmpl/gstcolorbalance.sgml:
4460 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
4461 (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
4462 * ext/vorbis/vorbisenc.c: (raw_caps_factory):
4463 * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
4464 * gst-libs/gst/audio/audio.h:
4465 * gst/audioconvert/audioconvert.h:
4466 * gst/audioconvert/gstaudioconvert.c:
4467 (gst_audio_convert_parse_caps):
4468 * gst/volume/gstvolume.c:
4469 Bye bye buffer-frames.
4471 2005-10-19 Wim Taymans <wim@fluendo.com>
4473 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
4474 (query_positions_elems), (query_positions_pads), (update_scale),
4475 (do_seek), (set_update_scale), (message_received), (main):
4476 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
4477 (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
4478 (gst_ogg_demux_loop):
4479 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
4480 * ext/theora/theoradec.c: (theora_dec_src_query),
4481 (theora_dec_sink_event):
4482 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
4483 (vorbis_dec_sink_event), (vorbis_handle_data_packet):
4484 * gst/adder/gstadder.c: (gst_adder_query):
4485 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
4486 * gst/playback/test3.c: (update_scale):
4487 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
4488 (dump_element_stats), (main):
4489 * gst/playback/test6.c: (main):
4490 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
4493 2005-10-19 Tim-Philipp Müller <tim at centricular dot net>
4495 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
4496 (xml_check_first_element), (xml_type_find), (smil_type_find),
4498 Add typefinding for SMIL and for generic XML. Based on patch by
4499 Akos Maroy (#308663).
4501 2005-10-18 Wim Taymans <wim@fluendo.com>
4503 * gst/playback/Makefile.am:
4504 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
4505 (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
4506 (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
4507 (try_to_link_1), (new_pad), (no_more_pads), (type_found),
4508 (gst_decode_bin_change_state):
4509 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
4510 (gst_play_bin_send_event_to_sink):
4511 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
4512 (dump_element_stats), (main):
4513 * gst/playback/test6.c: (main):
4514 Make playbin async, it'll commit state to paused when all streams
4517 Added test6.c to show async behaviour.
4519 2005-10-18 Wim Taymans <wim@fluendo.com>
4521 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
4522 (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
4523 Fix for segment-start/stop API change.
4525 2005-10-18 Wim Taymans <wim@fluendo.com>
4527 * check/Makefile.am:
4528 * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
4530 Add future test for clock selection.
4532 2005-10-18 Wim Taymans <wim@fluendo.com>
4534 * ext/alsa/gstalsasink.c: (gst_alsasink_init),
4535 (gst_alsasink_close):
4538 * gst-libs/gst/audio/gstringbuffer.c:
4539 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
4540 (gst_ring_buffer_acquire), (gst_ring_buffer_release),
4541 (gst_ring_buffer_start), (gst_ring_buffer_pause),
4542 (gst_ring_buffer_stop), (gst_ring_buffer_commit),
4543 (gst_ring_buffer_read):
4546 2005-10-17 Stefan Kost <ensonic@users.sf.net>
4548 * gst/audiotestsrc/Makefile.am:
4549 * gst/sine/Makefile.am:
4550 * gst/volume/Makefile.am:
4551 fix broken build of controllerized plugins
4553 2005-10-17 Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
4555 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
4557 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
4558 (gst_riff_create_video_template_caps):
4559 Add support for Indeo-3 (IV32).
4561 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
4566 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
4568 * gst-libs/gst/video/video.c: (gst_video_get_size):
4569 * gst/audiotestsrc/gstaudiotestsrc.c:
4572 2005-10-17 Andy Wingo <wingo@pobox.com>
4574 * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
4575 with the collectpads change.
4576 (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
4578 * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
4580 * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
4582 * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
4583 alloc_buffer flow return to callers.
4584 (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
4585 change. Fix some memleaks in theoraenc.
4587 * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
4588 in strange circumstance.
4590 2005-10-17 Julien MOUTTE <julien@moutte.net>
4592 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4593 (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
4594 from caps, let's use the caps...
4596 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
4599 put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
4601 2005-10-16 Thomas Vander Stichele <thomas at apestaart dot org>
4603 * gst-libs/gst/interfaces/Makefile.am:
4606 2005-10-16 Andy Wingo <wingo@pobox.com>
4608 * gst/playback/gstdecodebin.c
4609 (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
4611 (try_to_link_1): Increase kraziness level.
4613 2005-10-16 Thomas Vander Stichele <thomas at apestaart dot org>
4616 restructure like the core one
4617 * gst-libs/gst/audio/Makefile.am:
4618 * gst-libs/gst/interfaces/Makefile.am:
4619 * gst-libs/gst/net/Makefile.am:
4620 * gst-libs/gst/riff/Makefile.am:
4621 * gst-libs/gst/rtp/Makefile.am:
4622 * gst-libs/gst/tag/Makefile.am:
4623 * gst-libs/gst/video/Makefile.am:
4624 use correct linker flags, now the libs are properly versioned
4625 * check/elements/audioconvert.c: (verify_convert):
4626 * ext/alsa/gstalsaplugin.c:
4627 * ext/cdparanoia/gstcdparanoia.c:
4628 * ext/gnomevfs/gstgnomevfs.c:
4629 * ext/libvisual/visual.c:
4631 * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
4632 * ext/theora/theora.c:
4633 * ext/vorbis/vorbis.c:
4634 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
4635 * gst-libs/gst/tag/gsttagediting.c:
4636 * gst-libs/gst/video/video.c:
4637 * gst/adder/gstadder.c:
4638 * gst/audioconvert/plugin.c:
4639 * gst/audiorate/gstaudiorate.c:
4640 * gst/audioresample/gstaudioresample.c:
4641 * gst/audioresample/resample_ref.c: (resample_scale_ref):
4642 * gst/audioscale/gstaudioscale.c:
4643 * gst/audioscale/resample.c:
4644 * gst/audiotestsrc/gstaudiotestsrc.c:
4645 * gst/ffmpegcolorspace/gstffmpeg.c:
4646 * gst/playback/gstdecodebin.c: (close_pad_link):
4647 * gst/playback/gstplaybin.c: (gen_video_element),
4648 (gen_audio_element):
4649 * gst/sine/gstsinesrc.c:
4650 * gst/subparse/gstsubparse.c:
4651 * gst/tags/gsttagediting.c:
4652 * gst/tcp/gsttcpplugin.c:
4653 * gst/typefind/gsttypefindfunctions.c:
4654 * gst/videorate/gstvideorate.c:
4655 * gst/videoscale/gstvideoscale.c:
4656 * gst/videotestsrc/gstvideotestsrc.c:
4657 * gst/volume/gstvolume.c:
4659 * sys/ximage/ximage.c:
4660 * sys/xvimage/xvimagesink.c:
4663 2005-10-13 Tim-Philipp Müller <tim at centricular dot net>
4665 * ext/vorbis/vorbisenc.c:
4666 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
4667 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
4668 (gst_tag_to_vorbis_comments):
4669 Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
4671 2005-10-13 Stefan Kost <ensonic@users.sf.net>
4673 * examples/stats/mp2ogg.c:
4674 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
4677 2005-10-13 Michael Smith <msmith@fluendo.com>
4679 * ext/ogg/gstoggmux.c:
4680 Use magic glib macros to define constants as 64 bit, to ensure
4681 appropriate vararg passing.
4683 2005-10-13 Michael Smith <msmith@fluendo.com>
4685 * ext/ogg/gstoggmux.c:
4686 * gst/audioconvert/audioconvert.c: (float):
4687 Don't use LL suffix, as it's not portable, and neither of these
4688 uses required it anyway.
4690 2005-10-12 Stefan Kost <ensonic@users.sf.net>
4692 * examples/indexing/indexmpeg.c: (main):
4693 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
4694 (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
4695 (cdparanoia_convert), (cdparanoia_query):
4696 * ext/cdparanoia/gstcdparanoia.h:
4697 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
4698 (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
4699 (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
4700 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
4701 * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
4702 * gst/playback/gststreamselector.c: (gst_stream_selector_init):
4703 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
4704 (gst_multifdsink_render), (gst_multifdsink_start),
4705 (gst_multifdsink_stop):
4706 * gst/tcp/gstmultifdsink.h:
4707 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
4708 (gst_tcpclientsink_render), (gst_tcpclientsink_start),
4709 (gst_tcpclientsink_stop):
4710 * gst/tcp/gsttcpclientsink.h:
4711 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
4712 (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
4713 (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
4714 * gst/tcp/gsttcpclientsrc.h:
4715 * gst/tcp/gsttcpserversink.h:
4716 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
4717 (gst_tcpserversrc_create), (gst_tcpserversrc_start),
4718 (gst_tcpserversrc_stop):
4719 * gst/tcp/gsttcpserversrc.h:
4720 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
4721 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
4722 * sys/ximage/ximagesink.c: (gst_ximagesink_init):
4723 renamed GST_FLAGS macros to GST_OBJECT_FLAGS
4724 moved bitshift from macro to enum definition
4726 2005-10-12 Wim Taymans <wim@fluendo.com>
4728 * examples/seeking/Makefile.am:
4731 2005-10-12 Wim Taymans <wim@fluendo.com>
4733 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
4734 (gst_ring_buffer_read), (gst_ring_buffer_clear):
4735 Don't assert on normal stuff.
4737 * gst/playback/gstplaybin.c: (do_playbin_seek):
4740 2005-10-12 Wim Taymans <wim@fluendo.com>
4742 * check/pipelines/simple_launch_lines.c: (run_pipeline):
4743 * examples/seeking/Makefile.am:
4744 * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
4745 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
4746 (do_seek), (set_update_scale), (message_received), (main):
4747 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
4748 (gst_ring_buffer_read), (gst_ring_buffer_clear):
4749 Update for _get_state() API change.
4751 2005-10-11 Wim Taymans <wim@fluendo.com>
4753 * gst-libs/gst/audio/gstbaseaudiosink.c:
4754 (gst_base_audio_sink_render):
4755 * gst-libs/gst/audio/gstbaseaudiosrc.c:
4756 (gst_base_audio_src_create):
4757 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
4758 (gst_ring_buffer_read):
4760 Commit and read from ringbuffer in samples rather than bytes.
4762 2005-10-11 Wim Taymans <wim@fluendo.com>
4764 * gst-libs/gst/audio/gstbaseaudiosink.c:
4765 (gst_base_audio_sink_render):
4766 Respect segment rate and accum when scheduling samples.
4768 2005-10-11 Julien MOUTTE <julien@moutte.net>
4770 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
4771 (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
4772 EOS correctly, that needs more work.
4774 2005-10-11 Wim Taymans <wim@fluendo.com>
4776 * check/generic/states.c: (GST_START_TEST):
4777 remove old property.
4779 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
4780 (gst_ogg_demux_perform_seek):
4781 * ext/theora/theoradec.c: (theora_dec_sink_event):
4782 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
4783 (vorbis_handle_data_packet):
4784 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4785 (gst_base_rtp_depayload_set_gst_timestamp):
4786 * gst/videorate/gstvideorate.c: (gst_videorate_event):
4787 Update for newsegment API change.
4789 2005-10-11 Michael Smith <msmith@fluendo.com>
4791 * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
4792 (do_playbin_seek), (gst_play_bin_send_event):
4793 Override send_event differently, so that we can takes bits of
4794 functionality from GstPipeline (special handling for seeks,
4795 including pausing/resuming, and resetting stream time) and still get
4796 the appropriate behaviour of only forwarding event to a single sink,
4797 rather than all of them.
4798 Unfortunately requires a lot of code duplication, but the
4799 alternatives are equally ugly in the end.
4801 2005-10-11 Thomas Vander Stichele <thomas at apestaart dot org>
4803 * check/elements/audioconvert.c: (setup_audioconvert),
4804 (cleanup_audioconvert), (get_int_caps), (verify_convert),
4805 (GST_START_TEST), (audioconvert_suite):
4806 clean up tests a little, fix some leaks.
4808 2005-10-10 Wim Taymans <wim@fluendo.com>
4810 * ext/alsa/gstalsasink.c:
4811 Also allow unsigned int.
4813 * gst-libs/gst/audio/gstbaseaudiosrc.c:
4814 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
4817 2005-10-10 Wim Taymans <wim@fluendo.com>
4819 * check/pipelines/simple_launch_lines.c: (run_pipeline):
4820 Small update, use API as stated in design docs.
4822 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
4823 (update_scale), (do_seek), (seek_cb), (set_update_scale),
4824 (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
4825 (message_received), (main):
4826 Updated seek example for GOption. Some usability improvements.
4828 2005-10-10 Wim Taymans <wim@fluendo.com>
4830 * gst/audioconvert/audioconvert.h:
4831 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
4832 (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
4833 Alloc temp storage somewhere else where we can do it more
4836 2005-10-10 Wim Taymans <wim@fluendo.com>
4838 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
4839 (gst_tcpserversrc_start):
4840 Don't block in accept while doing the state change, move
4841 to poll and make cancellable.
4843 2005-10-09 Philippe Khalaf <burger@speedy.org>
4845 * gst-libs/gst/rtp/rtpbasedepayload.c:
4846 Set timestamp and add queue delay to timestamp
4847 * gst-libs/gst/rtp/rtpbuffer.h:
4848 Set correct payload type for h263
4850 2005-10-09 Stefan Kost <ensonic@users.sf.net>
4852 * gst/audiotestsrc/gstaudiotestsrc.c:
4853 (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
4854 (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
4855 (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
4856 (gst_audiotestsrc_create_triangle),
4857 (gst_audiotestsrc_create_silence),
4858 (gst_audiotestsrc_create_white_noise),
4859 (gst_audiotestsrc_init_pink_noise),
4860 (gst_audiotestsrc_generate_pink_noise_value),
4861 (gst_audiotestsrc_create_pink_noise),
4862 (gst_audiotestsrc_change_wave):
4863 * gst/audiotestsrc/gstaudiotestsrc.h:
4864 fixed typo, added pink noise
4866 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
4868 * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
4870 Add wavpack and spc typefind functions from 0.8 branch.
4872 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
4874 * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
4875 (ar_type_find), (msdos_type_find), (plugin_init):
4876 Add typefind functions for tar archives, ar archives,
4877 RAR archives, and msdos-executables (dlls, exe, etc.).
4878 Some of those would be wrongly identified as mpeg
4879 streams of some sort before (#315550).
4881 2005-10-09 Stefan Kost <ensonic@users.sf.net>
4884 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4885 * docs/plugins/gst-plugins-base-plugins-sections.txt:
4886 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
4887 * gst/audiotestsrc/Makefile.am:
4888 * gst/audiotestsrc/gstaudiotestsrc.c:
4889 (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
4890 (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
4891 (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
4892 (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
4893 (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
4894 (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
4895 (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
4896 (gst_audiotestsrc_create_silence),
4897 (gst_audiotestsrc_create_white_noise),
4898 (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
4899 (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
4900 (gst_audiotestsrc_start), (plugin_init):
4901 * gst/audiotestsrc/gstaudiotestsrc.h:
4902 add new plugin and element
4903 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
4906 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
4908 * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
4909 (gst_adder_init), (gst_adder_request_new_pad),
4910 (gst_adder_change_state):
4911 Add query function to source pad, so adder reports the correct
4912 time/sample position when queried (#315457); fix state change
4913 function; use GST_DEBUG_FUNCPTR() for pad functions.
4915 2005-10-08 Thomas Vander Stichele <thomas at apestaart dot org>
4917 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
4918 Fix leaks in typefind registration
4919 Clean up the gratuitous commenting and whitespacing a little
4921 2005-10-08 Wim Taymans <wim@fluendo.com>
4923 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
4924 Only actually wait for the thread to be stopped if it's
4927 2005-10-08 Wim Taymans <wim@fluendo.com>
4929 * gst-libs/gst/audio/gstbaseaudiosink.c:
4930 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
4931 If we receive EOS we can start playback of what we had.
4933 2005-10-08 Wim Taymans <wim@fluendo.com>
4935 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
4936 (gst_multifdsink_finalize), (multifdsink_hash_remove),
4937 (gst_multifdsink_stop):
4938 Fix crasher when going to NULL multiple times.
4940 2005-10-06 Wim Taymans <wim@fluendo.com>
4942 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
4943 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
4944 * gst-libs/gst/audio/gstbaseaudiosrc.h:
4945 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
4946 patch from Edgard Lima <edgard.lima@indt.org.br>
4947 Fixed gstbaseaudiosrc adding ring buffer sync to it.
4949 2005-10-06 Wim Taymans <wim@fluendo.com>
4951 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
4952 Report the FLOW_RETURN as string in the error message.
4954 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
4955 Don't assert when clearing an unnegotiated buffer.
4957 2005-10-04 Michael Smith <msmith@fluendo.com>
4959 * gst/playback/gstplaybasebin.c: (group_destroy),
4960 (gen_preroll_element), (remove_groups), (setup_source):
4961 * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
4962 (setup_sinks), (gst_play_bin_send_event),
4963 (gst_play_bin_change_state):
4964 Set state to NULL before removing from bin. Fix refcounting.
4966 2005-10-04 Michael Smith <msmith@fluendo.com>
4968 * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
4969 Correct refcounting in send_event() function. Previously was wrong
4970 if the first sink was unable to handle the event.
4972 2005-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
4977 === release 0.9.3 ===
4979 2005-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
4982 Releasing 0.9.3, "De Facto"
4984 2005-10-03 Andy Wingo <wingo@pobox.com>
4986 * gst/playback/gstdecodebin.c (try_to_link_1)
4987 (remove_element_chain): set element to NULL before removing it.
4989 2005-10-02 Johan Dahlin <johan@gnome.org>
4991 * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols):
4992 protect gst_gnomevfs_get_supported_uris by a mutex, to make it
4995 2005-10-02 Andy Wingo <wingo@pobox.com>
4997 * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear)
4998 (gst_ring_buffer_prepare_read):
4999 * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
5002 2005-09-29 Wim Taymans <wim@fluendo.com>
5004 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
5005 * ext/theora/theoradec.c: (theora_handle_data_packet):
5006 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
5007 Propagate error codes from alloc_buffer too.
5009 2005-09-29 Wim Taymans <wim@fluendo.com>
5011 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
5014 * gst/playback/Makefile.am:
5015 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
5016 (dump_element_stats), (main):
5017 Added example stream introspection code.
5019 2005-09-28 Stefan Kost <ensonic@users.sf.net>
5021 * gst/adder/gstadder.c: (gst_adder_collected):
5022 fix adder for float elements
5024 2005-09-28 Wim Taymans <wim@fluendo.com>
5026 * gst-libs/gst/audio/gstbaseaudiosink.c:
5027 (gst_base_audio_sink_class_init),
5028 (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
5029 * gst-libs/gst/audio/gstbaseaudiosrc.c:
5030 (gst_base_audio_src_class_init),
5031 (gst_base_audio_src_provide_clock):
5032 get_clock -> provide_clock
5034 2005-09-28 Andy Wingo <wingo@pobox.com>
5036 * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
5039 * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
5042 * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
5043 Actually add the pad template.
5044 (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
5046 * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
5049 * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
5050 from fdsrc. Get caps in create() instead of start() so it can be
5051 interrupted. Interruption somewhat untested.
5053 * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
5054 Proper EOS handling.
5056 2005-09-27 Andy Wingo <wingo@pobox.com>
5058 * gst/tcp/gsttcpclientsrc.c: Cleaned up.
5060 * gst/tcp/gsttcpserversrc.c: Cleaned up.
5062 * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
5065 * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
5066 out of tcpclientsrc.c. Cancellable.
5067 (gst_tcp_socket_read): Made private, cancellable, with better
5068 diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
5069 (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
5070 whole buffer, and better diagnostics.
5071 (gst_tcp_gdp_read_caps): Same.
5073 * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
5075 2005-09-26 Andy Wingo <wingo@pobox.com>
5077 * gst/sine/gstsinesrc.h:
5078 * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
5079 change the 'sync' property to 'is-live' and implement it halfway,
5080 update for controller api change.
5082 * gst/volume/gstvolume.c (volume_transform_ip): Update for
5083 controller api change.
5085 2005-09-24 Wim Taymans <wim@fluendo.com>
5087 * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
5088 * gst-libs/gst/audio/gstaudiosink.c:
5089 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
5090 (gst_audioringbuffer_stop):
5091 * gst-libs/gst/audio/gstbaseaudiosink.c:
5092 (gst_base_audio_sink_event), (gst_base_audio_sink_render),
5093 (gst_base_audio_sink_change_state):
5094 * gst-libs/gst/audio/gstbaseaudiosink.h:
5095 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
5096 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
5097 (gst_ring_buffer_commit), (gst_ring_buffer_read):
5098 * gst-libs/gst/audio/gstringbuffer.h:
5099 Fix sync again. Moved sample alignment to basesink.
5101 2005-09-23 Thomas Vander Stichele <thomas at apestaart dot org>
5103 * docs/plugins/Makefile.am:
5104 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
5105 * docs/plugins/gst-plugins-base-plugins-sections.txt:
5106 * gst/volume/gstvolume.c:
5108 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
5109 * gst-libs/gst/audio/audio.h:
5110 add conversion macros for frames <-> clocktime
5112 2005-09-23 David Schleef <ds@schleef.org>
5114 * gst/audioresample/Makefile.am:
5115 * gst/audioresample/debug.h:
5116 * gst/audioresample/gstaudioresample.c:
5117 * gst/audioresample/resample.c: Convert to using gst debugging
5119 2005-09-22 Wim Taymans <wim@fluendo.com>
5121 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
5122 (gst_play_bin_send_event):
5123 Only seek on one sink, the first one that succeeds.
5125 2005-09-22 Michael Smith <msmith@fluendo.com>
5127 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
5128 (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
5129 Don't flush encoder state unless we have an initialised encoder.
5130 Clear out encoder state on PAUSED_TO_READY.
5132 2005-09-22 Wim Taymans <wim@fluendo.com>
5134 * gst-libs/gst/rtp/gstbasertppayload.c:
5135 (gst_basertppayload_class_init), (gst_basertppayload_init),
5136 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
5137 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
5138 (gst_basertppayload_is_filled), (gst_basertppayload_push),
5139 (gst_basertppayload_set_property),
5140 (gst_basertppayload_get_property),
5141 (gst_basertppayload_change_state):
5142 * gst-libs/gst/rtp/gstbasertppayload.h:
5143 Added max-ptime to control amount of data in the rtp packets.
5145 2005-09-21 Andy Wingo <wingo@pobox.com>
5147 * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
5150 * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
5151 can be called multiple times, dogs.
5153 2005-09-21 Wim Taymans <wim@fluendo.com>
5155 * gst-libs/gst/rtp/gstbasertppayload.c:
5156 (gst_basertppayload_class_init), (gst_basertppayload_init),
5157 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
5158 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
5159 (gst_basertppayload_push), (gst_basertppayload_get_property),
5160 (gst_basertppayload_change_state):
5163 2005-09-21 Stefan Kost <ensonic@users.sf.net>
5165 * docs/libs/compiling.sgml:
5168 2005-09-20 Wim Taymans <wim@fluendo.com>
5170 * gst-libs/gst/rtp/gstbasertppayload.c:
5171 (gst_basertppayload_class_init), (gst_basertppayload_init),
5172 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
5173 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
5174 (gst_basertppayload_push), (gst_basertppayload_set_property),
5175 (gst_basertppayload_get_property),
5176 (gst_basertppayload_change_state):
5177 * gst-libs/gst/rtp/gstbasertppayload.h:
5178 Added property to configure sequence number offsets.
5180 2005-09-20 Wim Taymans <wim@fluendo.com>
5182 * gst-libs/gst/rtp/gstbasertppayload.c:
5183 (gst_basertppayload_class_init), (gst_basertppayload_init),
5184 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
5185 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
5186 (gst_basertppayload_push), (gst_basertppayload_set_property),
5187 (gst_basertppayload_get_property),
5188 (gst_basertppayload_change_state):
5189 * gst-libs/gst/rtp/gstbasertppayload.h:
5190 Make timestamp offset configurable.
5192 2005-09-20 Thomas Vander Stichele <thomas at apestaart dot org>
5194 * check/pipelines/simple_launch_lines.c: (run_pipeline):
5197 2005-09-19 Torsten Schoenfeld <kaffeetisch at gmx dot net>
5199 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
5201 * gst-libs/gst/interfaces/propertyprobe.c:
5202 (gst_property_probe_probe_property_name),
5203 (gst_property_probe_needs_probe_name),
5204 (gst_property_probe_get_values_name),
5205 (gst_property_probe_probe_and_get_values_name):
5206 Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
5207 G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
5209 2005-09-19 Thomas Vander Stichele <thomas at apestaart dot org>
5211 * check/Makefile.am:
5212 have some tests be disabled for valgrinding
5213 * check/elements/vorbisdec.c: (cleanup_vorbisdec),
5215 * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
5216 Fix A Leak. Chain To Parent Finalize.
5218 2005-09-19 Wim Taymans <wim@fluendo.com>
5220 * examples/seeking/seek.c: (make_wav_pipeline), (main):
5223 2005-09-19 Wim Taymans <wim@fluendo.com>
5225 * gst-libs/gst/rtp/gstbasertppayload.c:
5226 (gst_basertppayload_class_init), (gst_basertppayload_init),
5227 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
5228 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
5229 (gst_basertppayload_push), (gst_basertppayload_get_property),
5230 (gst_basertppayload_change_state):
5231 Posting ERROR and WARNING messages is good.
5233 2005-09-19 Wim Taymans <wim@fluendo.com>
5235 * gst-libs/gst/rtp/gstbasertpdepayload.c:
5236 (gst_base_rtp_depayload_add_to_queue),
5237 (gst_base_rtp_depayload_push),
5238 (gst_base_rtp_depayload_set_gst_timestamp),
5239 (gst_base_rtp_depayload_queue_release):
5240 This one was not supposed to go in.
5242 2005-09-19 Wim Taymans <wim@fluendo.com>
5244 * check/pipelines/simple_launch_lines.c: (run_pipeline):
5247 * gst-libs/gst/rtp/gstbasertpdepayload.c:
5248 (gst_base_rtp_depayload_chain),
5249 (gst_base_rtp_depayload_add_to_queue),
5250 (gst_base_rtp_depayload_push),
5251 (gst_base_rtp_depayload_set_gst_timestamp),
5252 (gst_base_rtp_depayload_queue_release):
5255 * gst-libs/gst/rtp/gstbasertppayload.c:
5256 (gst_basertppayload_class_init), (gst_basertppayload_init),
5257 (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
5258 (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
5259 (gst_basertppayload_get_property),
5260 (gst_basertppayload_change_state):
5261 Added debugging category.
5263 2005-09-18 David Schleef <ds@schleef.org>
5265 * gst/playback/gstdecodebin.c: free plugin list correctly
5266 * gst/playback/gstplaybin.c: emit warning if autovideosink
5267 and autoaudiosink can't be found (instead of segfaulting)
5269 2005-09-17 Thomas Vander Stichele <thomas at apestaart dot org>
5271 * check/elements/audioconvert.c: (GST_START_TEST):
5272 try out 24 bit conversion
5274 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
5276 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
5277 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
5278 (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
5279 * ext/vorbis/vorbisenc.h:
5280 Fix EOS handling. Still needs a fix in the ogg muxer to
5281 mark the last page as eos.
5283 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
5285 * common/gtk-doc-plugins.mak:
5286 * docs/plugins/Makefile.am:
5287 * docs/plugins/gst-plugins-base-plugins-sections.txt:
5288 * gst/ffmpegcolorspace/Makefile.am:
5289 * gst/ffmpegcolorspace/avcodec.h:
5290 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
5291 * gst/tcp/gstmultifdsink.c:
5292 fix up ffmpegcolorspace docs; extract header
5294 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
5296 * common/gtk-doc-plugins.mak:
5297 * docs/plugins/Makefile.am:
5298 * docs/plugins/gst-plugins-base-plugins-sections.txt:
5299 * ext/theora/Makefile.am:
5300 * ext/theora/gsttheoraenc.h:
5301 * ext/theora/theoraenc.c:
5302 * ext/vorbis/vorbisenc.c:
5303 pick up signals and args for vorbis; add some docs for vorbis
5305 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
5307 * common/gstdoc-scangobj:
5308 * common/gtk-doc-plugins.mak:
5309 * docs/libs/Makefile.am:
5310 * docs/plugins/gst-plugins-base-plugins.args:
5311 * docs/plugins/gst-plugins-base-plugins.hierarchy:
5312 * docs/plugins/gst-plugins-base-plugins.interfaces:
5313 * docs/plugins/gst-plugins-base-plugins.prerequisites:
5314 * docs/plugins/gst-plugins-base-plugins.signals:
5315 only scanobj stuff from our source module. Not sure yet
5316 if that's correct, given the hierarchy stuff :)
5318 2005-09-15 Wim Taymans <wim@fluendo.com>
5320 * gst/audioconvert/gstaudioconvert.c:
5321 And enable 24 bits mode as well..
5323 2005-09-15 Wim Taymans <wim@fluendo.com>
5325 * gst-libs/gst/rtp/Makefile.am:
5326 * gst-libs/gst/rtp/gstbasertppayload.c:
5327 (gst_basertppayload_get_type), (gst_basertppayload_base_init),
5328 (gst_basertppayload_class_init), (gst_basertppayload_init),
5329 (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
5330 (gst_basertppayload_chain), (gst_basertppayload_set_options),
5331 (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
5332 (gst_basertppayload_set_property),
5333 (gst_basertppayload_get_property),
5334 (gst_basertppayload_change_state):
5335 * gst-libs/gst/rtp/gstbasertppayload.h:
5336 Added rtp payloader base class.
5338 2005-09-15 Andy Wingo <wingo@pobox.com>
5340 * configure.ac (plugindir): Remove the EOL matcher from the
5341 regexp, as it causes me problems. Libtool? Make? Who knows?
5343 2005-09-14 David Schleef <ds@schleef.org>
5345 * check/generic/states.c:
5346 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
5347 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
5348 Fixes for changes in registry API.
5350 * configure.ac: Only export gst_plugins_desc. Add -no-undefined
5351 to GST_PLUGIN_LDFLAGS.
5352 * ext/libvisual/visual.c: Make the library shut up.
5353 * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
5354 * gst-libs/gst/audio/gstaudiofilter.c: same
5356 2005-09-14 Thomas Vander Stichele <thomas at apestaart dot org>
5358 * docs/plugins/Makefile.am:
5359 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
5360 * docs/plugins/inspect/plugin-libvisual.xml:
5361 * docs/plugins/tmpl/element-tcpserversink.sgml:
5362 * ext/theora/theoraenc.c:
5363 add libvisual plugin and theoraenc element to docs
5365 2005-09-14 Thomas Vander Stichele <thomas at apestaart dot org>
5367 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
5368 * docs/plugins/gst-plugins-base-plugins-sections.txt:
5369 * ext/theora/theoraenc.c:
5372 2005-09-13 Tim-Philipp Müller <tim at centricular dot net>
5374 * gst/audioconvert/Makefile.am:
5375 Audioconvert derives from GstBaseTransform and should
5376 link to the library with our base elements to avoid
5377 unresolved symbols. Makes things work with MinGW (#316160)
5379 * gst/playback/test4.c: (main):
5380 Fix MinGW build problem and use g_usleep() instead of
5383 2005-09-12 Wim Taymans <wim@fluendo.com>
5385 * gst/audioconvert/audioconvert.c: (float),
5386 (audio_convert_prepare_context), (audio_convert_convert):
5387 * gst/audioconvert/audioconvert.h:
5388 Cleanups, speedups, simplifications, added back support
5391 2005-09-11 Thomas Vander Stichele <thomas at apestaart dot org>
5393 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
5394 * docs/plugins/gst-plugins-base-plugins-sections.txt:
5395 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
5396 * docs/plugins/tmpl/element-tcpserversink.sgml:
5397 * gst/ffmpegcolorspace/gstffmpeg.c:
5398 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
5399 * gst/videotestsrc/gstvideotestsrc.c:
5400 * gst/volume/gstvolume.c:
5401 add more elements to the docs
5403 2005-09-09 Jan Schmidt <thaytan@mad.scientist.com>
5405 * check/Makefile.am:
5406 * check/pipelines/simple_launch_lines.c: (setup_pipeline),
5407 (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
5408 Add extra tests for basetransform based components.
5409 Comment out the test_element_negotiation test until we decide
5410 if it's testing correct behaviour.
5411 * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
5412 (gst_visual_chain), (gst_visual_change_state):
5413 Slightly more correct but still bogus timestamping.
5414 Fix state change function.
5415 * gst/audioconvert/gstaudioconvert.c:
5416 (gst_audio_convert_class_init):
5417 * gst/audioresample/gstaudioresample.c:
5418 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
5419 (gst_ffmpegcsp_class_init):
5420 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
5421 (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
5422 (gst_videoscale_prepare_image):
5423 * gst/volume/gstvolume.c: (gst_volume_class_init),
5424 (volume_transform_ip):
5425 Basetransform updates. Enable passthrough modes.
5426 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
5427 (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
5428 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
5429 Negotiation fix that allows the window to return to the original
5430 size and renegotiate passthrough upstream. Extra debug output.
5432 2005-09-09 Thomas Vander Stichele <thomas at apestaart dot org>
5434 * gst/sine/gstsinesrc.c:
5435 * gst/volume/gstvolume.c:
5436 fix up header include
5438 2005-09-09 Stefan Kost <ensonic@users.sf.net>
5440 * gst-libs/gst/audio/gstbaseaudiosink.c:
5441 (gst_base_audio_sink_render):
5442 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
5443 * gst/volume/gstvolume.c: (gst_volume_class_init),
5445 fixing lost sync, some more debugging
5447 2005-09-08 Jan Schmidt <thaytan@mad.scientist.com>
5449 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
5450 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
5451 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
5452 (gst_xvimagesink_check_xshm_calls):
5453 Fix compilation when XShm is not available.
5455 2005-09-07 Jan Schmidt <thaytan@mad.scientist.com>
5457 * ext/libvisual/visual.c: (gst_visual_dispose),
5458 (gst_visual_getcaps), (gst_visual_src_setcaps),
5459 (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
5460 (gst_visual_change_state):
5461 Finish fixing up libvisual plugin so that it runs.
5463 2005-09-07 Stefan Kost <ensonic@users.sf.net>
5465 * ext/vorbis/vorbisenc.c:
5466 * gst-libs/gst/tag/gstvorbistag.c:
5467 gsttaginterface.h -> gsttagsetter.h
5469 2005-09-07 Stefan Kost <ensonic@users.sf.net>
5471 * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
5472 added another test that failes for me (test is not active by default)
5474 2005-09-07 Zaheer Abbas Merali <zaheerabbas at merali dot org>
5477 v4l2 is no longer in gst-plugins-base
5479 2005-09-07 Jan Schmidt <thaytan@mad.scientist.com>
5482 In the output at the end, don't show the first plugin on the same
5483 line as "Core plug-ins, always built:".
5484 Indent the output as for other plugin categories
5485 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
5486 #define that can be used to not use peer buffer_alloc functions for
5488 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
5489 (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
5490 (gst_ximagesink_show_frame):
5491 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
5492 (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
5493 (gst_xvimagesink_show_frame):
5494 Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
5495 fails gracefully instead of XError aborting or deadlocking.
5497 2005-09-07 Stefan Kost <ensonic@users.sf.net>
5499 * ext/libvisual/Makefile.am:
5500 link against gst-base-libs
5502 2005-09-06 David Schleef <ds@schleef.org>
5504 * configure.ac: Enable libvisual plugin.
5505 * ext/libvisual/Makefile.am:
5506 * ext/libvisual/visual.c: Fixes to make it compile.
5508 === release 0.9.2 ===
5510 2005-09-06 Thomas Vander Stichele <thomas at apestaart dot org>
5515 * docs/random/ChangeLog-0.8:
5516 releasing 0.9.2, "Spoon"
5518 2005-09-05 Michael Smith <msmith@fluendo.com>
5520 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
5521 libvorbis accepts quality as low as -0.1, not just 0.0. So accept
5522 that in the vorbisenc element.
5524 2005-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
5526 * common/gtk-doc-plugins.mak:
5527 * docs/plugins/Makefile.am:
5529 * gst/audioresample/resample.c:
5532 2005-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
5534 * common/gst-xmlinspect.py:
5535 * common/gtk-doc-plugins.mak:
5536 only inspect plugins for this given package
5537 require gst-python 0.9
5539 2005-09-03 Thomas Vander Stichele <thomas at apestaart dot org>
5543 * common/gst-xmlinspect.py:
5546 * docs/plugins/inspect/plugin-alsa.xml:
5547 * docs/plugins/inspect/plugin-audioresample.xml:
5548 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
5549 * docs/plugins/inspect/plugin-ogg.xml:
5550 * docs/plugins/tmpl/element-gnomevfssink.sgml:
5551 * docs/plugins/tmpl/element-multifdsink.sgml:
5552 * docs/plugins/tmpl/element-tcpserversink.sgml:
5553 * docs/plugins/tmpl/element-vorbisenc.sgml:
5554 * gst-plugins-base.spec.in:
5555 various doc-related updates
5557 2005-08-31 Wim Taymans <wim@fluendo.com>
5559 * gst-libs/gst/audio/gstbaseaudiosink.c:
5560 (gst_base_audio_sink_render):
5561 Resync if the buffer timestamps drift more than a 10th
5564 2005-08-31 Tim-Philipp M??ller <tim at centricular dot net>
5566 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
5567 (gst_v4lsrc_get_property):
5568 The 'timestamp-offset' property is registered as an int64, so
5569 let's use g_value_{set|get}_int64() in our setter and getter
5570 functions (makes it work and fixes warnings with gst-inspect).
5572 2005-08-30 Wim Taymans <wim@fluendo.com>
5574 * check/elements/audioconvert.c: (setup_audioconvert):
5575 * check/elements/audioresample.c: (setup_audioresample):
5576 * check/elements/volume.c: (setup_volume):
5579 2005-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
5581 * common/gtk-doc-plugins.mak:
5582 * common/plugins.xsl:
5583 * docs/plugins/Makefile.am:
5586 2005-08-30 Stefan Kost <ensonic@users.sf.net>
5588 * examples/seeking/seek.c: (make_mp3_pipeline),
5589 (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
5590 (play_cb), (pause_cb), (stop_cb):
5593 2005-08-30 Stefan Kost <ensonic@users.sf.net>
5595 * gst/volume/gstvolume.c: (gst_volume_class_init),
5597 do not update controlled params, if buffer has no timestamp
5599 2005-08-29 Stefan Kost <ensonic@users.sf.net>
5602 * gst/sine/Makefile.am:
5603 * gst/volume/Makefile.am:
5604 controllerized elements also need to link against controller-libs ;)
5606 2005-08-29 Stefan Kost <ensonic@users.sf.net>
5608 * docs/libs/tmpl/gstcolorbalance.sgml:
5609 * docs/libs/tmpl/gstgconf.sgml:
5610 * docs/libs/tmpl/gstmixer.sgml:
5611 * docs/libs/tmpl/gstringbuffer.sgml:
5612 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
5613 (gst_sinesrc_create):
5614 * gst/volume/gstvolume.c: (gst_volume_class_init),
5616 controllerized two audio plugins
5618 2005-08-29 Andy Wingo <wingo@pobox.com>
5620 * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push)
5621 (vorbis_handle_data_packet): Fix some int overflow errors.
5623 * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
5625 (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
5627 (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
5628 if it's valid. Fixed streaming-mode playback.
5630 * check/elements/volume.c (cleanup_volume): Fix for running
5633 * check/elements/audioconvert.c: Convert from native endian, not
5636 2005-08-29 Michael Smith <msmith@fluendo.com>
5638 * ext/ogg/Makefile.am:
5639 * ext/ogg/gstogg.c: (plugin_init):
5640 * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
5641 (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
5642 (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
5643 (gst_ogg_parse_class_init), (gst_ogg_parse_init),
5644 (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
5645 (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
5646 (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
5647 (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
5648 Add an ogg parser element.
5650 2005-08-28 Andy Wingo <wingo@pobox.com>
5652 * Updates for two-arg init from GST_BOILERPLATE_FULL.
5654 2005-08-26 Wim Taymans <wim@fluendo.com>
5656 * gst/audioconvert/audioconvert.c: (if), (float),
5657 (audio_convert_get_func_index), (check_default),
5658 (audio_convert_clean_fmt), (audio_convert_prepare_context),
5659 (audio_convert_clean_context), (audio_convert_get_sizes),
5660 (audio_convert_convert):
5663 2005-08-26 Wim Taymans <wim@fluendo.com>
5665 * gst/audioconvert/audioconvert.c: (if), (float),
5666 (audio_convert_get_func_index), (check_default),
5667 (audio_convert_clean_fmt), (audio_convert_prepare_context),
5668 (audio_convert_clean_context), (audio_convert_get_sizes),
5669 (audio_convert_convert):
5670 More elegant and working temp buffer selection algo.
5672 2005-08-26 Wim Taymans <wim@fluendo.com>
5674 * gst/audioconvert/audioconvert.c: (if), (float),
5675 (audio_convert_get_func_index), (check_default),
5676 (audio_convert_clean_fmt), (audio_convert_prepare_context),
5677 (audio_convert_clean_context), (audio_convert_get_sizes),
5678 (get_temp_buffer), (audio_convert_convert):
5679 Use realloc else we lose our original data.
5681 2005-08-26 Thomas Vander Stichele <thomas at apestaart dot org>
5683 * gst/audioresample/gstaudioresample.c:
5684 use base class' newsegment to properly timestamp
5686 2005-08-26 Wim Taymans <wim@fluendo.com>
5688 * gst/audioconvert/audioconvert.c: (if), (float),
5689 (audio_convert_get_func_index), (check_default),
5690 (audio_convert_clean_fmt), (audio_convert_prepare_context),
5691 (audio_convert_clean_context), (audio_convert_get_sizes),
5692 (get_temp_buffer), (audio_convert_convert):
5693 * gst/audioconvert/gstaudioconvert.c:
5694 (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
5695 (gst_audio_convert_transform_caps),
5696 (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
5697 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
5698 Oops, allocate enough space to perform the channel mix.
5700 2005-08-26 Wim Taymans <wim@fluendo.com>
5702 * gst/audioconvert/Makefile.am:
5703 * gst/audioconvert/audioconvert.c: (if), (float),
5704 (audio_convert_get_func_index), (check_default),
5705 (audio_convert_clean_fmt), (audio_convert_prepare_context),
5706 (audio_convert_clean_context), (audio_convert_get_sizes),
5707 (get_temp_buffer), (audio_convert_convert):
5708 * gst/audioconvert/audioconvert.h:
5709 * gst/audioconvert/gstaudioconvert.c:
5710 (gst_audio_convert_class_init), (gst_audio_convert_init),
5711 (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
5712 (gst_audio_convert_get_unit_size),
5713 (gst_audio_convert_transform_caps),
5714 (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
5715 (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
5716 * gst/audioconvert/gstaudioconvert.h:
5717 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
5718 (gst_channel_mix_fill_identical),
5719 (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
5720 (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
5721 (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
5722 (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
5723 (gst_channel_mix_mix):
5724 * gst/audioconvert/gstchannelmix.h:
5725 Cleanups, librarify a bit, optimize, better negotiation and more.
5727 2005-08-26 Jan Schmidt <thaytan@mad.scientist.com>
5729 * ext/ogg/gstoggdemux.c: (ogg_find_peek):
5731 During typefinding, don't support negative offsets
5732 (offsets from the end of the stream) in our typefind->peek() function
5733 - nothing embedded in ogg ever needs them. However, we need to recognise
5734 those requests and reject them, otherwise we return invalid pointers.
5736 2005-08-26 Jan Schmidt <thaytan@mad.scientist.com>
5738 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
5739 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
5740 (vorbisdec_finalize), (vorbis_handle_type_packet):
5741 Big shout-out to MikeS for fixing this giant memory leak.
5744 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
5746 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
5747 (audio_convert_get_unit_size):
5750 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
5752 * check/Makefile.am:
5753 * check/elements/audioconvert.c: (setup_audioconvert),
5754 (cleanup_audioconvert), (get_int_caps), (verify_convert),
5755 (GST_START_TEST), (audioconvert_suite), (main):
5756 add a test for audioconvert
5757 * gst/audioresample/gstaudioresample.c:
5758 * gst/audioresample/gstaudioresample.h:
5759 set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
5760 note that for buffers of 1/3 sec this means DURATION(c) is
5761 one nanosecond more than for a and b
5763 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
5765 * check/Makefile.am:
5766 * check/elements/audioresample.c: (setup_audioresample),
5767 (cleanup_audioresample), (fail_unless_perfect_stream),
5768 (test_perfect_stream_instance), (GST_START_TEST),
5769 add a check for audioresample
5770 (audioresample_suite), (main):
5771 * check/elements/volume.c: (GST_START_TEST):
5772 remove unused method
5773 * gst/audioresample/gstaudioresample.c:
5774 set correct buffer parameters since we're changing them
5775 * gst/audioresample/resample_ref.c: (resample_scale_ref):
5778 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
5780 * gst/audioresample/debug.c:
5781 * gst/audioresample/gstaudioresample.c:
5782 add room for extra overlap samples when asked to transform size
5783 protect against possible mem corruption and check for discrepancies
5784 between written size and outbuffer's size so we can warn for
5786 * gst/audioresample/resample.c: (resample_init),
5787 (resample_get_output_size_for_input), (resample_get_output_size),
5788 (resample_set_n_channels), (resample_set_format):
5789 set debug level based on RESAMPLE_DEBUG env var
5790 make sure that get_output_size* returns a whole number of
5792 set sample_size each time either channel or format is set
5793 * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
5794 * gst/audioresample/resample_functable.c:
5795 (resample_scale_functable):
5796 * gst/audioresample/resample_ref.c: (resample_scale_ref):
5797 remove r->sample_size, it's done in resample.c now
5798 add some debugging to the ref implementation
5799 make sure we only give back bytes that are wholes of the sample
5802 2005-08-25 Jan Schmidt <thaytan@mad.scientist.com>
5803 * gst/playback/gstplaybasebin.c: (fill_buffer):
5804 Revert unpopular change for GST_MESSAGE_SRC to GObject.
5806 2005-08-25 Stefan Kost <ensonic@users.sf.net>
5808 * gst/volume/gstvolume.c:
5809 made set_caps function static
5811 2005-08-24 Wim Taymans <wim@fluendo.com>
5813 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
5814 (gst_vorbisenc_change_state):
5815 Stop leaking taglists.
5817 2005-08-24 Wim Taymans <wim@fluendo.com>
5819 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
5820 (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
5821 (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
5822 (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
5823 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
5824 (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
5825 Parse seeking events better.
5827 Generate correct newsegment events, fixes seeking in live oggs.
5829 * ext/theora/theoradec.c: (theora_dec_src_query),
5830 (theora_dec_src_event), (theora_dec_src_getcaps),
5831 (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
5832 Use newsegment values to report correct play time.
5834 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
5835 (vorbis_dec_src_event), (vorbis_dec_sink_event):
5836 * ext/vorbis/vorbisdec.h:
5837 Parse and use newsegment values to report correct play time.
5839 * gst-libs/gst/audio/gstbaseaudiosink.c:
5840 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
5841 Clear ringbuffer on flush.
5842 Use newsegment values to calculate playback time.
5844 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
5845 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
5846 Basesink does newsegment calculations for us now.
5848 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
5850 * check/Makefile.am:
5852 add core's plugins to the mix so that playbin works
5853 * check/generic/states.c: (GST_START_TEST):
5854 set a 0 timeout on pipelines, so they don't force the next
5856 * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
5857 (gst_play_base_bin_change_state):
5858 remove the crappy error handling and do GST error handling
5860 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
5862 * check/Makefile.am:
5863 * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
5864 add same test as to core, it bitches out on playbin atm.
5866 2005-08-24 Wim Taymans <wim@fluendo.com>
5871 2005-08-24 Wim Taymans <wim@fluendo.com>
5873 * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
5874 (gst_videoscale_prepare_size), (parse_caps),
5875 (gst_videoscale_set_caps), (gst_videoscale_get_size),
5876 (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
5877 (gst_videoscale_transform):
5878 * gst/videoscale/gstvideoscale.h:
5879 Refactor, make use of BaseTranform really well.
5881 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
5884 compile audioresample
5885 * gst/audioresample/Makefile.am:
5886 * gst/audioresample/buffer.c:
5887 * gst/audioresample/functable.c:
5888 * gst/audioresample/gstaudioresample.c:
5889 * gst/audioresample/gstaudioresample.h:
5890 * gst/audioresample/resample.c:
5891 (resample_get_output_size_for_input):
5892 * gst/audioresample/resample.h:
5893 * gst/audioresample/resample_chunk.c:
5894 * gst/audioresample/resample_functable.c:
5895 * gst/audioresample/resample_ref.c:
5896 port to use basetransform; doesn't work in all cases yet
5898 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
5900 * gst/audioconvert/gstaudioconvert.c:
5901 (gst_audio_convert_class_init), (gst_audio_convert_init),
5902 (audio_convert_get_unit_size), (audio_convert_transform_caps),
5903 (audio_convert_fixate_caps), (audio_convert_set_caps),
5904 (audio_convert_transform),
5905 (gst_audio_convert_buffer_to_default_format),
5906 (gst_audio_convert_buffer_from_default_format),
5907 (gst_audio_convert_channels):
5908 * gst/audioconvert/gstchannelmix.c:
5909 * gst/audioconvert/gstchannelmix.h:
5910 port to basetransform
5911 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
5912 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
5913 (gst_ffmpegcsp_get_unit_size):
5914 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
5915 (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
5916 fix for basetransform changes
5918 2005-08-24 Jan Schmidt <thaytan@mad.scientist.com>
5920 * check/Makefile.am:
5921 Add CHECK_CFLAGS and LDFLAGS
5923 * gst/playback/gstplaybasebin.c: (fill_buffer):
5924 GST_MESSAGE_SRC became a GObject
5926 2005-08-24 Wim Taymans <wim@fluendo.com>
5928 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
5929 (gst_ring_buffer_clear_all):
5930 * gst-libs/gst/audio/gstringbuffer.h:
5931 Added function to clear the ringbuffer.
5933 2005-08-24 Andy Wingo <wingo@pobox.com>
5935 * sys/v4l/gstv4lelement.c (gst_v4lelement_start)
5936 (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
5937 of _open and _close.
5939 * sys/v4l/gstv4lxoverlay.h:
5940 * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
5941 an Xv connection here, instead of all the time. Make Xv only be
5942 loaded if you axe for it. Kindof a workaround for buggy behaviour
5943 of Xv when using remote xservers (XvQueryExtension would block).
5944 (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
5945 replace the _open and _close public API. Only start the xv
5946 connection if necessary.
5947 (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
5949 2005-08-23 David Schleef <ds@schleef.org>
5951 * gst/audioresample/Makefile.am: Leet audioresampling code
5952 * gst/audioresample/buffer.c:
5953 * gst/audioresample/buffer.h:
5954 * gst/audioresample/debug.c:
5955 * gst/audioresample/debug.h:
5956 * gst/audioresample/functable.c:
5957 * gst/audioresample/functable.h:
5958 * gst/audioresample/gstaudioresample.c:
5959 * gst/audioresample/gstaudioresample.h:
5960 * gst/audioresample/resample.c:
5961 * gst/audioresample/resample.h:
5962 * gst/audioresample/resample_chunk.c:
5963 * gst/audioresample/resample_functable.c:
5964 * gst/audioresample/resample_ref.c:
5966 2005-08-23 Wim Taymans <wim@fluendo.com>
5968 * examples/seeking/seek.c: (make_vorbis_pipeline),
5969 (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
5972 2005-08-23 Andy Wingo <wingo@pobox.com>
5974 * gst-libs/gst/audio/gstbaseaudiosrc.c
5975 (gst_base_audio_src_fixate): Only fixate endianness if it is
5976 present in the caps.
5978 2005-08-22 Andy Wingo <wingo@pobox.com>
5980 * ext/alsa/gstalsasink.c (gst_alsasink_get_property):
5981 * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
5982 device-name property.
5984 * gst-libs/gst/audio/gstaudiosrc.h:
5985 * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
5986 close_device in the ring buffer, like gstaudiosink.
5988 * ext/alsa/gstalsamixer.h:
5989 * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
5990 macro to implement the interface without much code. Cleanups.
5992 * ext/alsa/gstalsasrc.h:
5993 * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
5996 * ext/alsa/Makefile.am: Add new files.
5997 * ext/alsa/gstalsamixerelement.c:
5998 * ext/alsa/gstalsamixerelement.c: Split element code out from
5999 mixer code so that alsasrc can be a mixer too.
6001 2005-08-21 Thomas Vander Stichele <thomas at apestaart dot org>
6003 * check/elements/volume.c: (setup_volume), (cleanup_volume),
6005 * check/elements/vorbisdec.c: (setup_vorbisdec),
6006 (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
6007 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
6008 (vorbis_handle_identification_packet),
6009 (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
6010 (vorbis_handle_header_packet), (vorbis_dec_push),
6012 use the setup/teardown methods to save code. save code is good.
6014 2005-08-20 Thomas Vander Stichele <thomas at apestaart dot org>
6016 * check/Makefile.am:
6017 add ext dir for plugins
6018 add vorbisdec test conditionally
6019 * check/elements/volume.c: (setup_volume), (cleanup_volume),
6020 (GST_START_TEST), (volume_suite):
6021 add a test with wrong caps
6022 * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
6023 (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
6024 add a vorbisdec test
6025 * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
6026 (gst_ogg_demux_chain), (gst_ogg_demux_loop):
6027 clean up debug output
6028 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
6029 yay, fix a segfault/security issue in vorbisdec
6030 gst-launch fakesrc ! vorbisdec wasn't happy
6031 * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
6032 (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
6033 (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
6034 (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
6035 (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
6036 (gst_vorbisenc_set_metadata), (get_constraints_string),
6037 (update_start_message), (gst_vorbisenc_setup),
6038 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
6039 (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
6040 (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
6041 (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
6042 * ext/vorbis/vorbisenc.h:
6044 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6045 (gst_ffmpegcsp_transform):
6046 have the kow come home
6047 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
6049 * gst/volume/gstvolume.c: (volume_set_caps):
6052 2005-08-20 Thomas Vander Stichele <thomas at apestaart dot org>
6056 * check/Makefile.am:
6057 * check/elements/.cvsignore:
6058 * check/elements/volume.c: (chain_func), (event_func),
6059 (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
6062 add unit test structure for gst-plugins-base
6063 add a test for volume
6064 * gst/volume/gstvolume.c: (gst_volume_list_tracks),
6065 (gst_volume_set_volume), (gst_volume_get_volume),
6066 (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
6067 (volume_funcfind), (volume_process_float), (volume_process_int16),
6068 (volume_set_caps), (volume_transform), (volume_update_mute),
6069 (volume_update_volume), (volume_set_property),
6070 (volume_get_property):
6071 document a little; use basetransform vmethod _set_caps
6073 2005-08-19 Andy Wingo <wingo@pobox.com>
6075 * ext/alsa/gstalsamixertrack.h:
6076 * ext/alsa/gstalsamixertrack.c:
6077 * ext/alsa/gstalsamixeroptions.h:
6078 * ext/alsa/gstalsamixeroptions.c:
6079 * ext/alsa/gstalsamixer.h:
6080 * ext/alsa/gstalsamixer.c: Port to 0.9.
6082 * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
6083 Remove gstalsa.c and alsaclock. No more cruft here.
6085 2005-08-18 Wim Taymans <wim@fluendo.com>
6087 * gst-libs/gst/rtp/gstbasertpdepayload.c:
6088 (gst_base_rtp_depayload_chain),
6089 (gst_base_rtp_depayload_add_to_queue),
6090 (gst_base_rtp_depayload_push),
6091 (gst_base_rtp_depayload_queue_release):
6092 * gst-libs/gst/rtp/gstbasertpdepayload.h:
6093 Fix for RTPBuffer changes.
6095 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
6096 (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
6097 (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
6098 (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
6099 (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
6100 (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
6101 (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
6102 (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
6103 (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
6104 (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
6105 (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
6106 (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
6107 (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
6108 (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
6109 (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
6110 (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
6111 (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
6112 (gst_rtpbuffer_get_payload):
6113 * gst-libs/gst/rtp/gstrtpbuffer.h:
6114 Don't subclass GstBuffer but add methods and helper functions
6115 to construct and manipulate RTP packets in regular GstBuffers.
6117 2005-08-18 Stefan Kost <ensonic@users.sf.net>
6119 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
6120 moved statement below switch
6121 * gst/volume/gstvolume.c: (gst_volume_class_init):
6124 2005-08-16 Wim Taymans <wim@fluendo.com>
6126 * gst-libs/gst/audio/gstbaseaudiosrc.c:
6127 (gst_base_audio_src_change_state):
6128 Open and close device in READY<->NULL state change.
6130 2005-08-16 Andy Wingo <wingo@pobox.com>
6132 * examples/seeking/Makefile.am: Don't compile non-compiling
6133 compiled objects with the compiler.
6135 * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
6138 2005-08-12 Philippe Khalaf <burger@speedy.org>
6139 * gst-libs/gst/rtp/gstbasertpdepayload.c:
6140 * gst-libs/gst/rtp/gstbasertpdepayload.h:
6141 Made a thread to release the queue.
6142 Removed timestamp conversion for now.
6144 2005-08-10 Philippe Khalaf <burger@speedy.org>
6145 * gst-libs/gst/rtp/gstbasertpdepayload.c:
6146 * gst-libs/gst/rtp/gstbasertpdepayload.h:
6147 Added rtp timestamp -> gst timestamp conversion.
6148 Fixed several problems with queue.
6150 2005-08-09 Tim-Philipp M??ller <tim at centricular dot net>
6152 * gst-libs/gst/audio/gstaudioclock.h:
6153 * gst-libs/gst/audio/gstaudiofilter.h:
6154 * gst-libs/gst/audio/gstaudiosink.h:
6155 * gst-libs/gst/audio/gstaudiosrc.h:
6156 * gst-libs/gst/audio/gstbaseaudiosink.h:
6157 * gst-libs/gst/audio/gstbaseaudiosrc.h:
6158 * gst-libs/gst/audio/gstringbuffer.h:
6159 * gst-libs/gst/net/gstnetbuffer.h:
6160 * gst-libs/gst/rtp/gstbasertpdepayload.h:
6161 * gst-libs/gst/rtp/gstrtpbuffer.h:
6162 Add padding (you will need to rebuild gst-plugins-base,
6163 gst-plugins and all applications afterwards!)
6165 2005-08-09 Tim-Philipp M??ller <tim at centricular dot net>
6167 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
6168 (gst_riff_parse_chunk):
6169 Fix bug in debug message and add some more debug messages.
6171 2005-08-08 Edward Hervey <edward@fluendo.com>
6173 * gst-libs/gst/riff/riff-media.c:
6174 backported updates since branch
6176 2005-08-08 Andy Wingo <wingo@pobox.com>
6178 * gst-libs/gst/audio/gstbaseaudiosink.c
6179 (gst_base_audio_sink_change_state): Open the device in NULL->READY
6180 like good elements should. Close on READY->NULL too.
6182 * gst-libs/gst/audio/gstaudiosink.c
6183 (gst_audioringbuffer_open_device,
6184 (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
6185 (gst_audioringbuffer_release): Updates for new ring buffer API,
6186 hook into the new audio sink api.
6188 * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
6189 (GstAudioSinkClass.close): Just open and close the device -- no
6190 resource allocation or configuration.
6191 (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
6192 vmethods, handle device setup and resource allocation.
6194 * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
6195 (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
6198 * gst-libs/gst/audio/gstringbuffer.h
6199 (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
6202 * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
6203 (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
6204 New API functions. The device should be opened before acquiring
6205 and closed after releasing.
6207 2005-08-08 Tim-Philipp M??ller <tim at centricular dot net>
6209 * gst-libs/gst/interfaces/mixer.h:
6210 Reset padding to GST_PADDING.
6212 2005-08-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
6214 * gst/playback/gstplaybin.c: (remove_sinks):
6215 Remove visualization from parent explicitely; works around some
6216 apparent refcount issue that I haven't tracked down yet.
6218 2005-08-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
6220 * ext/alsa/gstalsasink.c: (set_hwparams):
6221 Assign debug category, add negotiation debug msgs.
6223 2005-08-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
6225 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
6226 Fix error code for file-not-found to NOT_FOUND.
6228 2005-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
6230 * common/gtk-doc-plugins.mak:
6231 * docs/plugins/Makefile.am:
6232 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6233 * docs/plugins/gst-plugins-base-plugins-sections.txt:
6234 renamed to actual element names, so much nicer to look at
6235 * docs/plugins/tmpl/gstmultifdsink.sgml:
6237 * docs/plugins/tmpl/multifdsink.sgml:
6238 * docs/plugins/tmpl/tcpserversink.sgml:
6240 * ext/alsa/gstalsa.c:
6241 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
6242 * ext/ogg/gstoggmux.c:
6243 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
6244 * gst/playback/gstdecodebin.c:
6245 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
6246 * gst/tcp/gsttcpserversink.c:
6247 various fixes and documentation additions
6249 2005-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
6251 * common/Makefile.am:
6252 * common/gstdoc-scangobj:
6253 * common/gtk-doc-plugins.mak:
6254 * common/gtk-doc.mak:
6255 add a custom scangobj that uses the registry
6256 add a custom gtk-doc-plugins.mak that uses it
6257 some doc build fixes
6260 * docs/plugins/Makefile.am:
6261 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6262 * docs/plugins/gst-plugins-base-plugins-sections.txt:
6263 * docs/plugins/gst-plugins-base-plugins.types:
6264 * docs/plugins/tmpl/gstmultifdsink.sgml:
6265 add docs for one element, multifdsink
6266 * gst/adder/gstadder.h:
6267 * gst/volume/gstvolume.h:
6268 don't privatize enum
6269 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
6270 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
6271 (gst_sync_method_get_type), (gst_client_status_get_type),
6272 (gst_multifdsink_class_init),
6273 (gst_multifdsink_client_queue_buffer),
6274 (gst_multifdsink_handle_client_write):
6275 * gst/tcp/gstmultifdsink.h:
6277 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
6278 (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
6279 (gst_tcpclientsink_render):
6280 * gst/tcp/gsttcpclientsink.h:
6281 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
6282 (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
6283 (gst_tcpclientsrc_start):
6284 * gst/tcp/gsttcpclientsrc.h:
6285 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
6286 (gst_tcpserversrc_init), (gst_tcpserversrc_create):
6287 * gst/tcp/gsttcpserversrc.h:
6288 * gst/typefind/gsttypefindfunctions.c:
6289 remove superfluous Type stuff
6291 2005-08-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
6293 * gst/playback/gstplaybin.c: (gen_video_element):
6296 2005-08-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
6298 * gst-libs/gst/gconf/gconf.c:
6299 * gst-libs/gst/gconf/gconf.h:
6300 Fix some Andy Problem [tm].
6302 2005-08-04 Andy Wingo <wingo@pobox.com>
6304 * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
6305 * gst/ffmpegcolorspace/gstffmpegcolorspace.c
6306 (gst_ffmpegcsp_get_size): Adapt to API changes.
6308 * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
6309 Implement an in-place do-nothing transform.
6311 2005-08-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
6313 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
6314 (gst_ximagesink_renegotiate_size):
6315 Do not set new window sizes yet if we prepare a new buffer size
6316 for upstream renegotiation (software scaling) at some point in the
6317 future, because this new size waqs not actually accepted yet. Once
6318 accepted, renegotiation later on will set the new sizes just fine.
6319 Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
6322 2005-08-03 Andy Wingo <wingo@pobox.com>
6324 * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
6325 (gst_ximagesink_buffer_alloc):
6326 Protect the height, width, and desired_caps with the pool_lock.
6327 Fixes videotestsrc ! queue ! ximagesink.
6329 2005-08-02 Edward Hervey <edward@fluendo.com>
6331 * gst/volume/gstvolume.c:
6332 include left from controller cleanup
6334 2005-08-02 Jan Schmidt <thaytan@mad.scientist.com>
6335 * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
6336 Stop collectpads before calling the parent state
6337 change function on PAUSED->READY.
6339 2005-08-01 Jan Schmidt <thaytan@mad.scientist.com>
6341 When testing for X libs, use the X CFlags
6342 * gst/adder/gstadder.c: (gst_adder_change_state):
6343 Stop the collectpads before calling parent state change function
6344 on PAUSED->READY, otherwise we deadlock deactivating pads.
6346 2005-08-01 Stefan Kost <ensonic@users.sf.net>
6349 * docs/libs/tmpl/gstcolorbalance.sgml:
6350 * docs/libs/tmpl/gstmixer.sgml:
6351 * examples/Makefile.am:
6352 * gst/sine/Makefile.am:
6353 * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
6354 (gst_sinesrc_set_property), (plugin_init):
6355 * gst/sine/gstsinesrc.h:
6356 * gst/volume/Makefile.am:
6357 * gst/volume/gstvolume.c: (gst_volume_set_volume),
6358 (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
6359 (volume_process_float), (volume_process_int16),
6360 (volume_set_property), (plugin_init):
6361 * gst/volume/gstvolume.h:
6362 deactivate and remove dparams (libgstcontrol)
6364 2005-07-29 Wim Taymans <wim@fluendo.com>
6366 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
6367 Convert me to BaseTransform!! help..
6369 2005-07-29 Andy Wingo <wingo@pobox.com>
6371 * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
6374 * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
6375 support of both endiannesses.
6377 2005-07-28 Tim-Philipp M??ller <tim at centricular dot net>
6379 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
6380 Fix confusing debug message (s/event/query/)
6382 2005-07-28 Tim-Philipp M??ller <tim at centricular dot net>
6384 * gst/videotestsrc/videotestsrc.h:
6385 Use "_stdint.h" instead of <stdint.h>
6387 2005-07-27 Wim Taymans <wim@fluendo.com>
6389 * ext/vorbis/Makefile.am:
6390 Revert wrong commit.
6392 2005-07-27 Wim Taymans <wim@fluendo.com>
6394 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
6395 More compilation fixen.
6397 2005-07-27 Wim Taymans <wim@fluendo.com>
6399 * gst-libs/gst/audio/gstbaseaudiosink.c:
6400 (gst_base_audio_sink_event), (gst_base_audio_sink_render),
6401 (gst_base_audio_sink_create_ringbuffer),
6402 (gst_base_audio_sink_change_state):
6405 2005-07-27 Wim Taymans <wim@fluendo.com>
6407 * examples/seeking/seek.c: (setup_dynamic_link),
6408 (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
6409 (query_positions_elems), (query_positions_pads), (do_seek):
6410 Update seek example.
6412 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
6413 (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
6414 (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
6415 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
6416 (gst_ogg_demux_handle_event),
6417 (gst_ogg_demux_deactivate_current_chain),
6418 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
6419 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
6420 (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
6421 (gst_ogg_demux_loop):
6422 * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
6423 * ext/theora/theoradec.c: (theora_dec_src_event),
6424 (theora_dec_src_getcaps), (theora_dec_sink_event),
6425 (theora_dec_push), (theora_dec_chain):
6426 * ext/vorbis/Makefile.am:
6427 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
6428 (vorbis_dec_sink_event), (vorbis_dec_push),
6429 (vorbis_handle_data_packet):
6430 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
6431 (gst_vorbisenc_chain):
6432 * gst/playback/gststreaminfo.c: (cb_probe):
6433 * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
6434 * gst/videorate/gstvideorate.c: (gst_videorate_event):
6435 * gst/videoscale/gstvideoscale.c:
6436 (gst_videoscale_handle_src_event):
6437 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
6438 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
6439 (gst_ximagesink_navigation_send_event):
6440 * sys/xvimage/xvimagesink.c:
6441 (gst_xvimagesink_navigation_send_event):
6442 Various event updates and cleanups
6444 2005-07-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
6446 * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
6447 Fix segfault for I420/YV12.
6449 2005-07-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
6451 * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
6454 2005-07-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
6456 * gst/playback/gstplaybin.c: (gen_video_element),
6457 (gen_audio_element):
6458 Switch to auto*sink elements as default sinks; add volume element
6459 so that volume control in totem works.
6461 2005-07-21 Wim Taymans <wim@fluendo.com>
6463 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
6464 * gst/playback/gstplaybin.c: (setup_sinks),
6465 (gst_play_bin_change_state):
6466 Refcount fix and more comments.
6468 2005-07-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
6470 * sys/ximage/Makefile.am:
6471 * sys/ximage/ximage.c: (plugin_init):
6472 * sys/ximage/ximagesink.c:
6473 Prepare for adding ximagesrc, rename of plugin to ximage etc.
6476 2005-07-21 Wim Taymans <wim@fluendo.com>
6478 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
6479 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
6480 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
6481 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6482 (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
6483 (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
6484 (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
6485 (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
6486 (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
6487 Generate correct disconts for live chained oggs.
6489 * gst-libs/gst/audio/gstbaseaudiosink.c:
6490 (gst_base_audio_sink_render),
6491 (gst_base_audio_sink_create_ringbuffer),
6492 (gst_base_audio_sink_change_state):
6493 Handle discont math correctly.
6495 * gst/playback/gstplaybin.c: (add_sink):
6496 Some small debug cleanup.
6498 2005-07-21 Wim Taymans <wim@fluendo.com>
6500 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
6501 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
6502 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
6503 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6504 (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
6505 (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
6506 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
6507 (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
6508 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
6509 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
6510 (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
6511 (gst_ogg_demux_change_state), (gst_ogg_print):
6512 Reorganize code to send the right disconts when in streaming
6515 2005-07-20 Andy Wingo <wingo@pobox.com>
6517 * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
6518 fix (?), fixes a seggie mcfalterson (#310894).
6520 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
6522 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
6523 (gst_ogg_mux_set_header_on_caps):
6524 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
6525 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
6526 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
6527 * gst-libs/gst/audio/multichannel.c:
6528 (gst_audio_set_channel_positions),
6529 (gst_audio_set_structure_channel_positions_list):
6530 * gst/playback/gstdecodebin.c: (dynamic_create):
6531 * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
6532 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
6533 Fixes for API changes in core.
6535 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
6537 * gst/playback/gstplaybasebin.c: (fill_buffer):
6538 Use _new_custom() so we can set custom message types for buffering
6541 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
6544 * gst-libs/gst/Makefile.am:
6545 * gst-libs/gst/gconf/.cvsignore:
6546 * gst-libs/gst/gconf/Makefile.am:
6547 * gst-libs/gst/gconf/test-gconf.c:
6548 * pkgconfig/Makefile.am:
6549 * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
6550 * pkgconfig/gstreamer-gconf.pc.in:
6551 Remove gconf stuff, use gconf elements instead from now on.
6553 2005-07-20 Wim Taymans <wim@fluendo.com>
6555 * gst-libs/gst/audio/TODO:
6556 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
6557 (gst_audio_clock_get_internal_time):
6558 * gst-libs/gst/audio/gstaudioclock.h:
6559 * gst-libs/gst/audio/gstbaseaudiosink.c:
6560 (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
6561 (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
6562 (gst_base_audio_sink_render),
6563 (gst_base_audio_sink_create_ringbuffer),
6564 (gst_base_audio_sink_change_state):
6565 Make sure the audio clock always returns an increasing value.
6567 2005-07-19 Andy Wingo <wingo@pobox.com>
6569 * gst/videotestsrc/: Cleanups.
6571 2005-07-19 Wim Taymans <wim@fluendo.com>
6573 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
6576 2005-07-19 Wim Taymans <wim@fluendo.com>
6578 * examples/seeking/seek.c: (make_dv_pipeline),
6579 (make_vorbis_theora_pipeline), (query_rates),
6580 (query_positions_elems), (query_positions_pads), (do_seek):
6581 Make correct DV pipeline.
6583 2005-07-18 Andy Wingo <wingo@pobox.com>
6585 * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
6586 default. Also because it's the only thing that really works. (This
6587 is used in the GConf elements).
6588 Use AS_LIBTOOL_TAGS.
6590 2005-07-18 Wim Taymans <wim@fluendo.com>
6592 * gst/playback/gstdecodebin.c: (remove_element_chain):
6593 * gst/playback/gstplaybin.c: (add_sink):
6594 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
6595 (gst_stream_info_set_mute):
6596 * gst/playback/gststreamselector.c:
6597 (gst_stream_selector_get_linked_pad),
6598 (gst_stream_selector_getcaps), (gst_stream_selector_chain):
6599 More leak and compile fixes.
6601 2005-07-18 Wim Taymans <wim@fluendo.com>
6603 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
6604 (query_rates), (query_positions_elems), (query_positions_pads),
6605 (do_seek), (seek_cb), (stop_seek):
6606 Updated seek example.
6608 * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
6609 * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
6610 (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
6611 * gst/playback/gstplaybin.c: (add_sink):
6612 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
6613 (gst_stream_info_set_mute):
6614 Some refcount leak fixes.
6616 2005-07-16 Wim Taymans <wim@fluendo.com>
6618 * gst-libs/gst/audio/gstbaseaudiosink.c:
6619 (gst_base_audio_sink_render):
6620 Align samples even if we have roundoff errors in the
6621 timestamp conversion.
6623 2005-07-16 Wim Taymans <wim@fluendo.com>
6625 * docs/libs/tmpl/gstringbuffer.sgml:
6626 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
6627 (query_rates), (query_positions_elems), (query_positions_pads),
6628 (update_scale), (do_seek):
6629 Updated seek example.
6631 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
6632 (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
6633 (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
6634 (gst_ogg_demux_loop):
6635 Push out correct discont values.
6637 * ext/theora/theoradec.c: (theora_dec_src_convert),
6638 (theora_dec_sink_convert), (theora_dec_src_getcaps),
6639 (theora_dec_sink_event), (theora_handle_type_packet),
6640 (theora_handle_header_packet), (theora_dec_push),
6641 (theora_handle_data_packet), (theora_dec_chain),
6642 (theora_dec_change_state):
6643 Better timestamping.
6645 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
6646 (vorbis_dec_sink_event), (vorbis_dec_push),
6647 (vorbis_handle_data_packet), (vorbis_dec_chain):
6648 * ext/vorbis/vorbisdec.h:
6649 Better timestamping.
6651 * gst-libs/gst/audio/gstbaseaudiosink.c:
6652 (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
6653 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
6654 Handle syncing on timestamps instead of sample offsets. Make
6655 use of DISCONT values as described in design docs.
6657 * gst-libs/gst/audio/gstbaseaudiosrc.c:
6658 (gst_base_audio_src_get_time):
6659 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
6660 (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
6661 (gst_ring_buffer_read):
6662 * gst-libs/gst/audio/gstringbuffer.h:
6663 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
6664 (gst_ximagesink_show_frame):
6665 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
6666 Correcly convert buffer timestamp to stream time.
6668 2005-07-16 Wim Taymans <wim@fluendo.com>
6670 * gst/audioconvert/gstaudioconvert.c:
6671 (gst_audio_convert_get_buffer):
6672 Timestamp buffers correctly.
6674 * gst/playback/gstplaybin.c: (gen_video_element):
6675 Make internal fakesink silent.
6677 2005-07-15 Wim Taymans <wim@fluendo.com>
6679 * gst/ffmpegcolorspace/Makefile.am:
6680 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6681 (gst_ffmpegcsp_caps_remove_format_info),
6682 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
6683 (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
6684 (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
6685 (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
6686 Ported ffmpegcolorspace to basetransform.
6688 * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
6689 * gst/volume/gstvolume.c: (volume_transform):
6692 2005-07-14 Wim Taymans <wim@fluendo.com>
6694 * gst/videotestsrc/Makefile.am:
6695 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
6696 (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
6697 (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
6698 (gst_videotestsrc_init), (gst_videotestsrc_event),
6699 (gst_videotestsrc_create), (gst_videotestsrc_start),
6700 (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
6701 (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
6702 (gst_videotestsrc_get_property):
6703 * gst/videotestsrc/gstvideotestsrc.h:
6704 Make videotestsrc a pushsrc.
6706 2005-07-14 Wim Taymans <wim@fluendo.com>
6708 * gst/tcp/gstfdset.c: (gst_fdset_free):
6709 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
6710 (gst_multifdsink_add), (gst_multifdsink_remove),
6711 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
6712 (gst_multifdsink_remove_client_link),
6713 (gst_multifdsink_client_queue_data),
6714 (gst_multifdsink_client_queue_caps),
6715 (gst_multifdsink_client_queue_buffer),
6716 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
6717 (gst_multifdsink_stop):
6718 * gst/tcp/gstmultifdsink.h:
6721 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
6722 Also draw image when not from a pool.
6724 2005-07-14 Wim Taymans <wim@fluendo.com>
6726 * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
6727 (mute_stream), (silence_stream):
6728 Small debug additions.
6730 2005-07-14 Wim Taymans <wim@fluendo.com>
6732 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
6733 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
6734 (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
6735 Better error recovery, ignore unconnected pads and
6738 2005-07-14 Thomas Vander Stichele <thomas at apestaart dot org>
6740 * docs/libs/tmpl/gstaudio.sgml:
6741 * docs/libs/tmpl/gstcolorbalance.sgml:
6742 * docs/libs/tmpl/gstgconf.sgml:
6743 * docs/libs/tmpl/gstmixer.sgml:
6744 * docs/libs/tmpl/gstringbuffer.sgml:
6745 * docs/libs/tmpl/gsttuner.sgml:
6746 * gst-libs/gst/audio/gstbaseaudiosrc.c:
6747 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
6748 (gst_tcpclientsrc_class_init):
6749 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
6750 (gst_tcpserversrc_class_init):
6751 * sys/v4l/gstv4lelement.c:
6752 more autistic cleanliness in functions/names/defines
6754 2005-07-13 Thomas Vander Stichele <thomas at apestaart dot org>
6757 make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
6758 added manually to each Makefile.am so we are sure it goes
6759 *last* and doesn't add -L flags before linking in libs of our
6760 own, like, say, internal .la libs, that then accidentally pick
6761 up the installed copy.
6762 * docs/libs/Makefile.am:
6763 * ext/alsa/Makefile.am:
6764 * ext/cdparanoia/Makefile.am:
6765 * ext/gnomevfs/Makefile.am:
6766 * ext/libvisual/Makefile.am:
6767 * ext/ogg/Makefile.am:
6768 * ext/theora/Makefile.am:
6769 * ext/vorbis/Makefile.am:
6770 * gst-libs/gst/video/Makefile.am:
6771 * gst/adder/Makefile.am:
6772 * gst/audioconvert/Makefile.am:
6773 * gst/audiorate/Makefile.am:
6774 * gst/audioscale/Makefile.am:
6775 * gst/ffmpegcolorspace/Makefile.am:
6776 * gst/playback/Makefile.am:
6777 * gst/sine/Makefile.am:
6778 * gst/subparse/Makefile.am:
6779 * gst/tags/Makefile.am:
6780 * gst/tcp/Makefile.am:
6781 * gst/typefind/Makefile.am:
6782 * gst/videorate/Makefile.am:
6783 * gst/videoscale/Makefile.am:
6784 * gst/videotestsrc/Makefile.am:
6785 * gst/volume/Makefile.am:
6786 * sys/v4l/Makefile.am:
6787 * sys/ximage/Makefile.am:
6788 * sys/xvimage/Makefile.am:
6789 adapt properly to this change. This should make sure that
6790 plugins and libs properly link to the as-yet-uninstalled
6791 copies of stuff like libgstinterfaces and libgstvideo
6793 2005-07-13 Andy Wingo <wingo@pobox.com>
6795 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
6796 (gst_v4lsrc_fixate): Fixate on format as well.
6798 * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy)
6799 (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
6800 buffer points to it.
6801 (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
6802 rather just doing X calls ourselves. Also fixes a memleak.
6804 2005-07-12 Andy Wingo <wingo@pobox.com>
6806 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property)
6807 (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init)
6808 (gst_v4lsrc_create): Re-add the copy-mode property, default to
6809 TRUE to avoid deadlocks if an element holds on to our buffers.
6811 2005-07-11 Thomas Vander Stichele <thomas at apestaart dot org>
6813 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
6814 (gst_sinesrc_init), (gst_sinesrc_create),
6815 (gst_sinesrc_set_property), (gst_sinesrc_get_property),
6816 (gst_sinesrc_start):
6817 * gst/sine/gstsinesrc.h:
6818 removing num-buffers property before moving it
6820 2005-07-10 Thomas Vander Stichele <thomas at apestaart dot org>
6823 use overridable ERROR_CFLAGS
6824 * docs/libs/gst-plugins-base-libs.types:
6825 * docs/libs/tmpl/gstringbuffer.sgml:
6826 * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
6827 (gst_alsasink_class_init):
6828 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
6829 (gst_alsasrc_class_init):
6830 * gst-libs/gst/audio/audio.h:
6831 * gst-libs/gst/audio/gstaudioclock.h:
6832 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
6833 (gst_audio_filter_base_init), (gst_audio_filter_class_init),
6834 (gst_audio_filter_link), (gst_audio_filter_init),
6835 (gst_audio_filter_chain), (gst_audio_filter_set_property),
6836 (gst_audio_filter_get_property),
6837 (gst_audio_filter_class_add_pad_templates):
6838 * gst-libs/gst/audio/gstaudiofilter.h:
6839 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
6840 (gst_audio_filter_template_get_type),
6841 (gst_audio_filter_template_base_init),
6842 (gst_audio_filter_template_class_init),
6843 (gst_audio_filter_template_init),
6844 (gst_audio_filter_template_set_property),
6845 (gst_audio_filter_template_get_property), (plugin_init),
6846 (gst_audio_filter_template_setup),
6847 (gst_audio_filter_template_filter),
6848 (gst_audio_filter_template_filter_inplace):
6849 * gst-libs/gst/audio/gstaudiosink.c:
6850 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
6851 (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
6852 (gst_audioringbuffer_release), (gst_audioringbuffer_start),
6853 (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
6854 (gst_audio_sink_base_init), (gst_audio_sink_class_init),
6855 (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
6856 * gst-libs/gst/audio/gstaudiosink.h:
6857 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
6858 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
6859 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
6860 (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
6861 (gst_audioringbuffer_delay), (gst_audio_src_base_init),
6862 (gst_audio_src_class_init), (gst_audio_src_init),
6863 (gst_audio_src_create_ringbuffer):
6864 * gst-libs/gst/audio/gstaudiosrc.h:
6865 * gst-libs/gst/audio/gstbaseaudiosink.c:
6866 (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
6867 (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
6868 (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
6869 (gst_base_audio_sink_set_property),
6870 (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
6871 (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
6872 (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
6873 (gst_base_audio_sink_create_ringbuffer),
6874 (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
6875 * gst-libs/gst/audio/gstbaseaudiosink.h:
6876 * gst-libs/gst/audio/gstbaseaudiosrc.c:
6877 (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
6878 (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
6879 (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
6880 (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
6881 (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
6882 (gst_base_audio_src_event), (gst_base_audio_src_create),
6883 (gst_base_audio_src_create_ringbuffer),
6884 (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
6885 * gst-libs/gst/audio/gstbaseaudiosrc.h:
6886 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
6887 (gst_ring_buffer_class_init), (gst_ring_buffer_init),
6888 (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
6889 (gst_ring_buffer_debug_spec_caps),
6890 (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
6891 (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
6892 (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
6893 (gst_ring_buffer_start), (gst_ring_buffer_pause),
6894 (gst_ring_buffer_stop), (gst_ring_buffer_delay),
6895 (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
6896 (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
6897 (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
6898 (gst_ring_buffer_clear):
6899 * gst-libs/gst/audio/gstringbuffer.h:
6900 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
6901 (gst_video_sink_class_init), (gst_video_sink_get_type):
6902 * gst-libs/gst/video/videosink.h:
6903 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
6904 (gst_multifdsink_class_init),
6905 (gst_multifdsink_handle_client_write),
6906 (gst_multifdsink_change_state):
6907 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
6908 (gst_tcpclientsink_setcaps):
6909 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
6910 (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
6911 (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
6912 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
6913 (gst_ximagesink_send_pending_navigation),
6914 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
6915 (gst_ximagesink_class_init), (gst_ximagesink_get_type):
6916 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
6917 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
6918 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
6919 (gst_xvimagesink_send_pending_navigation),
6920 (gst_xvimagesink_navigation_send_event),
6921 (gst_xvimagesink_set_xwindow_id),
6922 (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
6923 (gst_xvimagesink_get_type):
6924 more macro splitting
6926 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
6928 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
6929 plug a memleak, allows me to import 1479 albums in one go
6931 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
6932 (vorbis_handle_type_packet), (vorbis_dec_chain),
6933 (vorbis_dec_change_state):
6934 fix some format strings
6936 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
6938 * docs/libs/tmpl/gstcolorbalance.sgml:
6939 * docs/libs/tmpl/gstmixer.sgml:
6940 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
6941 (gst_alsasink_set_property), (gst_alsasink_get_property):
6942 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
6943 (gst_alsasrc_set_property), (gst_alsasrc_get_property):
6946 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
6948 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
6949 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
6950 (audiocast_register_listener), (audiocast_thread_run),
6951 (gst_gnomevfssrc_send_additional_headers_callback),
6952 (gst_gnomevfssrc_received_headers_callback),
6953 (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
6954 (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
6955 (gst_gnomevfssrc_get_size):
6956 add/clean up debugging
6957 * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
6960 2005-07-07 Andy Wingo <wingo@pobox.com>
6962 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
6963 framerate. Need to get a handle on when exactly this function is
6966 * sys/v4l/v4lsrc_calls.h:
6967 * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
6968 (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
6969 (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
6971 * sys/v4l/v4l_calls.h: Cast to V4lElement.
6972 * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
6973 v4lelements are sources.
6975 * sys/v4l/gstv4lxoverlay.h:
6976 * sys/v4l/gstv4lxoverlay.c:
6977 * sys/v4l/gstv4ltuner.h:
6978 * sys/v4l/gstv4ltuner.c: Header loc fixen.
6980 * sys/v4l/gstv4lsrc.h:
6981 * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
6982 PushSrc/BaseSrc. Removed most sync-related properties, videorate
6983 or something should handle that. Made a live source.
6985 * sys/v4l/gstv4lelement.h:
6986 * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
6987 signals. Some cleanups.
6989 * sys/v4l/gstv4lcolorbalance.h: Interface header update.
6991 * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
6994 * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
6997 * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
6999 2005-07-07 Wim Taymans <wim@fluendo.com>
7001 * ext/theora/theoradec.c: (theora_get_query_types),
7002 (theora_dec_src_getcaps), (theora_dec_push):
7003 * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
7004 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
7005 Remove deprecated/unused query types.
7007 2005-07-06 Wim Taymans <wim@fluendo.com>
7009 * ext/alsa/Makefile.am:
7010 * ext/alsa/gstalsaplugin.c: (plugin_init):
7011 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
7012 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
7013 (gst_alsasrc_dispose), (gst_alsasrc_base_init),
7014 (gst_alsasrc_class_init), (gst_alsasrc_init),
7015 (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
7016 (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
7017 (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
7018 (gst_alsasrc_reset):
7019 * ext/alsa/gstalsasrc.h:
7020 * gst-libs/gst/audio/Makefile.am:
7021 * gst-libs/gst/audio/gstaudiosink.c:
7022 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
7023 (gst_audioringbuffer_start):
7024 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
7025 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
7026 (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
7027 (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
7028 (gst_audioringbuffer_release), (gst_audioringbuffer_start),
7029 (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
7030 (gst_audiosrc_base_init), (gst_audiosrc_class_init),
7031 (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
7032 * gst-libs/gst/audio/gstaudiosrc.h:
7033 * gst-libs/gst/audio/gstbaseaudiosink.c:
7034 (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
7035 (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
7036 (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
7037 * gst-libs/gst/audio/gstbaseaudiosrc.c:
7038 (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
7039 (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
7040 (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
7041 (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
7042 (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
7043 (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
7044 (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
7045 (gst_baseaudiosrc_change_state):
7046 * gst-libs/gst/audio/gstbaseaudiosrc.h:
7047 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
7048 (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
7049 (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
7050 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
7051 (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
7052 (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
7053 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
7054 * gst-libs/gst/audio/gstringbuffer.h:
7055 Added audiosource base classes.
7056 Ported alsasrc, still very basic.
7058 2005-07-06 Wim Taymans <wim@fluendo.com>
7060 * ext/theora/theoradec.c: (theora_dec_src_getcaps),
7061 (theora_dec_push), (theora_handle_data_packet):
7062 Prepare for better timestamp fix later.
7064 * gst/audioconvert/gstaudioconvert.c:
7065 List most accurate caps first
7067 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
7068 Use proper pad task function.
7070 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
7071 (gst_xvimagesink_show_frame):
7072 Fix deadlock when alloc failed.
7074 2005-07-05 Andy Wingo <wingo@pobox.com>
7076 * ext/gnomevfs/gstgnomevfssrc.c:
7077 * gst/sine/gstsinesrc.c:
7078 * gst/tcp/gsttcpserversrc.c:
7079 * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
7081 * sys/v4l/: Port from 0.8.
7083 * Many files: Null if we got it....
7085 2005-07-05 Andy Wingo <wingo@pobox.com>
7087 * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read):
7088 * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
7091 2005-07-05 Wim Taymans <wim@fluendo.com>
7094 * gst/tcp/Makefile.am:
7096 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
7097 (gst_multifdsink_base_init), (gst_multifdsink_class_init),
7098 (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
7099 (is_sync_frame), (gst_multifdsink_handle_client_write),
7100 (gst_multifdsink_render), (gst_multifdsink_start),
7101 (gst_multifdsink_stop), (gst_multifdsink_change_state):
7102 * gst/tcp/gstmultifdsink.h:
7103 * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
7104 (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
7105 (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
7107 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
7108 (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
7109 (gst_tcpclientsink_render), (gst_tcpclientsink_start),
7110 (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
7111 * gst/tcp/gsttcpclientsink.h:
7112 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
7113 (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
7114 (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
7115 (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
7116 (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
7117 * gst/tcp/gsttcpclientsrc.h:
7118 * gst/tcp/gsttcpplugin.c: (plugin_init):
7119 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
7120 * gst/tcp/gsttcpserversink.h:
7121 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
7122 (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
7123 (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
7124 (gst_tcpserversrc_create), (gst_tcpserversrc_start),
7125 (gst_tcpserversrc_stop):
7126 * gst/tcp/gsttcpserversrc.h:
7127 * gst/tcp/gsttcpsink.c:
7128 * gst/tcp/gsttcpsink.h:
7129 * gst/tcp/gsttcpsrc.c:
7130 * gst/tcp/gsttcpsrc.h:
7131 Ported tcp plugins to 0.9.
7134 2005-07-05 Andy Wingo <wingo@pobox.com>
7136 * gst/playback/gstplaybasebin.c (fill_buffer):
7137 message_new_application fixen.
7139 * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
7142 2005-07-04 Wim Taymans <wim@fluendo.com>
7144 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
7145 Set caps on output buffer.
7147 2005-07-04 Andy Wingo <wingo@pobox.com>
7149 * ext/gnomevfs/gstgnomevfssrc.c
7150 (gst_gnomevfssrc_received_headers_callback)
7151 (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
7154 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
7155 No refcount leakage.
7157 * configure.ac: Enable -Werror.
7159 * ext/theora/theoradec.c (theora_dec_src_getcaps):
7160 * gst/audioconvert/bufferframesconvert.c
7161 (buffer_frames_convert_fixate):
7162 * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
7163 (gst_audio_convert_fixate):
7164 * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
7165 (gst_sinesrc_create): Fixate func changes.
7167 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
7168 (gst_ximagesink_buffer_alloc): Unused var.
7170 2005-07-01 Andy Wingo <wingo@pobox.com>
7172 * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
7173 getcaps to do explicit caps. Needs to be done in all decoders,
7174 possibly via a base class.
7176 * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
7178 * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
7179 caps on the sink pad, just rely on the pad template. Also, setting
7180 ANY caps on a pad is not valid because the caps are not fixed.
7182 * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
7183 caps on the buffer, and get the width from the desired_caps if
7185 (gst_ximagesink_renegotiate_size): Implement via setting the
7186 desired_caps on the ximagesink.
7187 (gst_ximagesink_setcaps): Only reset the width of the player if it
7188 wasn't already set. Not sure if this is right.
7189 (gst_ximagesink_show_frame): Memcpy only for normal buffers.
7191 * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
7192 that the user wants. NULL unless the window has been resized.
7194 * gst/volume/gstvolume.c (volume_transform): Adapt to
7195 basetransform refcount changes.
7197 2005-07-01 Andy Wingo <wingo@pobox.com>
7199 * gst/videoscale/gstvideoscale.c:
7200 * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
7201 from BaseTransform, implements a transform_caps. Removed dead code
7202 including some PAR stuff that was never reached -- should probably
7203 be added back somehow.
7205 2005-07-01 Andy Wingo <wingo@pobox.com>
7207 * gst/videoscale: Merge David's work from 0.8 branch. Changes to
7210 2005-06-30 Thomas Vander Stichele <thomas at apestaart dot org>
7213 * docs/libs/Makefile.am:
7214 * docs/libs/gst-plugins-libs.types:
7215 * ext/alsa/Makefile.am:
7216 * ext/alsa/gstalsamixer.h:
7217 * ext/alsa/gstalsamixeroptions.h:
7218 * ext/alsa/gstalsamixertrack.h:
7219 * gst-libs/gst/Makefile.am:
7220 * gst-libs/gst/colorbalance/.cvsignore:
7221 * gst-libs/gst/colorbalance/Makefile.am:
7222 * gst-libs/gst/colorbalance/colorbalance-marshal.list:
7223 * gst-libs/gst/colorbalance/colorbalance.c:
7224 * gst-libs/gst/colorbalance/colorbalance.h:
7225 * gst-libs/gst/colorbalance/colorbalance.vcproj:
7226 * gst-libs/gst/colorbalance/colorbalancechannel.c:
7227 * gst-libs/gst/colorbalance/colorbalancechannel.h:
7228 * gst-libs/gst/interfaces/Makefile.am:
7229 * gst-libs/gst/interfaces/colorbalance.c:
7230 (gst_color_balance_class_init):
7231 * gst-libs/gst/interfaces/colorbalance.h:
7232 * gst-libs/gst/interfaces/interfaces-marshal.list:
7233 * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
7234 * gst-libs/gst/interfaces/mixer.h:
7235 * gst-libs/gst/interfaces/mixeroptions.h:
7236 * gst-libs/gst/interfaces/navigation.c:
7237 * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
7238 * gst-libs/gst/interfaces/tuner.h:
7239 * gst/volume/Makefile.am:
7240 * gst/volume/gstvolume.c:
7241 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
7242 * sys/ximage/Makefile.am:
7243 * sys/ximage/ximagesink.c:
7244 * sys/xvimage/Makefile.am:
7245 * sys/xvimage/xvimagesink.c:
7246 fold in all interfaces into an interfaces dir, preserving CVS
7249 2005-06-30 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
7251 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
7252 Fix build after riff changes.
7254 2005-06-30 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
7256 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7257 (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
7258 (gst_riff_create_video_template_caps),
7259 (gst_riff_create_audio_template_caps),
7260 (gst_riff_create_iavs_template_caps):
7261 * gst-libs/gst/riff/riff-media.h:
7262 * gst-libs/gst/riff/riff-read.h:
7263 * gst-libs/gst/riff/riff.c: (gst_riff_init):
7264 Add gst_riff_init() to initialize the debug category, instead
7265 of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
7267 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
7269 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
7270 Oops, I shouldn't apply hacks.
7272 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
7274 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
7275 Remove pad_loop function which doesn't work.
7277 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
7279 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
7280 Send EOS when deactivating.
7281 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
7282 (check_queue), (queue_threshold_reached), (queue_out_of_data),
7283 (gen_preroll_element), (probe_triggered), (mute_stream),
7284 (silence_stream), (new_decoded_pad), (setup_substreams),
7285 (set_active_source):
7286 * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
7287 (remove_sinks), (add_sink):
7288 * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
7289 Change for new probe API.
7291 2005-06-29 Wim Taymans <wim@fluendo.com>
7293 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
7294 * gst-libs/gst/audio/gstbaseaudiosink.c:
7295 (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
7296 (gst_baseaudiosink_change_state):
7297 * gst-libs/gst/audio/gstbaseaudiosink.h:
7298 * gst-libs/gst/audio/gstringbuffer.c:
7299 (gst_ringbuffer_set_callback):
7300 Fix compilation error.
7301 Ringbuffer starts out as not running.
7302 Free our clock in dispose.
7303 When releasing the ringbuffer we need to renegotiate so
7306 2005-06-29 Thomas Vander Stichele <thomas at apestaart dot org>
7311 * docs/libs/Makefile.am:
7312 * docs/libs/gst-plugins-libs-docs.sgml:
7313 * docs/libs/gst-plugins-libs-sections.txt:
7314 * docs/libs/gst-plugins-libs.types:
7315 * docs/libs/tmpl/gstaudio.sgml:
7316 * docs/libs/tmpl/gstcolorbalance.sgml:
7317 * docs/libs/tmpl/gstringbuffer.sgml:
7318 * gst-libs/gst/audio/gstringbuffer.c:
7319 (gst_ringbuffer_set_callback):
7320 reinstate gtk-doc docs for plugin libs
7322 2005-06-28 Wim Taymans <wim@fluendo.com>
7324 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
7325 (gst_ogg_demux_init):
7326 Removed pad loop function.
7328 2005-06-28 Wim Taymans <wim@fluendo.com>
7330 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
7331 If we're building a chain we are not in an error case
7332 when we queue a buffer.
7334 2005-06-28 Andy Wingo <wingo@pobox.com>
7336 * *.c: Don't cast to GstObject before reffing/unreffing.
7338 2005-06-27 Andy Wingo <wingo@pobox.com>
7340 * gst/videotestsrc/gstvideotestsrc.c
7341 (gst_videotestsrc_activate_push): Activation API changes.
7343 * gst/playback/gstdecodebin.c (gst_decode_bin_change_state)
7344 (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
7345 they have refs on the decodebin.
7347 * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
7349 (gst_ogg_pad_typefind): Don't leak a pad ref.
7350 (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
7351 (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push)
7352 (gst_ogg_demux_sink_activate_pull): Changes for activation API.
7354 2005-06-27 Edward Hervey <edward@fluendo.com>
7356 * ext/theora/theoradec.c: (theora_dec_change_state):
7357 re-arranged call to parent's state change in order to avoid locks (or
7360 2005-06-26 Edward Hervey <edward@fluendo.com>
7362 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
7363 2nd argument of 'unknow-type' signal is a GstCaps and not a
7366 2005-06-25 Jan Schmidt <thaytan@mad.scientist.com>
7367 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
7368 Set the worker thread's running flag to TRUE before starting the
7370 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
7371 Catch a failure to add typefind to the bin.
7373 2005-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
7375 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
7376 (gst_sinesrc_init), (gst_sinesrc_create),
7377 (gst_sinesrc_set_property), (gst_sinesrc_get_property),
7378 (gst_sinesrc_start):
7379 * gst/sine/gstsinesrc.h:
7380 add num-buffers and timestamp-offset properties
7381 * gst/videotestsrc/gstvideotestsrc.c:
7382 (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
7383 (gst_videotestsrc_get_property):
7384 add timestamp-offset property
7386 2005-06-23 Christian Schaller <uraeus@gnome.org>
7388 * configure.ac: add videorate
7389 * gst-plugins-base.spec.in: add videorate
7391 2005-06-23 Wim Taymans <wim@fluendo.com>
7393 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
7394 (gst_videorate_getcaps), (gst_videorate_setcaps),
7395 (gst_videorate_event), (gst_videorate_chain):
7396 Fixed videorate, fixating an already fixated caps is not
7399 2005-06-23 Wim Taymans <wim@fluendo.com>
7402 * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
7403 Buffer on caps is not boxed anymore.
7405 2005-06-22 Wim Taymans <wim@fluendo.com>
7407 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
7408 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
7409 Set buffers on caps as miniobjects and not as boxed.
7411 2005-06-19 Thomas Vander Stichele <thomas at apestaart dot org>
7416 === release 0.9.1 ===
7418 2005-06-19 Thomas Vander Stichele <thomas at apestaart dot org>
7441 2005-06-09 Andy Wingo <wingo@pobox.com>
7443 * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
7445 2005-06-09 Andy Wingo <wingo@pobox.com>
7448 * gst-libs/gst/Makefile.am:
7449 * gst-libs/gst/net/Makefile.am:
7450 Add gstnet to build.
7452 2005-06-09 Andy Wingo <wingo@pobox.com>
7454 * gst-libs/gst/gconf/gconf.c:
7455 * gst/playback/test.c:
7456 * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
7459 * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
7461 * ext/theora/theoraenc.c (theora_enc_chain):
7462 * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
7464 * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
7467 2005-06-02 Wim Taymans <wim@fluendo.com>
7469 * gst-libs/gst/net/Makefile.am:
7470 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
7471 * pkgconfig/gstreamer-libs.pc.in:
7472 Added net stuff, version net lib.
7474 2005-06-02 Wim Taymans <wim@fluendo.com>
7476 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
7477 (query_rates), (query_positions_elems), (query_positions_pads),
7479 Updated seek example.
7481 2005-06-02 Andy Wingo <wingo@pobox.com>
7483 * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
7484 * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
7487 * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
7488 remove the typefind, the bin dispose will do it for us. When it's
7489 removed and unreffed, the signal handler will be disconnected,
7491 (unlinked): It's too difficult to disconnect from unlinked
7492 handlers, as they are on pads not elements. Just punt if the pads
7493 aren't grandkids of the bin.
7495 2005-06-02 Wim Taymans <wim@fluendo.com>
7498 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
7499 (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
7500 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
7501 * ext/theora/theoradec.c: (theora_dec_src_query),
7502 (theora_handle_data_packet):
7503 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
7505 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
7506 (vorbis_handle_data_packet):
7507 * gst/audioconvert/bufferframesconvert.c:
7508 (buffer_frames_convert_chain):
7509 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7510 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
7511 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
7512 (gst_ffmpegcsp_chain):
7513 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
7514 (gst_videorate_getcaps), (gst_videorate_setcaps),
7515 (gst_videorate_event), (gst_videorate_chain):
7516 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
7517 (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
7518 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
7519 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
7520 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
7521 (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
7522 (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
7523 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
7524 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
7525 Cleanups and buffer alloc.
7527 2005-05-31 Wim Taymans <wim@fluendo.com>
7529 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
7530 Don't try to call the delay method when the device is not
7533 2005-05-31 Wim Taymans <wim@fluendo.com>
7535 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
7536 Get actual segment size and buffer size after opening
7539 2005-05-30 Wim Taymans <wim@fluendo.com>
7541 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
7542 (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
7543 Also FLUSH upstream, makes the loop function exit faster.
7545 * ext/theora/theoradec.c: (theora_dec_src_query):
7546 Some more debug info in the query.
7548 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
7549 (gst_ximagesink_setcaps):
7550 Release lock on par error, better error reporting.
7552 2005-05-26 Wim Taymans <wim@fluendo.com>
7554 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
7555 (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
7556 (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
7557 Clear chains in READY
7558 Queue packets until the chain is activated.
7560 2005-05-25 Wim Taymans <wim@fluendo.com>
7562 * gst-libs/gst/audio/gstaudiosink.c:
7563 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
7564 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
7565 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
7566 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
7567 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
7568 (gst_audiosink_create_ringbuffer):
7569 * gst-libs/gst/audio/gstbaseaudiosink.c:
7570 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
7571 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
7572 (gst_baseaudiosink_set_property), (build_linear_format),
7573 (debug_spec_caps), (debug_spec_buffer),
7574 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
7575 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
7576 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
7577 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
7578 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
7579 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
7580 (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
7581 (gst_ringbuffer_play), (gst_ringbuffer_pause),
7582 (gst_ringbuffer_stop), (gst_ringbuffer_delay),
7583 (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
7584 (wait_segment), (gst_ringbuffer_commit),
7585 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
7586 (gst_ringbuffer_clear):
7587 Various small cleanups.
7589 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
7590 (gst_audio_convert_change_state):
7591 * gst/subparse/gstsubparse.c: (gst_subparse_chain):
7592 No need to take the locks anymore.
7594 2005-05-25 Wim Taymans <wim@fluendo.com>
7596 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
7597 (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
7598 (remove_element_chain), (no_more_pads), (unlinked), (close_link),
7600 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
7601 (group_destroy), (group_commit), (queue_overrun),
7602 (gen_preroll_element), (no_more_pads), (preroll_unlinked),
7603 (mute_stream), (new_decoded_pad), (setup_substreams),
7604 (setup_source), (mute_group_type), (set_active_source),
7605 (gst_play_base_bin_change_state):
7606 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
7607 (gen_video_element), (gen_text_element), (gen_audio_element),
7608 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
7609 * gst/playback/gststreaminfo.c: (gst_stream_info_new),
7610 (gst_stream_info_dispose), (gst_stream_info_set_mute):
7611 * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
7612 Some playbin cleanups mostly refcounting sloppyness.
7614 2005-05-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
7616 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
7617 Work with streaming input.
7619 2005-05-25 Wim Taymans <wim@fluendo.com>
7621 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7622 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
7623 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
7624 (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
7625 No need to take the STREAM lock anymore.
7627 2005-05-25 Wim Taymans <wim@fluendo.com>
7629 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
7630 (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
7631 (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
7632 (gst_ogg_demux_chain), (gst_ogg_demux_loop),
7633 (gst_ogg_demux_sink_activate):
7634 * ext/theora/theoradec.c: (theora_dec_src_event),
7635 (theora_handle_comment_packet), (theora_dec_chain),
7636 (theora_dec_change_state):
7637 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
7638 (vorbis_handle_data_packet), (vorbis_dec_chain),
7639 (vorbis_dec_change_state):
7640 Remove STREAM locks as they are taken in core now.
7641 Never set bogus granulepos on vorbis/theora.
7642 Fix leaks in theoradec tag parsing.
7644 2005-05-25 Wim Taymans <wim@fluendo.com>
7646 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
7647 Fix memleaks, GST_BUFFER_DATA() is not freed.
7649 2005-05-25 Wim Taymans <wim@fluendo.com>
7651 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
7652 Open non-blocking, set to blocking mode afterwards to avoid
7653 lockups when audio device is busy.
7655 2005-05-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
7657 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
7660 2005-05-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
7662 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
7663 (gst_audio_convert_chain), (gst_audio_convert_link_src),
7664 (gst_audio_convert_setcaps):
7665 Implement instant setup switching.
7667 2005-05-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
7669 * gst/playback/gstplaybasebin.c: (probe_triggered):
7671 * gst/playback/gstplaybin.c: (add_sink):
7672 First add, then link (otherwise pad link fails).
7674 2005-05-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
7676 * examples/Makefile.am:
7677 fix buildbot (make distcheck)
7679 2005-05-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
7681 * gst/playback/gstplaybin.c: (gen_vis_element):
7682 Remove some wrong code. Doesn't work yet.
7684 2005-05-19 Wim Taymans <wim@fluendo.com>
7686 * gst-libs/gst/net/Makefile.am:
7687 * gst-libs/gst/net/README:
7688 * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
7689 (gst_netbuffer_class_init), (gst_netbuffer_init),
7690 (gst_netbuffer_finalize), (gst_netbuffer_copy),
7691 (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
7692 (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
7693 (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
7694 * gst-libs/gst/net/gstnetbuffer.h:
7695 Added buffer subclass to store extra to/from addresses for
7696 network sources/sinks.
7698 2005-05-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
7700 * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
7701 Don't lock an unassigned variable.
7703 2005-05-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
7705 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
7706 Increase buffer for video, decrease buffer for other media types.
7707 * gst/playback/gstplaybin.c: (gen_video_element),
7708 (gen_audio_element):
7709 Change names for debugging purposes.
7711 2005-05-18 Wim Taymans <wim@fluendo.com>
7713 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7714 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
7715 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
7716 (gst_ffmpegcsp_chain):
7717 Enable buffer alloc passthrough if the source and dest
7718 formats are the same.
7720 2005-05-17 Wim Taymans <wim@fluendo.com>
7722 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
7723 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
7724 (gst_ogg_demux_chain_unlocked):
7725 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
7726 (gst_audio_convert_caps_remove_format_info),
7727 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
7728 (gst_audio_convert_fixate), (gst_audio_convert_change_state):
7729 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7730 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
7731 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
7732 (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
7733 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
7734 (gst_ffmpegcsp_get_property):
7735 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
7736 (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
7737 (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
7738 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
7739 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
7740 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
7741 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
7742 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
7743 Leak fixes in oggdemux.
7744 Some cleanups in audioconvert.
7745 Make passthrough work along with buffer_alloc etc.
7746 Make buffer_alloc and buffer recycling actually work in
7749 2005-05-17 Thomas Vander Stichele <thomas at apestaart dot org>
7751 * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
7752 make the compiler happy
7754 2005-05-17 Wim Taymans <wim@fluendo.com>
7756 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
7757 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
7758 (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
7759 (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
7760 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
7761 (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
7762 (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
7763 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
7764 (gst_xvimagesink_set_xwindow_id):
7765 * sys/xvimage/xvimagesink.h:
7766 Port xvimagesink to new MiniObject.
7768 2005-05-17 Wim Taymans <wim@fluendo.com>
7770 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
7771 (gst_audiofilter_chain):
7772 * gst-libs/gst/audio/gstaudiosink.c:
7773 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
7774 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
7775 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
7776 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
7777 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
7778 (gst_audiosink_create_ringbuffer):
7779 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
7780 (gst_audio_convert_caps_remove_format_info),
7781 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
7782 (gst_audio_convert_fixate), (gst_audio_convert_channels):
7783 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7784 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
7785 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
7786 Fix passthrough in ffmpegcolorspace.
7787 Fix memset in audiosink on wrong memory.
7789 2005-05-16 David Schleef <ds@schleef.org>
7791 * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
7794 2005-05-16 David Schleef <ds@schleef.org>
7796 Port from GstData to GstMiniObject.
7797 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
7798 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
7799 (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
7800 (gst_ogg_mux_collected):
7801 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
7802 * ext/theora/theoradec.c: (theora_handle_comment_packet),
7803 (theora_handle_data_packet):
7804 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
7805 (theora_set_header_on_caps), (theora_enc_chain):
7806 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
7807 (vorbis_handle_comment_packet):
7808 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
7809 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
7810 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
7811 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
7812 * gst/audioconvert/gstaudioconvert.c:
7813 (gst_audio_convert_get_buffer):
7814 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
7815 * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
7816 (mute_stream), (silence_stream):
7817 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
7818 * gst/volume/gstvolume.c: (volume_transform):
7819 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
7820 (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
7821 (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
7822 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
7823 (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
7824 (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
7825 (gst_ximagesink_buffer_alloc):
7826 * sys/ximage/ximagesink.h:
7828 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
7830 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
7831 (fill_buffer), (check_queue), (queue_threshold_reached),
7832 (queue_out_of_data):
7833 * gst/playback/gstplaybasebin.h:
7834 Post buffer-fullness on the bus.
7836 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
7838 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
7840 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
7841 (group_commit), (probe_triggered), (setup_source),
7842 (gst_play_base_bin_change_state):
7843 * gst/playback/gstplaybasebin.h:
7844 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
7845 (gst_play_bin_init), (remove_sinks), (setup_sinks),
7846 (gst_play_bin_change_state):
7847 Move setup_output_pads into a virtual function, remove
7848 group-switch (no longer needed) and redirect (handled by bus
7851 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
7853 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
7854 (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
7855 (get_active_group), (get_building_group), (group_destroy),
7856 (group_commit), (check_queue), (queue_overrun),
7857 (queue_threshold_reached), (queue_out_of_data),
7858 (gen_preroll_element), (remove_groups), (unknown_type),
7859 (add_element_stream), (no_more_pads), (probe_triggered),
7860 (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
7861 (setup_substreams), (setup_source), (finish_source),
7862 (prepare_output), (muted_group_change_state),
7863 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
7864 (gst_play_base_bin_change_state):
7865 * gst/playback/gstplaybasebin.h:
7866 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
7867 (gst_play_bin_init), (gst_play_bin_set_property),
7868 (gen_video_element), (gen_text_element), (gen_audio_element),
7869 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
7870 (gst_play_bin_change_state):
7871 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
7872 (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
7873 (stream_info_change_state), (gst_stream_info_set_mute),
7874 (gst_stream_info_get_property):
7875 * gst/playback/gststreaminfo.h:
7876 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
7877 (gst_stream_selector_get_linked_pad),
7878 (gst_stream_selector_getcaps),
7879 (gst_stream_selector_get_linked_pads),
7880 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
7881 * gst/playback/gststreamselector.h:
7882 Rough port of playbin. Needs some more work, but is mostly done,
7883 and uses a few locks in important places, which should make stuff
7884 like chain-switches clean. Still uses GST_STATE() in a few places,
7885 which isn't all that good an idea, subtitles/elements disabled
7886 because no elements to test with and thus probably broken, query
7887 and event handling moved to GstBin, internal thread removed
7888 alltogether because the pipeline does that for us now. Can play
7889 Ogg/Vorbis files. Haven't tested anything else yet.
7891 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
7893 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
7894 Do no-more-pads (needed for autoplugging).
7896 2005-05-10 Andy Wingo <wingo@pobox.com>
7898 * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
7899 message to the bus with the tags. Still not sent downstream tho.
7901 * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
7903 (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
7904 avoid refcounting hassles.
7906 2005-05-09 Andy Wingo <wingo@pobox.com>
7908 * gst/volume/Makefile.am:
7910 * gst/volume/gstvolume.h
7911 * gst/volume/gstvolume.c: Port to 0.9 API, derive from
7912 basetransform. Probably need an audio filter base class.
7914 2005-05-09 Wim Taymans <wim@fluendo.com>
7916 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
7917 (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
7918 (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
7919 (gst_vorbisenc_chain):
7920 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
7921 (gst_audio_convert_caps_remove_format_info),
7922 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
7923 (gst_audio_convert_fixate), (gst_audio_convert_channels):
7924 Make caps writable before writing to it.
7925 Fix negotiation in audioconvert some more.
7927 2005-05-09 Wim Taymans <wim@fluendo.com>
7929 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
7930 (gst_videorate_getcaps), (gst_videorate_setcaps),
7931 (gst_videorate_event), (gst_videorate_chain):
7934 2005-05-09 Wim Taymans <wim@fluendo.com>
7936 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
7937 (gst_videorate_getcaps), (gst_videorate_setcaps),
7938 (gst_videorate_blank_data), (gst_videorate_init),
7939 (gst_videorate_event), (gst_videorate_chain),
7940 (gst_videorate_change_state):
7941 Port videorate, do a better job at negotiation while we're at
7944 2005-05-09 Jan Schmidt <thaytan@mad.scientist.com>
7949 * examples/Makefile.am:
7950 * gst-libs/gst/audio/Makefile.am:
7951 * gst-libs/gst/riff/Makefile.am:
7952 * gst-libs/gst/tag/Makefile.am:
7953 * gst-libs/gst/video/Makefile.am:
7954 Fixups for missing variables.
7956 2005-05-09 Wim Taymans <wim@fluendo.com>
7958 * examples/seeking/seek.c: (make_theora_pipeline),
7959 (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
7960 (query_rates), (query_positions_elems), (query_positions_pads),
7961 (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
7962 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
7963 (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
7964 (gst_ogg_pad_typefind), (gst_ogg_demux_init),
7965 (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
7966 (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
7967 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
7968 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
7969 (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
7970 (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
7971 (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
7972 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
7973 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
7974 (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
7975 * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
7976 (theora_dec_src_convert), (theora_dec_sink_convert),
7977 (theora_dec_src_query), (theora_dec_sink_query),
7978 (theora_dec_src_event), (theora_dec_sink_event),
7979 (theora_handle_comment_packet), (theora_handle_type_packet),
7980 (theora_handle_header_packet), (theora_handle_data_packet),
7982 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
7983 (vorbis_dec_convert), (vorbis_dec_src_query),
7984 (vorbis_dec_sink_query), (vorbis_dec_src_event),
7985 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
7986 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
7987 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
7988 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
7989 (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
7990 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
7991 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
7992 (gst_play_bin_query):
7993 * gst/playback/test3.c: (update_scale):
7994 * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
7995 (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
7996 * gst/subparse/gstsubparse.c: (gst_subparse_init):
7997 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
7998 (gst_videotestsrc_src_query):
7999 * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
8000 (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
8002 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
8003 Port to new query API.
8005 Cleanups in x[v]imagesink
8007 2005-05-09 Andy Wingo <wingo@pobox.com>
8009 * ext/alsa/gstalsasink.h:
8010 * ext/gnomevfs/gstgnomevfssrc.c:
8011 (gst_gnomevfssrc_get_icy_metadata):
8012 * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
8013 (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
8014 * ext/theora/theoradec.c (theora_dec_src_query)
8015 (theora_dec_src_event, theora_dec_sink_event)
8016 (theora_handle_comment_packet, theora_handle_data_packet):
8017 * ext/theora/theoraenc.c (theora_enc_chain):
8018 * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
8019 (vorbis_dec_sink_event, vorbis_handle_comment_packet):
8020 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
8021 * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
8023 * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
8024 (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
8025 (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
8026 (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
8027 (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
8028 (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
8029 (paint_setup_xBGR8888, paint_setup_RGBx8888)
8030 (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
8031 (paint_setup_RGB565, paint_setup_xRGB1555):
8032 * gst/videotestsrc/videotestsrc.h:
8033 * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
8034 * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
8035 (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
8038 * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
8039 gst_pad_query_position. Fixes oggdemux.
8041 2005-05-08 David Schleef <ds@schleef.org>
8043 * configure.ac: Require liboil.
8044 * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
8046 * gst/videotestsrc/videotestsrc.c:
8047 * gst/videotestsrc/videotestsrc.h:
8049 2005-05-06 Wim Taymans <wim@fluendo.com>
8051 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8052 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
8053 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
8054 Well, unreffing a buffer right before pushing it is asking
8057 2005-05-06 Christian Schaller <uraeus@gnome.org>
8059 * pkgconfig/gstreamer-libs.pc.in: add missing library calls
8061 2005-05-06 Wim Taymans <wim@fluendo.com>
8063 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
8064 (gst_audio_convert_caps_remove_format_info),
8065 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
8066 (gst_audio_convert_fixate), (gst_audio_convert_channels):
8067 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8068 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
8069 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
8070 * gst/sine/Makefile.am:
8071 * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
8072 (gst_sinesrc_class_init), (gst_sinesrc_init),
8073 (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
8074 (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
8075 (gst_sinesrc_update_freq):
8076 * gst/sine/gstsinesrc.h:
8077 * gst/tcp/gstmultifdsink.c:
8078 * sys/xvimage/xvimagesink.c:
8079 Fixed negotiation wrt _peer_get_caps()
8083 2005-05-06 Wim Taymans <wim@fluendo.com>
8085 * gst-libs/gst/audio/gstaudiosink.c:
8086 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
8087 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
8088 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
8089 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
8090 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
8091 (gst_audiosink_create_ringbuffer):
8092 * gst-libs/gst/audio/gstbaseaudiosink.c:
8093 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
8094 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
8095 (gst_baseaudiosink_set_property), (build_linear_format),
8096 (debug_spec_caps), (debug_spec_buffer),
8097 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
8098 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
8099 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
8100 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
8101 * gst-libs/gst/audio/gstbaseaudiosink.h:
8102 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
8103 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
8104 (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
8105 (gst_ringbuffer_play), (gst_ringbuffer_pause),
8106 (gst_ringbuffer_stop), (gst_ringbuffer_delay),
8107 (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
8108 (wait_segment), (gst_ringbuffer_commit),
8109 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
8110 (gst_ringbuffer_clear):
8111 * gst-libs/gst/audio/gstringbuffer.h:
8112 Make the base audiosink return an error when there is no
8113 audiobuffer negotiated.
8115 2005-05-06 Zaheer Abbas Merali <zaheerabbas at merali dot org>
8118 Disable cdparanoia until someone ports it!
8120 2005-05-06 Wim Taymans <wim@fluendo.com>
8122 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
8123 (gst_ogg_demux_sink_activate):
8124 And revert after wingo's revert.. sigh..
8126 2005-05-05 Andy Wingo <wingo@pobox.com>
8128 * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
8130 * configure.ac: Return audiorate and subparse from the ghetto.
8131 Re-enable -Wall -Werror.
8132 * gst/subparse/gstsubparse.c:
8133 * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
8134 or chain-based. Cleaned up a bit. Not tested.
8136 2005-05-05 Christian Schaller <christian@fluendo.com>
8138 * Makefile.am: remove stuff that is not building
8139 * configure.ac: remove stuff that is not building
8140 * examples/Makefile.am: remove stuff that is not building
8141 * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
8142 * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
8143 * sys/Makefile.am: remove stuff that is not building
8144 * testsuite/Makefile.am: remove stuff that is not building
8146 2005-05-05 Andy Wingo <wingo@pobox.com>
8148 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
8149 * gst-libs/gst/tag/gstvorbistag.c:
8150 (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
8151 * gst/adder/gstadder.h:
8152 * gst/audioconvert/gstchannelmix.c:
8153 (gst_audio_convert_fill_one_other):
8154 * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
8155 (gst_audiorate_init), (gst_audiorate_chain):
8156 * gst/playback/gstplaybasebin.c: (setup_source):
8157 * gst/playback/test3.c: (update_scale):
8175 2005-05-05 Wim Taymans <wim@fluendo.com>
8177 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
8178 (gst_audio_convert_caps_remove_format_info),
8179 (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
8180 (gst_audio_convert_change_state), (gst_audio_convert_channels):
8181 * gst/videotestsrc/gstvideotestsrc.c:
8182 (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
8183 (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
8184 (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
8185 (gst_videotestsrc_init), (gst_videotestsrc_loop):
8186 Don't ignore _push() return values.
8187 Make sure no processing is done when shutting down.
8188 Videotestsrc pad activation fix.
8190 2005-05-05 Wim Taymans <wim@fluendo.com>
8192 * gst/adder/Makefile.am:
8193 * gst/adder/gstadder.c: (gst_adder_setcaps),
8194 (gst_adder_class_init), (gst_adder_init),
8195 (gst_adder_request_new_pad), (gst_adder_collected),
8196 (gst_adder_change_state):
8197 * gst/adder/gstadder.h:
8198 Ported adder as an example of a mixer element using
8199 collect pads. Needs more negotiation work.
8201 2005-05-05 Wim Taymans <wim@fluendo.com>
8203 * ext/theora/theoradec.c: (_inc_granulepos),
8204 (theora_dec_src_event), (theora_dec_sink_event),
8205 (theora_handle_comment_packet), (theora_handle_type_packet),
8206 (theora_handle_header_packet), (theora_handle_data_packet),
8208 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8209 (gst_theora_enc_init), (theora_enc_sink_setcaps),
8210 (theora_push_buffer), (theora_push_packet),
8211 (theora_enc_sink_event), (theora_enc_chain),
8212 (theora_enc_change_state), (theora_enc_set_property),
8213 (theora_enc_get_property):
8214 Added stream lock to decoder so that we can serialize
8216 More theoraenc porting, recover from errors, do clean
8219 2005-05-05 Wim Taymans <wim@fluendo.com>
8221 * ext/ogg/Makefile.am:
8223 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
8224 (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
8226 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
8227 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
8228 (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
8229 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
8230 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
8231 (gst_ogg_mux_change_state):
8234 2005-05-05 Wim Taymans <wim@fluendo.com>
8236 * docs/design-audiosinks.txt:
8237 * gst-libs/gst/audio/TODO:
8238 * gst-libs/gst/audio/gstaudiosink.c:
8239 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
8240 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
8241 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
8242 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
8243 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
8244 (gst_audiosink_create_ringbuffer):
8245 * gst-libs/gst/audio/gstbaseaudiosink.c:
8246 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
8247 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
8248 (gst_baseaudiosink_set_property), (build_linear_format),
8249 (debug_spec_caps), (debug_spec_buffer),
8250 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
8251 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
8252 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
8253 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
8254 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
8255 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
8256 (gst_ringbuffer_release), (gst_ringbuffer_play),
8257 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
8258 (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
8259 (gst_ringbuffer_set_sample), (wait_segment),
8260 (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
8261 (gst_ringbuffer_advance), (gst_ringbuffer_clear):
8262 More work on the audiosink, mostly debugging and a race in
8265 2005-04-28 Wim Taymans <wim@fluendo.com>
8267 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
8268 (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
8269 * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
8270 (vorbis_dec_src_query), (vorbis_dec_src_event),
8271 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
8272 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
8273 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
8274 Don't crap out when seeking back to position 0.
8276 2005-04-28 Wim Taymans <wim@fluendo.com>
8278 * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
8279 (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
8280 (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
8281 (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
8282 (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
8283 Make audio sink configurable, use alsasink as default.
8285 2005-04-28 Wim Taymans <wim@fluendo.com>
8287 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
8288 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
8289 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
8290 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
8291 (vorbis_dec_change_state):
8292 * ext/vorbis/vorbisdec.h:
8293 Refactor, use STREAM_LOCK.
8295 2005-04-28 Wim Taymans <wim@fluendo.com>
8297 * ext/theora/theoradec.c: (_inc_granulepos),
8298 (theora_dec_sink_event), (theora_handle_comment_packet),
8299 (theora_handle_type_packet), (theora_handle_header_packet),
8300 (theora_handle_data_packet), (theora_dec_chain),
8301 (theora_dec_change_state):
8302 Refactor a bit, use STREAM_LOCK.
8304 2005-04-28 Wim Taymans <wim@fluendo.com>
8306 * ext/alsa/Makefile.am:
8307 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
8308 (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
8309 (gst_alsa_link), (gst_alsa_close_audio):
8310 * ext/alsa/gstalsaplugin.c: (plugin_init):
8311 * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
8312 (gst_alsasink_dispose), (gst_alsasink_base_init),
8313 (gst_alsasink_class_init), (gst_alsasink_init),
8314 (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
8315 (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
8316 (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
8317 (gst_alsasink_reset):
8318 * ext/alsa/gstalsasink.h:
8319 Implement alsasink with simple open/write/close API.
8320 Make alsa dir build by disabling compilation of code.
8322 2005-04-28 Wim Taymans <wim@fluendo.com>
8324 * gst-libs/gst/audio/Makefile.am:
8325 * gst-libs/gst/audio/audio.h:
8326 * gst-libs/gst/audio/audioclock.c:
8327 * gst-libs/gst/audio/audioclock.h:
8328 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
8329 (gst_audio_clock_class_init), (gst_audio_clock_init),
8330 (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
8331 * gst-libs/gst/audio/gstaudioclock.h:
8332 * gst-libs/gst/audio/gstaudiosink.c:
8333 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
8334 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
8335 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
8336 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
8337 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
8338 (gst_audiosink_create_ringbuffer):
8339 * gst-libs/gst/audio/gstbaseaudiosink.c:
8340 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
8341 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
8342 (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
8343 (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
8344 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
8345 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
8346 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
8347 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
8348 * gst-libs/gst/audio/gstbaseaudiosink.h:
8349 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
8350 (gst_ringbuffer_init), (gst_ringbuffer_finalize),
8351 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
8352 (gst_ringbuffer_release), (gst_ringbuffer_play),
8353 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
8354 (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
8355 (gst_ringbuffer_set_sample), (wait_segment),
8356 (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
8357 (gst_ringbuffer_advance), (gst_ringbuffer_clear):
8358 * gst-libs/gst/audio/gstringbuffer.h:
8359 Make ringbuffer faster and more simple by removing the locks
8360 in the playback thread.
8361 Add sample accurate playback based on buffer sample offsets.
8362 Make the baseaudiosink provide a clock.
8363 Parse caps in the base class.
8364 Correctly handle seeking, flushing and state changes.
8366 2005-04-25 Thomas Vander Stichele <thomas at apestaart dot org>
8369 * gst/audioconvert/Makefile.am:
8370 * gst/audioscale/Makefile.am:
8371 Fix part of the build. Come on guys, autogen didn't even work :)
8373 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
8376 * gst-libs/gst/Makefile.am:
8377 * gst-libs/gst/media-info/.cvsignore:
8378 * gst-libs/gst/media-info/Makefile.am:
8379 * gst-libs/gst/media-info/README:
8380 * gst-libs/gst/media-info/media-info-priv.c:
8381 * gst-libs/gst/media-info/media-info-priv.h:
8382 * gst-libs/gst/media-info/media-info-test.c:
8383 * gst-libs/gst/media-info/media-info.c:
8384 * gst-libs/gst/media-info/media-info.h:
8385 * gst-libs/gst/media-info/media-info.vcproj:
8386 * pkgconfig/Makefile.am:
8387 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
8388 * pkgconfig/gstreamer-media-info.pc.in:
8389 Remove media-info, which is also successed by playbin (see Totem
8392 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
8395 * examples/Makefile.am:
8396 * examples/gstplay/.cvsignore:
8397 * examples/gstplay/Makefile.am:
8398 * examples/gstplay/player.c:
8399 * gst-libs/gst/Makefile.am:
8400 * gst-libs/gst/play/.cvsignore:
8401 * gst-libs/gst/play/Makefile.am:
8402 * gst-libs/gst/play/play.c:
8403 * gst-libs/gst/play/play.h:
8404 * gst-libs/gst/play/play.vcproj:
8405 * pkgconfig/Makefile.am:
8406 * pkgconfig/gstreamer-play-uninstalled.pc.in:
8407 * pkgconfig/gstreamer-play.pc.in:
8408 Remove libgstplay, playbin is now the official successor.
8410 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
8413 * gst-libs/gst/Makefile.am:
8414 * gst-libs/gst/xwindowlistener/Makefile.am:
8415 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
8416 * gst-libs/gst/xwindowlistener/xwindowlistener.h:
8417 Remove deprecated xwindowlistener (I've moved xwindowlistening
8418 in the v4l/v4l2 plugins over to serverside).
8420 2005-04-25 David Schleef <ds@schleef.org>
8422 * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
8423 to examples/dynparams. Examples do not belong interspersed with
8425 * examples/dynparams/demo-dparams.c:
8426 * gst/sine/Makefile.am:
8427 * gst/sine/demo-dparams.c:
8429 2005-04-25 David Schleef <ds@schleef.org>
8431 Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
8432 * gst-libs/gst/audio/Makefile.am:
8433 * gst-libs/gst/riff/Makefile.am:
8434 * gst-libs/gst/tag/Makefile.am:
8435 * gst-libs/gst/video/Makefile.am:
8436 * gst-libs/gst/xwindowlistener/Makefile.am:
8438 Convert to 0.9 API, seems to work:
8439 * sys/ximage/Makefile.am:
8440 * sys/ximage/ximagesink.c:
8442 2005-04-24 David Schleef <ds@schleef.org>
8444 Link plugins against libraries:
8445 * ext/alsa/Makefile.am:
8446 * gst/tcp/Makefile.am:
8448 Remove asm code that should be in liboil
8449 * gst/videoscale/Makefile.am:
8450 * gst/videoscale/videoscale_x86_asm.s:
8452 gettext wants these checked in:
8468 2005-04-24 David Schleef <ds@schleef.org>
8470 Convert gst_main() to g_main_loop_run()
8471 * gst/playback/decodetest.c: (main):
8472 * gst/playback/test2.c: (main):
8473 * gst/playback/test3.c: (main):
8474 * gst/playback/test4.c: (main):
8476 Link plugins against libraries:
8477 * ext/libvisual/Makefile.am:
8478 * sys/xvimage/Makefile.am:
8480 2005-04-24 David Schleef <ds@schleef.org>
8482 * configure.ac: Remove idct and resample libs
8483 * gst-libs/gst/Makefile.am: same
8485 Remove usage of gst_library_load():
8486 * ext/alsa/gstalsaplugin.c: (plugin_init):
8487 * ext/libvisual/visual.c: (plugin_init):
8488 * ext/ogg/gstogg.c: (plugin_init):
8489 * ext/theora/theora.c: (plugin_init):
8490 * ext/vorbis/vorbis.c: (plugin_init):
8491 * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
8492 * gst/audioscale/gstaudioscale.c:
8493 * gst/adder/gstadder.c: (plugin_init):
8494 * gst/audioconvert/plugin.c: (plugin_init):
8495 * sys/ximage/ximagesink.c: (plugin_init):
8496 * sys/xvimage/xvimagesink.c: (plugin_init):
8497 * gst/tcp/gsttcpplugin.c: (plugin_init):
8499 Link plugins against libraries:
8500 * ext/ogg/Makefile.am:
8501 * ext/theora/Makefile.am:
8502 * ext/vorbis/Makefile.am:
8503 * gst/audioconvert/Makefile.am:
8505 Create proper libraries:
8506 * gst-libs/gst/riff/Makefile.am:
8507 * gst-libs/gst/audio/Makefile.am:
8508 * gst-libs/gst/video/Makefile.am:
8510 Move resample library to audioscale plugin directory:
8511 * gst-libs/gst/resample/Makefile.am:
8512 * gst-libs/gst/resample/README:
8513 * gst-libs/gst/resample/dtof.c:
8514 * gst-libs/gst/resample/dtos.c:
8515 * gst-libs/gst/resample/functable.c:
8516 * gst-libs/gst/resample/private.h:
8517 * gst-libs/gst/resample/resample.c:
8518 * gst-libs/gst/resample/resample.h:
8519 * gst-libs/gst/resample/resample.vcproj:
8520 * gst-libs/gst/resample/test.c:
8521 * gst/audioscale/Makefile.am:
8522 * gst/audioscale/README:
8523 * gst/audioscale/dtof.c:
8524 * gst/audioscale/dtos.c:
8525 * gst/audioscale/functable.c:
8526 * gst/audioscale/private.h:
8527 * gst/audioscale/resample.c:
8528 * gst/audioscale/resample.h:
8529 * gst/audioscale/test.c:
8531 Move tagedit library to gst-libs:
8532 * gst-libs/gst/tag/Makefile.am:
8533 * gst-libs/gst/tag/gstid3tag.c:
8534 * gst-libs/gst/tag/gsttagediting.c:
8535 * gst-libs/gst/tag/gsttageditingprivate.h:
8536 * gst-libs/gst/tag/gstvorbistag.c:
8537 * gst/tags/Makefile.am:
8538 * gst/tags/gstid3tag.c:
8539 * gst/tags/gstvorbistag.c:
8541 Fix for core changes:
8542 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
8543 (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
8544 (gst_sinesrc_getrange):
8546 2005-04-23 David Schleef <ds@schleef.org>
8548 * gst-libs/gst/Makefile.am: Remove idct. It hasn't been used
8549 in gst-plugins in a long time, and properly belongs in liboil.
8550 * gst-libs/gst/idct/Makefile.am:
8551 * gst-libs/gst/idct/README:
8552 * gst-libs/gst/idct/dct.h:
8553 * gst-libs/gst/idct/doieee:
8554 * gst-libs/gst/idct/fastintidct.c:
8555 * gst-libs/gst/idct/floatidct.c:
8556 * gst-libs/gst/idct/idct.c:
8557 * gst-libs/gst/idct/idct.h:
8558 * gst-libs/gst/idct/idtc.vcproj:
8559 * gst-libs/gst/idct/ieeetest.c:
8560 * gst-libs/gst/idct/intidct.c:
8562 2005-04-20 Wim Taymans <wim@fluendo.com>
8564 * docs/design-audiosinks.txt:
8565 * gst-libs/gst/audio/Makefile.am:
8566 * gst-libs/gst/audio/TODO:
8567 * gst-libs/gst/audio/gstaudiosink.c:
8568 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
8569 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
8570 (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
8571 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
8572 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
8573 (gst_audioringbuffer_delay), (gst_audiosink_base_init),
8574 (gst_audiosink_class_init), (gst_audiosink_init),
8575 (gst_audiosink_create_ringbuffer):
8576 * gst-libs/gst/audio/gstaudiosink.h:
8577 * gst-libs/gst/audio/gstbaseaudiosink.c:
8578 (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
8579 (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
8580 (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
8581 (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
8582 (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
8583 (gst_baseaudiosink_create_ringbuffer),
8584 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
8585 * gst-libs/gst/audio/gstbaseaudiosink.h:
8586 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
8587 (gst_ringbuffer_class_init), (gst_ringbuffer_init),
8588 (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
8589 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
8590 (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
8591 (gst_ringbuffer_play), (gst_ringbuffer_pause),
8592 (gst_ringbuffer_resume), (gst_ringbuffer_stop),
8593 (gst_ringbuffer_callback), (gst_ringbuffer_delay),
8594 (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
8595 (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
8596 * gst-libs/gst/audio/gstringbuffer.h:
8597 An attempt at a set of audio base classes together with some
8600 2005-04-20 Wim Taymans <wim@fluendo.com>
8602 * gst/audioconvert/Makefile.am:
8603 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
8604 (gst_audio_convert_caps_remove_format_info),
8605 (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
8606 (gst_audio_convert_channels):
8607 Link against audio libs.
8608 Fix audio convert plugin.
8610 2005-04-20 Wim Taymans <wim@fluendo.com>
8612 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
8613 (gst_ogg_demux_sink_activate):
8614 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
8615 (theora_set_header_on_caps), (theora_enc_sink_event),
8619 2005-04-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
8621 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
8622 * gst/playback/gstdecodebin.c: (find_compatibles):
8623 Work with staticpadtemplates in elementfactories.
8625 2005-04-12 Wim Taymans <wim@fluendo.com>
8627 * gst/playback/README:
8628 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
8629 (compare_ranks), (print_feature), (gst_decode_bin_init),
8630 (dynamic_create), (dynamic_free), (find_compatibles),
8631 (mimetype_is_raw), (close_pad_link), (got_redirect),
8632 (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
8633 (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
8634 (gst_decode_bin_change_state):
8635 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
8636 (gst_play_base_bin_init), (group_destroy), (group_commit),
8637 (check_queue), (queue_overrun), (queue_threshold_reached),
8638 (queue_out_of_data), (gen_preroll_element), (unknown_type),
8639 (new_decoded_pad), (setup_subtitle), (gen_source_element),
8640 (got_redirect), (setup_source), (play_base_eos),
8641 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
8642 (gst_play_base_bin_remove_element):
8643 * gst/playback/gstplaybasebin.h:
8644 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
8645 (gst_play_bin_init), (gst_play_bin_dispose),
8646 (gst_play_bin_set_property), (gen_video_element),
8647 (gen_text_element), (gen_audio_element), (remove_sinks),
8648 (gst_play_bin_send_event):
8649 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
8650 (stream_info_change_state), (gst_stream_info_set_mute):
8651 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
8652 (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
8653 (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
8654 (gst_stream_selector_chain):
8655 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
8657 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
8658 (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
8659 (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
8660 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
8661 Raw and crude port of decodebin.
8662 Make playbin compile.
8664 2005-04-06 Wim Taymans <wim@fluendo.com>
8666 * ext/gnomevfs/Makefile.am:
8667 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
8668 (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
8669 (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
8670 (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
8671 (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
8672 (gst_gnomevfssrc_stop):
8673 * ext/ogg/Makefile.am:
8674 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
8675 (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
8676 * ext/theora/Makefile.am:
8677 * ext/theora/theoradec.c: (_inc_granulepos),
8678 (theora_dec_sink_event), (theora_dec_chain):
8679 * ext/vorbis/Makefile.am:
8680 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
8681 (vorbis_dec_sink_event), (vorbis_dec_chain):
8682 * gst-libs/gst/audio/Makefile.am:
8683 * sys/xvimage/Makefile.am:
8684 Make gnomevfssrc extend the source base class.
8685 Fix linking against libs in various plugins.
8687 2005-04-06 Andy Wingo <wingo@pobox.com>
8689 * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
8692 * configure.ac: Add check and AC_SUBST for libgstbase.
8694 2005-03-31 Wim Taymans <wim@fluendo.com>
8696 * examples/seeking/Makefile.am:
8697 * examples/seeking/cdparanoia.c: (main):
8698 * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
8699 (play_cb), (pause_cb), (stop_cb), (main):
8700 * examples/seeking/playbin.c:
8701 * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
8702 (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
8703 (make_sid_pipeline), (make_vorbis_pipeline),
8704 (make_theora_pipeline), (make_vorbis_theora_pipeline),
8705 (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
8706 (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
8707 (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
8708 (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
8710 * examples/seeking/spider_seek.c:
8711 * examples/seeking/vorbisfile.c:
8712 * ext/gnomevfs/Makefile.am:
8713 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8714 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
8715 (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
8716 (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
8717 (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
8718 (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
8719 (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
8720 (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
8722 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
8723 (gst_ogg_pad_class_init), (gst_ogg_pad_init),
8724 (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
8725 (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
8726 (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
8727 (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
8728 (gst_ogg_pad_event), (gst_ogg_pad_reset),
8729 (gst_ogg_demux_factory_filter), (compare_ranks),
8730 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
8731 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
8732 (gst_ogg_chain_new), (gst_ogg_chain_free),
8733 (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
8734 (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
8735 (gst_ogg_demux_class_init), (gst_ogg_demux_init),
8736 (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
8737 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
8738 (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
8739 (gst_ogg_demux_get_prev_page),
8740 (gst_ogg_demux_deactivate_current_chain),
8741 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
8742 (gst_ogg_demux_bisect_forward_serialno),
8743 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
8744 (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
8745 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
8746 (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
8747 (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
8748 (gst_ogg_demux_change_state), (gst_ogg_print):
8749 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
8750 (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
8751 (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
8752 (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
8754 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
8755 * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
8756 (theora_dec_src_convert), (theora_dec_sink_convert),
8757 (theora_dec_src_query), (theora_dec_src_event),
8758 (theora_dec_sink_event), (theora_dec_chain),
8759 (theora_dec_change_state):
8760 * ext/theora/theoraenc.c: (gst_theora_enc_init),
8761 (theora_enc_sink_setcaps), (theora_buffer_from_packet),
8762 (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
8763 (theora_enc_change_state):
8764 * ext/vorbis/Makefile.am:
8765 * ext/vorbis/oggvorbisenc.c:
8766 * ext/vorbis/oggvorbisenc.h:
8767 * ext/vorbis/vorbis.c: (plugin_init):
8768 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
8769 (vorbis_dec_src_query), (vorbis_dec_src_event),
8770 (vorbis_dec_sink_event), (vorbis_dec_chain),
8771 (vorbis_dec_change_state):
8772 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
8773 (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
8774 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
8775 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
8776 (gst_vorbisenc_change_state):
8777 * ext/vorbis/vorbisenc.h:
8778 * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
8779 * gst-libs/gst/audio/audioclock.c:
8780 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
8781 (gst_audiofilter_init), (gst_audiofilter_chain):
8782 * gst-libs/gst/audio/testchannels.c: (main):
8783 * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
8784 * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
8785 (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
8786 (gmip_find_track_streaminfo), (gmip_find_track_format):
8787 * gst-libs/gst/media-info/media-info.c:
8788 (gst_media_info_read_idler):
8789 * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
8790 (gst_play_get_all_by_interface):
8791 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
8792 (gst_riff_parse_chunk), (gst_riff_parse_file_header),
8793 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
8794 (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
8795 (gst_riff_parse_info):
8796 * gst-libs/gst/riff/riff-read.h:
8797 * gst-libs/gst/riff/riff.c: (plugin_init):
8798 * gst-libs/gst/video/Makefile.am:
8799 * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
8800 (gst_videosink_class_init), (gst_videosink_get_type):
8801 * gst-libs/gst/video/videosink.h:
8802 * gst/audioconvert/bufferframesconvert.c:
8803 (buffer_frames_convert_init), (buffer_frames_convert_fixate),
8804 (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
8805 * gst/audioconvert/channelmixtest.c: (main):
8806 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
8807 (gst_audio_convert_chain),
8808 (gst_audio_convert_caps_remove_format_info),
8809 (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
8810 (gst_audio_convert_setcaps), (_fixate_caps_to_int),
8811 (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
8812 (gst_audio_convert_buffer_to_default_format),
8813 (gst_audio_convert_buffer_from_default_format),
8814 (gst_audio_convert_channels):
8815 * gst/audioconvert/gstchannelmix.h:
8816 * gst/ffmpegcolorspace/avcodec.h:
8817 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8818 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
8819 (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
8820 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
8821 * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
8822 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
8823 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
8824 (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
8825 (mpeg_video_type_find), (mpeg_video_stream_type_find),
8827 * gst/videotestsrc/gstvideotestsrc.c:
8828 (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
8829 (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
8830 (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
8831 (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
8832 (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
8833 (gst_videotestsrc_init), (gst_videotestsrc_src_query),
8834 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
8835 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
8836 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
8837 (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
8838 (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
8839 (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
8840 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
8841 (gst_xvimagesink_navigation_send_event),
8842 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
8843 (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
8844 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
8845 * sys/xvimage/xvimagesink.h:
8846 Plugin port to 0.9, ogg/theora playback should work in the seek
8848 Removed old examples.
8849 Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
8850 explained in 0.9 TODO doc.
8853 2005-02-23 Thomas Vander Stichele <thomas at apestaart dot org>
8875 * testsuite/Makefile.am:
8876 remove a whole bunch of plugins. This module now contains a set
8877 of free reference plugins/elements as agreed.
8879 2005-02-22 Thomas Vander Stichele <thomas at apestaart dot org>
8882 hunting season on 0.9 is now OPEN
8884 2005-02-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
8886 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
8887 Kick the hell out of gcc for not warning me about a symbol conflict.
8889 2005-02-22 Luca Ognibene <luogni@tin.it>
8891 Reviewed by: Tim-Philipp M??ller <tim at centricular dot net>
8893 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
8894 Don't leak caps string (fixes #168134)
8896 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
8897 (gst_jpegenc_init), (gst_jpegenc_finalize),
8898 (gst_jpegenc_change_state):
8899 Don't leak line buffers and context struct (fixes #168133).
8901 2005-02-21 Tim-Philipp M??ller <tim at centricular dot net>
8904 * ext/dirac/gstdiracdec.cc:
8905 (gst_diracdec_chain):
8906 Since dirac 0.5.0 the framerate in dirac is expressed as a
8907 rational number. Fix build and up requirement to 0.5.0, and
8908 also pass parameters to gst_diracdec_link in the right order
8911 2005-02-21 Maciej Katafiasz <mathrick@freedesktop.org>
8913 * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
8914 * ext/faad/gstfaad.h:
8915 TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with
8916 certain invalid muxed streams, where some packets will contain
8917 junk after decoder data. Partially fixes #149158.
8919 2005-02-21 Jan Schmidt <thaytan@mad.scientist.com>
8920 * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
8921 Make sure we only write to writable buffers
8923 2005-02-20 Tim-Philipp M??ller <tim at centricular dot net>
8925 * gst-libs/gst/riff/riff-media.c:
8926 (gst_riff_create_audio_caps_with_data):
8927 Do actually fix invalid RIFF fmt header values for alaw
8928 and mulaw audio instead of just saying so.
8930 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
8931 Give gst_riff_create_audio_caps_with_data() a chance to
8932 fix up broken format header fields before extracting any
8933 parameters from the header. (fixes #167633)
8935 2005-02-19 Martin Holters <martin.holters@gmx.de>
8937 Reviewed by: Tim-Philipp M??ller <tim at centricular dot net>
8939 * gst/audioconvert/bufferframesconvert.c:
8940 (buffer_frames_convert_link):
8941 Don't leak othercaps. (fixes #167878)
8943 2005-02-19 Arwed v. Merkatz <v.merkatz@gmx.net>
8946 * ext/libvisual/visual.c: (gst_visual_srclink),
8947 (gst_visual_change_state):
8948 Support libvisual 0.2.0.
8950 2005-02-18 Tim-Philipp M??ller <tim at centricular dot net>
8952 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
8953 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
8954 Use same rowstrides for I420 as used everywhere else.
8956 2005-02-17 Tim-Philipp M??ller <tim at centricular dot net>
8958 * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
8959 Declare variables at beginning of block and make gcc-2.95 happy
8960 (fixes # 167482, patch by Gergely Nagy).
8962 * gst/tcp/gsttcpclientsrc.c:
8963 * gst/tcp/gsttcpclientsrc.h:
8964 Move some includes into the header, so that struct sockaddr_in is
8965 defined when it should be defined on FreeBSD as well (fixes
8968 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
8969 Don't pass uninitialised values to setsockopt() here either.
8971 2005-02-17 Luca Ognibene <luogni at tin dot it>
8973 Reviewed by: Tim-Philipp M??ller <tim at centricular dot net>
8975 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
8976 Don't pass uninitialised values to setsockopt(). (fixes #167704)
8978 2005-02-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
8980 * gst/playback/gstplaybin.c: (add_sink):
8981 Invert bin_add/link order to workaround deadlock in opt.
8983 2005-02-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
8985 * gst/modplug/gstmodplug.cc:
8986 Add missing break causing position queries to fail.
8988 2005-02-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
8990 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
8991 Granpos can apparently be -1, which screws up calculations...
8993 2005-02-16 Jan Schmidt <thaytan@mad.scientist.com>
8995 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
8996 (gst_ximagesink_send_pending_navigation),
8997 (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
8998 (gst_ximagesink_init):
8999 * sys/ximage/ximagesink.h:
9000 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
9001 (gst_xvimagesink_send_pending_navigation),
9002 (gst_xvimagesink_navigation_send_event),
9003 (gst_xvimagesink_finalize), (gst_xvimagesink_init):
9004 * sys/xvimage/xvimagesink.h:
9005 Use a mutex protected list to marshal navigation
9006 events into the stream thread from whichever thread
9009 2005-02-15 Tim-Philipp M??ller <tim at centricular dot net>
9011 * gst/speed/demo-mp3.c: (time_tick_cb), (main):
9012 Display current position and track length; misc. clean-ups.
9014 * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
9015 (speed_init), (speed_chain):
9016 Add query function, so that the stream length and current position
9017 get adjusted when queried (note that current position queries may
9018 still be wrong if the audio sink returns values based on buffer
9019 timestamps instead of passing on the query).
9021 2005-02-13 Benjamin Otte <otte@gnome.org>
9023 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
9024 (gst_audio_convert_channels):
9025 create channel conversion matrix when linking
9026 * gst/audioconvert/.cvsignore:
9027 * gst/audioconvert/Makefile.am:
9028 * gst/audioconvert/channelmixtest.c: (main):
9029 add (ugly) test that ensures stereo <=> mono conversion works
9032 2005-02-13 Benjamin Otte <otte@gnome.org>
9034 * gst/audioconvert/gstchannelmix.h:
9035 include missing header file
9036 * gst/audioconvert/gstchannelmix.c:
9037 (gst_audio_convert_fill_compatible):
9038 use same sign for both channels when converting to/from compatible
9039 channel. Previously used different signs made the signals cancel
9040 each other out and appear like silence. (fixes #167269)
9042 2005-02-12 Tim-Philipp M??ller <tim at centricular dot net>
9044 * gst/ffmpegcolorspace/avcodec.h:
9045 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9046 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
9047 (gst_ffmpegcsp_avpicture_fill):
9048 * gst/ffmpegcolorspace/imgconvert.c:
9049 Convert to and from YV12 (fixes #156379).
9051 2005-02-12 Julien MOUTTE <julien@moutte.net>
9053 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
9054 (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
9055 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
9056 (gst_ximagesink_expose), (gst_ximagesink_set_property),
9057 (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
9058 methods from chain and negotiation and vice versa (Fixes #166142).
9059 * sys/ximage/ximagesink.h: Add stream_lock.
9060 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
9061 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
9062 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
9063 (gst_xvimagesink_expose): Check for xcontext before trying to link.
9065 2005-02-12 Tim-Philipp M??ller <tim at centricular dot net>
9067 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
9068 Don't send "Hey! You gave me a NULL pointer you naughty person" as
9069 error message when we can't open the DVD device (when dvdnav_open()
9070 fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
9071 the above). Send something more useful instead (fixes #167117).
9073 2005-02-11 Julien MOUTTE <julien@moutte.net>
9075 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
9076 (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
9077 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
9078 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
9079 (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
9080 (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
9081 methods from chain and negotiation and vice versa (Fixes #166142).
9082 Fix a possible bug of images in the buffer pool being discarded because
9083 we are looking at the wrong geometry.
9084 * sys/xvimage/xvimagesink.h: Add stream_lock.
9086 2005-02-11 David Schleef <ds@schleef.org>
9088 * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
9089 unsigned int. (fixes #167128)
9091 2005-02-11 David Schleef <ds@schleef.org>
9093 * gst/librfb/Makefile.am: Testing stuff before committing is
9094 for wimps... and people with fast machines. Fix stupid
9097 2005-02-11 David Schleef <ds@schleef.org>
9099 * configure.ac: Pull in librfb from my CVS tree, because it is
9100 too small and annoying to be separate. Move rfbsrc plugin
9103 * ext/librfb/Makefile.am:
9104 * ext/librfb/gstrfbsrc.c:
9105 * gst/librfb/Makefile.am:
9106 * gst/librfb/gstrfbsrc.c:
9109 * gst/librfb/rfbbuffer.c:
9110 * gst/librfb/rfbbuffer.h:
9111 * gst/librfb/rfbbytestream.c:
9112 * gst/librfb/rfbbytestream.h:
9113 * gst/librfb/rfbcontext.h:
9114 * gst/librfb/rfbdecoder.c:
9115 * gst/librfb/rfbdecoder.h:
9116 * gst/librfb/rfbutil.h:
9118 2005-02-10 Tim-Philipp M??ller <tim at centricular dot net>
9120 * gst/speed/Makefile.am:
9121 * gst/speed/demo-mp3.c: (main):
9122 * gst/speed/filter.func:
9123 * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
9124 (speed_class_init), (speed_init), (speed_chain_int16),
9125 (speed_chain_float32), (speed_chain), (speed_set_property),
9126 (speed_get_property), (speed_change_state):
9127 * gst/speed/gstspeed.h:
9128 Fix speed element and make it chain-based (fixes #156467),
9129 and make it handle more than one channel.
9131 2005-02-10 Jan Schmidt <thaytan@mad.scientist.com>
9133 * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
9134 (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
9135 (gst_dtsdec_chain), (gst_dtsdec_change_state):
9136 * ext/dts/gstdtsdec.h:
9137 Don't clobber the stack constructing the channels array.
9138 Make the element chain-based. DTS tracks can now be played.
9140 2005-02-09 Tim-Philipp M??ller <tim at centricular dot net>
9142 * gst-libs/gst/audio/multichannel.h:
9143 * gst-libs/gst/gconf/gconf.h:
9144 * gst-libs/gst/idct/idct.h:
9145 * gst-libs/gst/media-info/media-info-priv.h:
9146 * gst-libs/gst/play/play.h:
9147 * gst-libs/gst/resample/private.h:
9148 * gst-libs/gst/resample/resample.h:
9149 * gst-libs/gst/riff/riff-ids.h:
9150 * gst-libs/gst/video/video.h:
9151 * gst-libs/gst/video/videosink.h:
9152 Add G_BEGIN_DECLS and G_END_DECLS around headers where
9153 missing, so that they work when included from C++ code.
9155 2005-02-09 David Schleef <ds@schleef.org>
9157 * testsuite/gst-lint: Check for non-statically scoped
9158 parent_class variables. This won't be a problem once
9159 plugins are loaded with RTLD_LOCAL.
9161 2005-02-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9163 * ext/mplex/gstmplexibitstream.cc:
9166 2005-02-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9168 * ext/ogg/gstogmparse.c:
9169 * gst/debug/gstnavigationtest.c:
9170 Die, thou faulty symbol pollutors (non-static parent_class).
9172 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9174 * ext/mplex/gstmplexibitstream.cc:
9175 Fix event handling (#165525).
9177 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9179 * ext/mikmod/gstmikmod.c:
9180 * gst/modplug/gstmodplug.cc:
9181 Add missing endianness to template (fixes #165509).
9183 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9185 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
9186 Fix wrong order of reading of optional bytes (#165290).
9188 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9190 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
9191 Implement FILLER event awareness.
9193 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9195 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
9196 Fix track calculations (#166208).
9198 2005-02-08 Gergely Nagy <algernon@bonehunter.rulez.org>
9200 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9202 * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
9203 * ext/libpng/gstpngenc.c:
9204 Fix byte-order, use proper fixed caps. Fixes #164197.
9206 2005-02-08 Jan Schmidt <thaytan@mad.scientist.com>
9211 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
9212 (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
9213 Don't push buffers if the src pad isn't negotiated yet.
9215 * gst/audioconvert/gstaudioconvert.c:
9216 (gst_audio_convert_buffer_to_default_format),
9217 (gst_audio_convert_buffer_from_default_format):
9218 Add support for 24-bit width.
9220 * gst/dvdlpcmdec/.cvsignore:
9221 * gst/dvdlpcmdec/Makefile.am:
9222 * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
9223 (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
9224 (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
9225 (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
9227 * gst/dvdlpcmdec/gstdvdlpcmdec.h:
9228 New decoder for rearranging DVD LPCM into our audio/x-raw-int
9229 format. Needs support for the channels maps if someone can find
9230 a DVD LPCM track with > 2 channels.
9232 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
9233 (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
9234 (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
9235 * gst/mpegstream/gstdvddemux.h:
9236 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
9237 (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
9238 (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
9239 * gst/mpegstream/gstmpegdemux.h:
9240 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
9241 (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
9242 (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
9243 (gst_mpeg_parse_handle_src_query),
9244 (gst_mpeg_parse_handle_src_event):
9245 Use audio/x-dvd-lpcm for LPCM output.
9248 2005-02-08 Gergely Nagy <algernon@bonehunter.rulez.org>
9250 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9252 * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
9253 (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
9254 Add BGRA handling (#165736).
9256 2005-02-08 Francis Labonte <francis_labonte@hotmail.com>
9258 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9260 * gst/law/alaw-decode.c: (alawdec_link):
9261 * gst/law/alaw-encode.c: (alawenc_link):
9262 * gst/law/mulaw-decode.c: (mulawdec_link):
9263 * gst/law/mulaw-encode.c: (mulawenc_link):
9264 Fix caps memleaks (#166600).
9266 2005-02-08 Tim-Philipp M??ller <tim at centricular dot net>
9269 * ext/tarkin/wavelet.h:
9271 * gst/ffmpegcolorspace/avcodec.h:
9272 Include "_stdint.h" instead of <stdint.h>. Fixes build on
9273 systems that don't have stdint.h, like Solaris9 (fixes #166631).
9275 2005-02-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9277 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
9278 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
9279 (gst_xvimagesink_change_state):
9280 Clear window on PAUSED->READY instead of READY->PAUSED. Stop
9281 Xv video (and thereby regenerate Xv colourkey) in clear() so
9282 that PLAY -> READY -> PLAY works (fixes #162504).
9284 2005-02-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9286 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
9287 Switch to list instead of range, since MJPEG-devices really just
9288 support decimations, not any size.
9290 2005-02-05 Jan Schmidt <thaytan@mad.scientist.com>
9291 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
9292 (gst_mpeg2dec_reset), (free_all_buffers),
9293 (gst_mpeg2dec_alloc_buffer), (handle_sequence):
9294 * ext/mpeg2dec/gstmpeg2dec.h:
9295 The libmpeg2 user-allocated buffer management is awkward,
9296 to say the least. Hopefully this fixes things.
9298 2005-02-04 Andy Wingo <wingo@pobox.com>
9300 * gst/audioconvert/bufferframesconvert.c
9301 (buffer_frames_convert_fixate): New function, fixates to 256
9302 frames per buffer by default. (Much better than 1.)
9303 (buffer_frames_convert_init): Set the fixate function for both src
9305 (buffer_frames_convert_link): After success setting nonfixed caps,
9306 get the negotiated caps so we can know how many buffer-frames it
9307 will be. No idea how this worked at all before.
9309 2005-02-05 Jan Schmidt <thaytan@mad.scientist.com>
9311 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
9312 (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
9313 (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
9314 (handle_sequence), (handle_picture):
9315 * ext/mpeg2dec/gstmpeg2dec.h:
9316 Rearrange buffer tracking and refcounting and refactor
9317 a little for readability.
9319 2005-02-04 Jan Schmidt <thaytan@mad.scientist.com>
9320 * sys/v4l/gstv4l.c: (plugin_init):
9321 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
9322 (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
9323 (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
9324 (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
9325 * sys/v4l/gstv4ljpegsrc.h:
9326 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
9327 * sys/v4l/v4l_calls.h:
9328 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
9329 (gst_v4lsrc_get_fps):
9330 * sys/v4l/v4lsrc_calls.h:
9331 Add new v4ljpegsrc for handling the ov51x hacky "I'll give
9332 you jpeg inside rgb frames" driver.
9333 Don't error in the v4lsrc link function, just return
9336 2005-02-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9338 * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
9340 Use GST_ELEMENT_ERROR, not g_warning, if open failed.
9342 2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9344 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
9345 Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
9347 2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9349 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
9350 Reset negotiated state on PAUSED->READY.
9352 2005-02-02 David Schleef <ds@schleef.org>
9354 * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
9355 whereever possible. (Fixes #165997)
9356 * examples/capsfilter/capsfilter1.c: (main):
9357 * examples/dynparams/filter.c: (create_ui):
9358 * examples/seeking/cdparanoia.c: (get_track_info), (main):
9359 * examples/seeking/chained.c: (main):
9360 * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
9361 (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
9362 (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
9363 (make_mpeg_pipeline), (make_mpegnt_pipeline):
9364 * examples/seeking/spider_seek.c: (make_spider_pipeline):
9365 * examples/switch/switcher.c: (main):
9366 * ext/dv/demo-play.c: (main):
9367 * ext/faad/gstfaad.c: (gst_faad_change_state):
9368 * ext/mad/gstmad.c: (gst_mad_chain):
9369 * ext/smoothwave/demo-osssrc.c: (main):
9370 * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
9371 (gst_gconf_render_bin_from_description),
9372 (gst_gconf_get_default_audio_sink),
9373 (gst_gconf_get_default_video_sink),
9374 (gst_gconf_get_default_audio_src),
9375 (gst_gconf_get_default_video_src),
9376 (gst_gconf_get_default_visualization_element):
9377 * gst/level/demo.c: (main):
9378 * gst/level/plot.c: (main):
9379 * gst/playback/gstplaybin.c: (gen_video_element),
9380 (gen_audio_element):
9381 * gst/playback/test.c: (gen_video_element), (gen_audio_element):
9382 * gst/playondemand/demo-mp3.c: (setup_pipeline):
9383 * gst/sine/demo-dparams.c: (main):
9384 * gst/spectrum/demo-osssrc.c: (main):
9385 * gst/speed/demo-mp3.c: (main):
9386 * gst/volume/demo.c: (main):
9387 * testsuite/embed/embed.c: (main):
9389 2005-02-02 Jan Schmidt <thaytan@mad.scientist.com>
9391 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
9392 (gst_tcpclientsink_finalize):
9393 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
9394 (gst_tcpclientsrc_finalize):
9395 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
9396 (gst_tcpserversink_init), (gst_tcpserversink_finalize):
9397 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
9398 (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
9399 Don't leak the hostname when shutting down.
9400 In tcpserversrc, take a copy of the default hostname.
9402 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9404 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
9405 Set caps to systemstream=TRUE.
9407 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9409 * testsuite/Makefile.am:
9410 Fix more OSX buildbots.
9412 2005-02-02 Jan Schmidt <thaytan@mad.scientist.com>
9414 * ext/mpeg2dec/gstmpeg2dec.c:
9415 Don't send things to NULL PAD_PEERs
9417 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
9418 Copy-on-write the incoming buffer.
9420 * gst/mpegstream/gstdvddemux.h:
9421 * gst/mpegstream/gstmpegclock.h:
9422 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
9423 (normal_seek), (gst_mpeg_demux_handle_src_event):
9424 * gst/mpegstream/gstmpegdemux.h:
9425 * gst/mpegstream/gstmpegpacketize.h:
9426 * gst/mpegstream/gstmpegparse.c:
9427 (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
9428 (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
9429 (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
9430 (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
9431 (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
9432 * gst/mpegstream/gstmpegparse.h:
9433 * gst/mpegstream/gstrfc2250enc.h:
9434 Various changes to the way time is computed that make seeking and
9435 total time estimation much better here.
9436 Use G_BEGIN/END_DECLS instead of __cplusplus
9438 * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
9439 Use gst_buffer_stamp instead of only copying the TIMESTAMP
9441 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9443 * gst/subparse/gstsubparse.c:
9446 2005-01-31 Tim-Philipp M??ller <tim at centricular dot net>
9448 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
9449 (theora_enc_chain), (theora_enc_change_state):
9450 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
9451 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
9452 (gst_vorbisenc_change_state):
9453 * ext/vorbis/vorbisenc.h:
9454 Set granulepos and timestamp correctly for streams not
9455 starting at 0, taking into account the initial delay.
9457 2005-01-31 Tim-Philipp M??ller <tim at centricular dot net>
9459 * gst/mpegstream/gstdvddemux.c:
9460 Add audio/x-dts to audio pad template caps
9462 2005-01-30 David Schleef <ds@schleef.org>
9464 * ext/polyp/polypsink.c: (gst_polypsink_base_init),
9465 (create_context), (gst_polypsink_link): Fix silly endianness
9466 bug. Add some debugging. Remove float from caps; it doesn't
9467 work. Attempt to get remote audio working.
9469 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9471 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
9474 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9476 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
9477 (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
9478 (gst_avi_demux_stream_data):
9479 * gst/avi/gstavidemux.h:
9480 Invert DIB images. Fixes #132341.
9482 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9484 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
9485 (gst_ffmpegcsp_chain):
9486 D'oh, reference the palette data, not the palette structure.
9487 Fixes color distortion in #132341.
9489 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9491 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
9492 PAR can be non-fixed when not provided as argument (#162626).
9494 2005-01-29 David Moore <dcm@acm.org>
9496 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9498 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
9499 (gst_qtdemux_loop_header):
9500 Re-apply patch from #142272 that allows non-seekable sources,
9501 re-proposed by Daniel Drake <dsd@gentoo.org>.
9503 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9505 * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
9506 Use the src template for creating the src pad (#162330).
9508 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9511 * ext/musepack/Makefile.am:
9512 * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
9513 (gst_musepackdec_init), (gst_musepackdec_dispose),
9514 (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
9515 (gst_musepack_stream_init), (gst_musepackdec_loop),
9516 (gst_musepackdec_change_state):
9517 * ext/musepack/gstmusepackdec.cpp:
9518 * ext/musepack/gstmusepackdec.h:
9519 * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
9520 (gst_musepack_reader_read), (gst_musepack_reader_seek),
9521 (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
9522 (gst_musepack_reader_canseek), (gst_musepack_init_reader):
9523 * ext/musepack/gstmusepackreader.cpp:
9524 * ext/musepack/gstmusepackreader.h:
9525 Update to 1.1 API (#165446).
9527 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9532 2005-01-28 Andy Wingo <wingo@pobox.com>
9534 * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
9535 to reflect a different dubious internet source. Add a reference
9536 and some commentary.
9538 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9540 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
9541 (gst_stream_selector_get_caps), (gst_stream_selector_chain):
9542 * gst/playback/gststreamselector.h:
9543 Be more selective when we're redoing caps negotiation from
9544 within the chain function on a stream change.
9546 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9550 * ext/amrnb/Makefile.am:
9551 * ext/amrnb/amrnb.c: (plugin_init):
9552 * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
9553 (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
9554 (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
9555 (gst_amrnbdec_state_change):
9556 * ext/amrnb/amrnbdec.h:
9557 * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
9558 (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
9559 (gst_amrnbparse_init), (gst_amrnbparse_formats),
9560 (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
9561 (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
9562 (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
9563 * ext/amrnb/amrnbparse.h:
9564 Add support for AMR-NB (mobile phone audio format; #155163, #163286).
9565 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
9566 Add AMR-NB/-WB raw formats.
9567 * ext/alsa/gstalsa.c: (gst_alsa_link):
9568 Keep valid time when changing format.
9569 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
9570 (qtdemux_parse_trak):
9571 Add some more format-specific options (#140141, #143555, #155163).
9573 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9575 * gst/matroska/matroska-demux.c:
9576 (gst_matroska_demux_parse_blockgroup):
9577 Fix logic error in timing of subtitle stream synchronization.
9578 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
9579 Add skip-chunk, which is found in kodak-camera streams.
9581 2005-01-27 Thomas Vander Stichele <thomas at apestaart dot org>
9585 Adding Vietnamese translation (submitted by Clytie Siddall)
9587 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9589 * gst/playback/gstdecodebin.c: (try_to_link_1):
9590 Use realpad for signal.
9592 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9594 * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
9595 Fix category so decodebin picks it up.
9597 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9599 * ext/mad/Makefile.am:
9600 * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
9601 (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
9602 (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
9603 (found_type), (gst_id3demux_bin_change_state):
9604 * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
9605 (gst_id3_tag_init), (gst_id3_tag_handle_event),
9606 (gst_id3_tag_src_link), (gst_id3_tag_chain),
9607 (gst_id3_tag_change_state), (plugin_init):
9609 Add id3demuxbin (which is a simple bin consisting of id3demux
9610 and typefind), take over rank from id3demux, remove typefind
9611 code from id3demux. Makes all broken mp3s that I know of work,
9612 and thereby fixes #152688.
9614 2005-01-27 Edward Hervey <bilboed@bilboed.com>
9616 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9618 * ext/mad/gstmad.c: (gst_mad_src_event):
9619 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
9620 Allow seeks on audio pad, make mad forward those (#164826).
9621 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
9622 Set duration (#165335).
9624 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9626 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
9627 (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
9628 (gst_asf_demux_process_ext_content_desc),
9629 (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
9630 (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
9631 * gst/asfdemux/gstasfdemux.h:
9632 Improve metadata display, e.g. if the metadata comes before the
9633 streams are loaded (which is perfectly valid).
9635 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9637 * tools/gst-launch-ext-m.m:
9638 Fix AVI/ASF pipelines (#165340).
9640 2005-01-26 Amaury Jacquot <sxpert@esitcom.org>
9641 * ext/cairo/gsttextoverlay.c: include string.h and strings.h to fix
9642 build failure on amd64
9644 2005-01-26 Tim-Philipp M??ller <tim at centricular dot net>
9646 * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
9647 (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
9648 Check environment variables GST_ID3V2_TAG_ENCODING,
9649 GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
9650 list of character encodings to force interpretation of non-unicode
9651 strings stored in an ID3v2 tag to a particular encoding. If none
9652 is specified, try to use current locale's encoding, then fall back
9653 to ISO-8859-1 (which will always succeed). (Resolves #149274)
9654 * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
9655 (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
9656 Check environment variables GST_ID3V1_TAG_ENCODING,
9657 GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
9658 list of character encodings to use in case a string encountered
9659 in an ID3v1 tag is not valid UTF-8 already. If no encoding is
9660 specified, try to use the current locale's encoding, then fall
9661 back to ISO-8859-1 (which will always succeed).
9663 2005-01-25 Benjamin Otte <otte@gnome.org>
9665 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
9666 - on half framerate, compute the rate in advance so the comparisons
9667 don't compare wrong values
9668 - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
9670 - don't use mad_header_decode anymore, mad_frame_decode does that
9672 - when getting rid of consumed bytes, reset the stream's skiplen
9675 2005-01-26 Jan Schmidt <thaytan@mad.scientist.com>
9677 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
9678 Use 1/2 a second for default max_discont, as PES streams from DVB
9679 seem to have larger spacings in the SCR.
9682 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9684 * gst/playback/gstplaybasebin.c: (group_commit):
9685 Notify delayed stream-info availability.
9687 2005-01-26 Jan Schmidt <thaytan@mad.scientist.com>
9688 * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
9689 (gst_a52dec_handle_event), (gst_a52dec_chain):
9690 Add some debug output. Check that a discont has a valid
9692 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
9693 (gst_alsa_sink_loop):
9694 Ignore TAG events. A little extra debug for broken timestamps.
9695 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
9696 (dvdnavsrc_change_state):
9697 Ensure we send a discont to engage the link before we send any
9699 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
9700 (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
9701 (_seek_chapter), (seek_sector), (dvdreadsrc_get),
9702 (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
9703 Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
9704 dvd://title works in totem because typefinding sends a seek that ends
9705 up going back to chapter 1 regardless.
9706 * ext/mpeg2dec/gstmpeg2dec.c:
9707 * ext/mpeg2dec/gstmpeg2dec.h:
9708 Output correct timestamps and handle disconts.
9709 * ext/ogg/gstoggdemux.c: (get_relative):
9710 Small guard against a null dereference.
9711 * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
9712 (gst_textoverlay_set_property):
9713 Free memory when done. Don't call gst_event_filler_get_duration on
9714 EOS events. Use GST_LOG and GST_WARNING instead of g_message and
9716 * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
9717 (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
9718 (gst_sw_srclink), (gst_smoothwave_chain):
9719 Draw solid lines, prettier colours.
9720 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
9721 Add a default palette that'll work for some movies.
9722 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
9723 (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
9724 (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
9725 * gst/mpegstream/gstdvddemux.h:
9726 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
9727 (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
9728 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
9729 (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
9730 * gst/mpegstream/gstmpegparse.h:
9731 Use PTM/NAV events when for timestamp adjustment when connected to
9732 dvdnavsrc. Don't use many discont events where one suffices.
9733 * gst/playback/gstplaybasebin.c: (group_destroy),
9734 (gen_preroll_element), (gst_play_base_bin_add_element):
9735 * gst/playback/gstplaybasebin.h:
9736 Make sure we remove subtitles from the same bin we put them in.
9737 * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
9738 (gst_subparse_buffer_format_autodetect),
9739 (gst_subparse_change_state):
9740 Fix some memleaks and invalid accesses.
9741 * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
9742 (oggskel_type_find), (cmml_type_find), (plugin_init):
9743 Some typefind functions for Annodex v3.0 files
9744 * gst/wavparse/gstwavparse.h:
9745 GstRiffReadClass is the correct parent class.
9747 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9749 * gst-libs/gst/riff/riff-media.c:
9750 (gst_riff_create_video_caps_with_data):
9751 Add extradata to huffyuv (fixes #165013).
9752 * gst-libs/gst/riff/riff-read.c:
9753 (gst_riff_read_strf_vids_with_data):
9754 Fix extradata extraction if it is in the chunk size.
9756 2005-01-25 Edward Hervey <bilboed@bilboed.com>
9758 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9760 * gst/effectv/gstquark.c: (gst_quarktv_class_init),
9761 (gst_quarktv_change_state), (gst_quarktv_dispose):
9762 Memory free'ing location fix (#164708).
9764 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9766 * gst/playback/gstplaybasebin.c: (group_commit),
9767 (gen_preroll_element), (probe_triggered), (gen_source_element),
9768 (setup_source), (gst_play_base_bin_change_state),
9769 (gst_play_base_bin_add_element):
9770 Don't block for streams.
9771 * gst/playback/gststreaminfo.c: (stream_info_change_state),
9772 (gst_stream_info_set_mute):
9773 Use gst_pad_set_active_recursive.
9775 2005-01-25 Andy Wingo <wingo@pobox.com>
9777 * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
9778 for #ifndef HAVE_XVIDEO.
9780 2005-01-24 Jeffrey C. Ollie
9782 reviewed by: Maciej Katafiasz <mathrick@freedesktop.org>
9784 * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
9785 * ext/gsm/gstgsmdec.h:
9786 * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
9787 * ext/gsm/gstgsmenc.h:
9788 Fix rate to 8kHz as per spec, removes obscure errors when no rate
9789 was given by property. Add proper buffer timestamps and offsets.
9791 2005-01-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9793 * gst-libs/gst/riff/riff-media.c:
9794 (gst_riff_create_audio_caps_with_data):
9795 Audio can be <8000Hz.
9797 2005-01-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9799 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
9800 Explicit state change to workaround refcount bugs.
9802 2005-01-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9804 * gst/avi/gstavimux.c: (gst_avimux_write_tag),
9805 (gst_avimux_riff_get_avi_header):
9808 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9810 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
9811 (gst_riff_read_element_data):
9812 * gst-libs/gst/riff/riff-read.h:
9813 Add _peek version (req'ed in CDXA).
9814 * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
9815 (gst_cdxaparse_loop):
9816 Fix parsing in playbin.
9817 * gst/playback/gstdecodebin.c: (close_pad_link):
9818 Ignore current_ pads, they cause major annoyance.
9820 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9822 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
9825 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9827 * gst/avi/gstavimux.c: (gst_avimux_write_tag):
9830 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9832 * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
9833 Allow for 0-sized buffers. Fixes length query problems in
9834 starwars.mkv from the testsuite.
9836 2005-01-19 Tim-Philipp M??ller <tim at centricular dot net>
9838 * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
9839 (gst_video_box_i420), (gst_video_box_chain):
9840 Fix row strides for I420 (fixes #163159)
9842 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9844 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
9845 MPEG2 has a useful rate property, so we can actually use that.
9846 For MPEG-1, continue using the bytes/time properties.
9848 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9850 * gst-libs/gst/riff/riff-media.c:
9851 (gst_riff_create_video_caps_with_data),
9852 (gst_riff_create_video_template_caps):
9855 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9857 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
9858 Fail if caps negotiation fails. Should fix #162184, and should
9859 definately be in there regardless of it fixing the actual bug.
9860 * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
9861 (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
9862 (gst_avimux_riff_get_avix_header),
9863 (gst_avimux_riff_get_video_header),
9864 (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
9865 (gst_avimux_start_file), (gst_avimux_handle_event),
9866 (gst_avimux_change_state):
9867 * gst/avi/gstavimux.h:
9868 Refactor structure writing to use GST_WRITE_UINT macros, add
9869 metadata writing support.
9871 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9873 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
9874 Elements may already be destroyed when this function is called.
9876 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9878 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
9879 (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
9880 More memory leak fixes (#149162).
9882 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9884 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
9885 (gst_qtdemux_add_stream):
9888 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9890 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
9893 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9895 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
9896 Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
9897 when fixating to six channels in Totem.
9899 2005-01-17 Tim-Philipp M??ller <tim at centricular dot net>
9901 * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
9902 Fix compile warnings on Solaris 10 buildbot
9904 2005-01-17 Tim-Philipp M??ller <tim at centricular dot net>
9906 * ext/dvdread/dvdreadsrc.c: (_read):
9907 Don't read beyond the last cell in a chapter (fixes
9908 invalid memory access)
9910 2005-01-17 Tim-Philipp M??ller <tim at centricular dot net>
9912 * ext/dvdread/stream_labels.c:
9913 (dvdreadsrc_get_audio_stream_labels):
9914 Use NULL for an empty GList instead of g_list_alloc(); fix
9915 memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead
9916 of GString (easier to bulk free later)
9918 2005-01-17 Gergely Nagy <algernon@bonehunter.rulez.org>
9920 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9922 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9923 (gst_ffmpeg_pixfmt_to_caps):
9924 Fix BGRA32 caps (#164209).
9926 2005-01-17 Gergely Nagy <algernon@bonehunter.rulez.org>
9928 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9930 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9931 (gst_ffmpeg_caps_to_pixfmt):
9932 alpha_mask can be RGBA/ABGR. Fixes #164265.
9934 2005-01-17 Francis Labonte <francis_labonte@hotmail.com>
9936 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9938 * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
9939 (gst_mpeg2dec_alloc_buffer):
9940 * ext/mpeg2dec/gstmpeg2dec.h:
9941 Crop if decoding size is not the actual image size (#163676).
9943 2005-01-17 Steve Baker <steve@stevebaker.org>
9945 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9947 * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
9948 (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
9949 Add libsndfile typefind functions (#163309).
9951 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9953 * tools/gst-launch-ext-m.m:
9954 Add .aac, fix .m1v/.m2v (#163891).
9956 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9958 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
9959 Sanity check, don't wait endlessly since the clock might not
9960 actually run at this point (which is a deadlock). Fixes #164069.
9962 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9964 * gst/playback/gstplaybasebin.c: (probe_triggered):
9965 Of course, only pause if group is done...
9967 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9969 * gst/playback/gstplaybasebin.c: (probe_triggered):
9972 2005-01-16 Jan Schmidt <thaytan@mad.scientist.com>
9974 * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
9975 Don't return state change success when the parent
9978 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9980 * gst/avi/gstavimux.c: (gst_avimux_handle_event):
9981 Free events (fix memleak in #162905).
9983 2005-01-15 Gergely Nagy <algernon@bonehunter.rulez.org>
9985 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9987 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9988 (gst_ffmpeg_caps_to_pixfmt):
9989 Fix for depth = 15. Fixes #161675.
9991 2005-01-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9993 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
9994 Set FPS correctly, even for webcams and the like.
9995 * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
9996 Don error on setting while capturing.
9998 2005-01-14 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
10000 * ext/dv/gstdvdec.c:
10001 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
10002 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
10003 I'm a bad boy. using /1001. to force C to do float division
10004 and not integer division (as it did in my last commit)
10005 Thanks to David I. Lehn for pointing this mistake.
10007 2005-01-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10009 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
10010 Revert Johan??s 1.35->1.36 since it breaks compat.
10012 2005-01-14 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
10014 * ext/dv/gstdvdec.c:
10015 * ext/libfame/gstlibfame.c:
10016 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
10017 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
10018 replace framerate aproximations by their real value
10019 (24000/1001, 30000/1001, 60000/1001)
10020 Finish fixing bug #164049
10022 2005-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
10024 * ext/ogg/gstoggmux.c:
10026 * gst/tcp/gstmultifdsink.c:
10027 * gst/tcp/gstmultifdsink.h:
10028 * gst/tcp/gsttcp.c:
10029 * gst/tcp/gsttcp.h:
10030 * gst/tcp/gsttcpclientsink.c:
10031 * gst/tcp/gsttcpclientsrc.c:
10032 * gst/tcp/gsttcpserversink.c:
10033 * gst/tcp/gsttcpserversrc.c:
10034 improve reusability of elements after state changes and errors
10035 make multifdsink throw away streamheaders when receiving new ones
10037 2005-01-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10039 * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
10040 Fix for if items are already in list...
10042 2005-01-12 Benjamin Otte <otte@gnome.org>
10044 * gst/adder/gstadder.c: (gst_adder_loop):
10045 fix adder a bit so it doesn't screw up with events as much anymore
10047 2005-01-12 Jan Schmidt <thaytan@mad.scientist.com>
10049 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
10050 (pixbufscale_scale), (gst_pixbufscale_chain):
10051 * ext/gdk_pixbuf/pixbufscale.h:
10052 Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
10053 to ensure rowstrides are calculated the same way as
10055 Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
10056 that we pick up duration and offset also.
10058 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10060 * gst/avi/gstavimux.c: (gst_avimux_class_init),
10061 (gst_avimux_pad_unlink), (gst_avimux_release_pad):
10064 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10066 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
10067 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
10068 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
10069 (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
10070 Update flags when requested.
10072 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10074 * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
10077 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10079 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
10080 (gst_play_base_bin_init), (gst_play_base_bin_dispose),
10081 (probe_triggered), (new_decoded_pad), (gen_source_element),
10082 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
10083 * gst/playback/gstplaybasebin.h:
10084 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
10085 (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
10086 (gst_play_bin_change_state):
10087 Implement group-switch signal for use in apps to clear metadata
10088 cache, clean up subtitle, add suburi property instead of # hack,
10089 some error-out fixes.
10091 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10093 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
10095 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
10096 If we got a state change in the _get handler, don't return success.
10098 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
10100 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
10101 (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
10102 Make jpegdec quiet on MJPEG decoding
10103 * gst/asfdemux/README:
10104 Fix mimetypes for MJPEG and H263
10106 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10108 * ext/theora/theoradec.c: (theora_dec_chain):
10109 Fix broken code generation by gcc by swapping arguments.
10110 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
10113 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
10116 delete this file, it is by far outdated
10117 * ext/alsa/gstalsa.1: remove
10118 * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
10119 (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
10120 (gst_alsa_get_caps):
10121 Add HW probing for supported sample rates. Fixes #161704
10123 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10125 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
10126 Don't crash, biatch! :).
10128 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10130 * ext/musepack/gstmusepackreader.cpp:
10131 * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
10132 Some work on tags - still doesn't work in playbin...
10133 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
10136 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10138 * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
10139 Also shove tags on kid pads.
10141 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10143 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
10144 Don't bail on unknown events.
10145 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
10146 Don't crash on events before negotiation.
10147 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
10148 Send tags on pads, too.
10149 * gst/playback/gststreamselector.c:
10150 (gst_stream_selector_request_new_pad):
10151 Forward events on first pad if no input was selected yet.
10153 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10155 * gst/playback/gstplaybasebin.c: (setup_substreams):
10156 Don't disable streamtype if the stream doesn't exist, since
10157 then playing a video after audio will disable both and nothing
10158 will happen. Fixes the testsuite.
10160 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10162 * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
10163 (gst_v4l_xoverlay_set_xwindow_id):
10164 * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
10165 (gst_v4l2_xoverlay_set_xwindow_id):
10166 Add debug categories, fix overlay disabling.
10168 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
10170 * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
10171 * ext/alsa/gstalsa.h:
10172 Add HW probing for period_count/size and buffer_size MIX/MAX
10173 Adjust default/user defined value if out of bounds
10174 Should fix bug #162024
10176 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10178 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
10179 Fix warning (#161191).
10181 2005-01-09 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
10183 * ext/dvdread/stream_labels.c:
10184 (dvdreadsrc_get_audio_stream_labels):
10185 Fix warning (init the good variable in switch default)
10187 2005-01-09 Koop Mast <kwm@rainbow-runner.nl>
10189 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10191 * gst/tta/gstttaparse.c: (gst_tta_src_event):
10192 Fix gcc-2.95 compile (#163485).
10194 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10197 * ext/flac/gstflacenc.c: (gst_flacenc_init),
10198 (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
10199 (gst_flacenc_tell_callback), (gst_flacenc_chain),
10200 (gst_flacenc_change_state):
10201 * ext/flac/gstflacenc.h:
10202 Update for API change in flac-1.1.1. Update requirement in
10203 configure.ac. Fixes #162974.
10205 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10207 * gst/playback/gstplaybasebin.c: (group_destroy):
10208 Remove hack to get rid of assert and get rid of unlinked
10211 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10213 * gst/playback/gstplaybasebin.c: (setup_source):
10214 Set source to NULL so that resources are free'ed. Fixes issues
10215 with playback of CDDA and similar device-accessing things.
10217 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10219 * testsuite/embed/Makefile.am:
10220 test->noinst, fix make test in buildbot.
10222 2005-01-09 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
10224 * ext/dvdread/stream_labels.c: new file
10225 * ext/dvdread/stream_labels.h: new file
10226 * ext/dvdread/Makefile.am:
10227 * ext/dvdread/dvdreadsrc.c: (_seek_title):
10228 Extract audio stream label from DVD IFO files.
10229 It only dump them on the console for now, still have to
10230 make playbin aware of them.
10232 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10234 * gst/playback/gstplaybasebin.c: (setup_source):
10237 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10239 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
10240 (gen_preroll_element), (remove_groups), (setup_subtitle),
10241 (gen_source_element), (setup_source):
10242 * gst/playback/gstplaybasebin.h:
10243 Multiple .sub files is just a stupid idea... Fix some threading
10244 mistakes. Interestingly, external .sub files cause playbin to
10245 hang, I don't know why... Parsing fixes contributed by Fran??ois
10246 Kooman <fkooman@tuxed.net>.
10248 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10250 * testsuite/embed/Makefile.am:
10253 2005-01-09 Gergely Nagy <algernon@bonehunter.rulez.org>
10255 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10257 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
10258 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
10259 (gst_pngenc_set_property):
10260 * ext/libpng/gstpngenc.h:
10261 Add compression level property (#163323).
10263 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10266 * examples/capsfilter/capsfilter1.c: (main):
10267 * examples/seeking/spider_seek.c: (make_spider_pipeline):
10268 * ext/dvdread/Makefile.am:
10269 * ext/dvdread/demo-play:
10270 * ext/dvdread/demo-play.c:
10271 * gconf/gstreamer.schemas.in:
10272 * gst-libs/gst/gconf/gconf.c:
10274 * testsuite/Makefile.am:
10275 * testsuite/embed/Makefile.am:
10276 * testsuite/embed/embed.c: (cb_expose), (main):
10277 Remove all references to xvideosink, fix examples (#140845).
10278 * gst/playback/gstplaybasebin.c: (group_destroy):
10279 Apparently, disposal does not unlink - so do explicitely.
10280 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
10283 2005-01-09 Maciej Katafiasz <mathrick@freedesktop.org>
10285 * README: fix PKG_CONFIG_PATH instructions, what was there
10286 previously was breaking default search path, not nice.
10289 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10291 * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
10292 (gst_audioscale_chain):
10293 %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
10294 when resampling - how the ^@$^!@^! is this possible?!?
10296 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10298 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
10299 Reset variables on READY.
10300 * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
10301 (gst_matroska_mux_loop):
10302 Require data before writing header.
10304 2005-01-09 Francis Labonte <francis_labonte@hotmail.com>
10306 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10308 * ext/mad/gstmad.c: (gst_mad_chain):
10309 Don't call mad_stream_sync() directly after recovering sync.
10312 2005-01-09 Martin Eikermann <meiker@upb.de>
10314 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10316 * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
10317 (snapshot_handler), (gst_snapshot_sinkconnect),
10318 (gst_snapshot_chain):
10319 Allocate resources when required, fix recursive signal emission
10320 and fix caps. Fixes #161667.
10322 2005-01-09 Gergely Nagy <algernon@bonehunter.rulez.org>
10324 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10326 * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
10327 (gst_pngdec_chain):
10328 Handle only 8-bppc (bits-per-pixel-component) images, better
10329 error handling and correct strides. Fixes #163177.
10330 * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
10331 (gst_pngenc_chain):
10332 Better error handling. Fixes #163348.
10334 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10336 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
10337 (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
10338 (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
10339 (dvdnavsrc_uri_handler_init):
10340 Add DVD-nav URI (dvdnav://) for Totem testing purposes.
10341 * gst/playback/gstplaybasebin.c: (gen_source_element):
10342 Add MMS to streaming URIs.
10344 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10346 * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
10347 * sys/xvimage/xvimagesink.c:
10348 (gst_xvimagesink_navigation_send_event):
10349 Check for pad availability before sending event.
10351 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10353 * gst-plugins.spec.in:
10356 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10359 Since we use functions from CVS, up requirement.
10361 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10363 * gst/playback/Makefile.am:
10364 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
10365 (group_destroy), (group_commit), (group_is_muted),
10366 (gen_preroll_element), (add_stream), (unknown_type),
10367 (probe_triggered), (preroll_unlinked), (mute_stream),
10368 (silence_stream), (new_decoded_pad), (setup_substreams),
10369 (setup_source), (get_active_source), (mute_group_type),
10370 (muted_group_change_state), (set_active_source),
10371 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
10372 (play_base_eos), (gst_play_base_bin_change_state):
10373 * gst/playback/gstplaybasebin.h:
10374 * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
10375 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
10376 (gst_stream_info_dispose), (stream_info_mute_pad),
10377 (stream_info_change_state), (gst_stream_info_set_mute):
10378 * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
10379 (gst_stream_selector_base_init), (gst_stream_selector_class_init),
10380 (gst_stream_selector_init), (gst_stream_selector_dispose),
10381 (gst_stream_selector_get_linked_pad),
10382 (gst_stream_selector_get_caps), (gst_stream_selector_link),
10383 (gst_stream_selector_get_linked_pads),
10384 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
10385 * gst/playback/gststreamselector.h:
10386 Adding stream selection support plus required properties for
10387 applications to use this. Fully fixes #100931.
10389 2005-01-08 Benjamin Otte <otte@gnome.org>
10391 * gst/games/gstpuzzle.c: (nav_event_handler):
10392 - handle nav events differently: forward every event no matter if it
10393 was handled or not.
10395 You can now cheat by using navigationtest ! puzzle and moving the
10396 mouse close to the edge of a tile. ;)
10398 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10401 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
10402 * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
10403 (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
10404 (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
10405 (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
10406 (gst_ogm_parse_plugin_init):
10407 * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
10408 (gst_textoverlay_link), (gst_textoverlay_getcaps),
10409 (gst_textoverlay_event), (gst_textoverlay_video_chain),
10410 (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
10411 * ext/pango/gsttextoverlay.h:
10412 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
10413 (gst_matroska_demux_handle_seek_event),
10414 (gst_matroska_demux_sync_streams),
10415 (gst_matroska_demux_parse_blockgroup),
10416 (gst_matroska_demux_subtitle_caps),
10417 (gst_matroska_demux_plugin_init):
10418 * gst/matroska/matroska-ids.h:
10419 * gst/playback/gstdecodebin.c: (close_pad_link):
10420 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
10421 (gen_preroll_element), (remove_groups), (add_stream),
10422 (new_decoded_pad), (setup_subtitles), (gen_source_element),
10424 * gst/playback/gstplaybasebin.h:
10425 * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
10426 * gst/subparse/Makefile.am:
10427 * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
10428 (gst_subparse_base_init), (gst_subparse_class_init),
10429 (gst_subparse_init), (gst_subparse_formats),
10430 (gst_subparse_eventmask), (gst_subparse_event),
10431 (gst_subparse_handle_event), (convert_encoding), (get_next_line),
10432 (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
10433 (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
10434 (parse_mpsub_deinit), (parse_mpsub_init),
10435 (gst_subparse_buffer_format_autodetect),
10436 (gst_subparse_format_autodetect), (gst_subparse_loop),
10437 (gst_subparse_change_state), (gst_subparse_type_find),
10439 * gst/subparse/gstsubparse.h:
10440 * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
10442 Add subtitle support, .sub parser (supports SRT and MPsub),
10443 OGM text support, Matroska UTF-8 text support, deadlock fixes
10444 all over the place, subtitle awareness in decodebin/playbin
10445 and some fixes to textoverlay to handle subtitles in a stream
10446 correctly. Fixes #100931.
10448 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10450 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
10451 Check for pad availability before doing a query on it.
10453 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
10455 * ext/dv/gstdvdec.c:
10456 really fix bpp24/32 dvdec caps (classic rgba indeed)
10457 * gst/asfdemux/gstasfdemux.c:
10458 (gst_asf_demux_process_ext_content_desc):
10459 don't send text tags if they are empty (bis repetita)
10461 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
10463 * ext/dv/gstdvdec.c:
10464 remove unneeded comment from dvdec
10465 (related to DV 4CC codes in AVI files)
10466 moved them in gstreamer/docs/random/mimetypes
10467 * gst/asfdemux/gstasfdemux.c:
10468 (gst_asf_demux_process_ext_content_desc):
10469 don't send text tags if they are empty
10470 fix mem leak on error path
10471 * gst/ffmpegcolorspace/avcodec.h:
10472 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10473 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
10474 (gst_ffmpegcsp_avpicture_fill):
10475 * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
10476 * gst/ffmpegcolorspace/imgconvert_template.h:
10477 adds BGR32 and BGRA32 to ffmpegcolorspace
10478 (still bad colors, fixing it on next commit)
10479 helps with dvdec outputing BGR32
10481 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
10483 * ext/dv/gstdvdec.c:
10484 Fix audio caps i just broke (missing ',')
10485 * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
10486 (gst_matroska_mux_reset):
10487 Fix typo + add FIXME about old "x-gst-metadata" crap
10489 2005-01-07 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
10491 * ext/dv/demo-play.c: (main):
10492 xvideosink -> xvimagesink
10493 * ext/dv/gstdvdec.c:
10494 change rgb 32/32 caps to 24/32 (no alpha)
10495 change nb of channels to be a list (2 or 4, not 2)
10496 change sample rate to be a list (32, 44.1, 48 kHz) not a range
10497 * gst/asfdemux/gstasfdemux.c:
10498 (gst_asf_demux_process_ext_content_desc):
10499 Add 'date/year' to extracted metadata list
10501 2005-01-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10503 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
10504 The return value of fixate_to does not imply that the requested
10505 value was set, so don't assume.
10507 2005-01-07 Gergely Nagy <algernon@bonehunter.rulez.org>
10509 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10511 * ext/libpng/gstpngdec.c:
10512 * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
10513 (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
10514 * ext/libpng/gstpngenc.h:
10515 Alpha support (encoder; #163161), mime fixage.
10517 2005-01-07 Sebastien Cote <sc5@hermes.usherb.ca>
10519 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10521 * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
10522 (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
10523 (gst_faac_set_property), (gst_faac_get_property):
10524 * ext/faac/gstfaac.h:
10525 Allow for ADTS output (#153434).
10527 2005-01-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10529 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
10530 Fix against template (#150576).
10532 2005-01-06 Benjamin Otte <otte@gnome.org>
10534 * gst/games/gstpuzzle.c: (draw_puzzle):
10535 don't draw a puzzle if either width or height of tiles would be 0.
10537 2005-01-06 Benjamin Otte <otte@gnome.org>
10539 * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
10540 (gst_puzzle_class_init), (gst_puzzle_finalize):
10541 no memleaks, please
10542 (gst_puzzle_create), (gst_puzzle_init),
10543 (gst_puzzle_set_property), (gst_puzzle_setup):
10544 change initialization code around so we don't reshuffle on resize
10546 fix another stupid typo
10548 2005-01-06 Benjamin Otte <otte@gnome.org>
10550 * gst/games/gstvideoimage.c: (copy_hline_YUY2):
10551 fix stupid typo that borked copying on YUY2
10553 2005-01-06 Benjamin Otte <otte@gnome.org>
10555 * gst/games/gstpuzzle.c: (draw_puzzle):
10556 fix edges when image sizes aren't multiples of tile sizes
10558 2005-01-06 Benjamin Otte <otte@gnome.org>
10560 * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
10561 make RGB endianness work correctly
10562 (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
10563 refactor and fix race with initial shuffling
10564 (nav_event_handler):
10565 allow using the mouse to puzzle
10567 insist on tiles having width and height as multiples of 4 to get
10568 clean YUV image handling
10569 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
10570 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
10571 s/DEBUG/LOG/ for common messages
10572 (gst_xvimagesink_navigation_send_event):
10573 fix mouse event translation to not include screen PAR
10574 * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
10575 fix mouse event translation to actually work
10577 2005-01-06 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
10579 * gst/asfdemux/gstasfdemux.c:
10580 (gst_asf_demux_process_ext_content_desc):
10581 Extract TrackNumber metadata + clean up code
10582 * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
10583 Hope this is the good fix (var used unitialised)
10585 2005-01-06 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10587 * ext/faad/gstfaad.c: (gst_faad_chain):
10588 Only increment timestamp if it's valid. Fixes raw AAC streams.
10590 2005-01-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
10593 * gst/games/Makefile.am:
10594 * gst/games/gstpuzzle.c:
10595 add a puzzle game with...
10596 * gst/games/gstvideoimage.c:
10597 * gst/games/gstvideoimage.h:
10598 ... full colorspace support (that includes YUV9 and RGB16)) stolen
10599 from videotestsrc and made into something that would be a nice
10600 library for a lot of other plugins.
10602 2005-01-06 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
10605 don't compile faad plugin if a RC of 2.0 is found
10606 Fixes #155346 (and FC1 buildbot)
10607 * gst/asfdemux/gstasfdemux.c:
10608 (gst_asf_demux_process_ext_content_desc):
10609 try to make Solaris compiler happier
10611 2005-01-06 Paul Jack <pjack@sfaf.org>
10613 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10615 * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
10616 Fix segfault (#161667).
10618 2005-01-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10620 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
10621 Fix framerate reporting.
10623 2005-01-05 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
10625 * gst-libs/gst/riff/riff-ids.h:
10626 * gst/wavenc/riff.h:
10627 Add AMR (VBR and CBR) ids to riff.h audio codec list
10628 * gst/asfdemux/gstasfdemux.c:
10629 (gst_asf_demux_process_ext_content_desc),
10630 (gst_asf_demux_process_object):
10631 Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
10633 2005-01-05 Martin Eikermann <meiker@upb.de>
10635 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10637 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
10638 (gst_dvd_demux_handle_discont):
10639 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
10640 (gst_mpeg_demux_handle_discont):
10641 Recreate pads on new-media (#160730).
10642 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
10643 Send discont even if manager changes timestamps (#161929).
10645 2005-01-05 Sebastien Cote <sc5@hermes.usherb.ca>
10647 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10649 * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
10650 Fix invalid memory access (#159211).
10652 2005-01-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10654 * examples/gstplay/player.c: (main):
10656 * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
10657 Add visualizations.
10658 * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
10659 (gst_a52dec_handle_frame):
10661 * ext/dvdnav/gst-dvd:
10662 Add audioconvert. Fixes #161325.
10663 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
10664 Explicitely case to gint64. Possible valgrind error.
10665 * gst-libs/gst/play/play.c: (caps_set), (setup_size),
10666 (gst_play_tick_callback), (gst_play_change_state),
10667 (gst_play_dispose), (gst_play_init), (gst_play_class_init),
10668 (gst_play_set_location), (gst_play_get_location),
10669 (gst_play_seek_to_time), (gst_play_set_data_src),
10670 (gst_play_set_video_sink), (gst_play_set_audio_sink),
10671 (gst_play_set_visualization), (gst_play_connect_visualization),
10672 (gst_play_get_framerate), (gst_play_get_all_by_interface),
10674 Use playbin. Fixes #139749 and #147744.
10675 * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
10677 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
10678 (audioscale_get_type), (gst_audioscale_base_init),
10679 (gst_audioscale_class_init), (gst_audioscale_expand_caps),
10680 (gst_audioscale_getcaps), (gst_audioscale_fixate),
10681 (gst_audioscale_link), (gst_audioscale_get_buffer),
10682 (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
10683 (gst_audioscale_init), (gst_audioscale_dispose),
10684 (gst_audioscale_chain), (gst_audioscale_set_property),
10685 (gst_audioscale_get_property), (plugin_init):
10687 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
10689 * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
10690 (qtdemux_tag_add_str), (qtdemux_tag_add_num),
10691 (qtdemux_tag_add_gnre), (qtdemux_video_caps):
10692 Add more metadata (fixes #162656).
10694 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
10699 === release 0.8.7 ===
10701 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
10706 releasing 0.8.7, "Hyperspace"
10708 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
10710 patch by: Tim-Philipp M??ller <t.i.m@zen.co.uk>
10712 * gst/playback/gstplaybasebin.c:
10713 Fix for #162924 - free caps after use, not before
10715 2005-01-04 Thomas Vander Stichele <thomas at apestaart dot org>
10717 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
10719 * gst/playback/gstplaybasebin.c:
10720 * gst/wavparse/gstwavparse.c:
10721 Fix for #154773 - fixes playback of small .wav files
10723 2005-01-03 Thomas Vander Stichele <thomas at apestaart dot org>
10725 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
10727 * gst/audioscale/gstaudioscale.c:
10728 Fix for #162819 - make audioscale reusable
10729 Fixes playback of more than one file with playbin/totem
10731 2004-12-29 Thomas Vander Stichele <thomas at apestaart dot org>
10733 * gst/ffmpegcolorspace/avcodec.h:
10734 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10735 * gst/ffmpegcolorspace/imgconvert.c:
10736 clean up the mess that made me cry and avoid needless duplication
10738 2004-12-29 Thomas Vander Stichele <thomas at apestaart dot org>
10740 * gst/ffmpegcolorspace/imgconvert.c:
10741 give some indication of why we're segfaulting
10743 2004-12-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10746 Fix indentation, fix v4l2 plugin detection.
10748 Fix libmms location (Maciej, use diff -u!).
10749 * ext/alsa/gstalsa.c: (gst_alsa_init):
10750 Initialize caps cache to NULL.
10751 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
10752 Only change state on audiosink if it exists.
10754 2004-12-28 Maciej Katafiasz <mathrick@mathrick.org>
10756 * gst/matroska/matroska-demux.c:
10757 * gst/matroska/matroska-ids.h:
10758 * gst/matroska/matroska-demux.h:
10759 Fix Vorbis streams failing to decode in some files, where cluster_time
10760 isn't 0, because then it doesn't send codec_priv before actual data.
10761 Remove time-based test and replace it with marker set on beginning of
10764 2004-12-28 David Schleef <ds@schleef.org>
10766 Merge patch from Ronald fixing problems with streaming
10768 * ext/cairo/gstcairo.c: (plugin_init):
10769 * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
10770 (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
10771 (gst_textoverlay_video_chain), (gst_textoverlay_loop),
10772 (gst_textoverlay_font_init), (gst_textoverlay_init),
10773 (gst_textoverlay_set_property):
10774 * ext/cairo/gsttextoverlay.h:
10776 2004-12-27 David Schleef <ds@schleef.org>
10778 * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
10779 (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
10780 (gst_textoverlay_video_chain), (gst_textoverlay_loop),
10781 (gst_textoverlay_font_init), (gst_textoverlay_init),
10782 (gst_textoverlay_set_property): Improvements to actually
10783 render text as white on black outline on video, including
10784 font selection and horizontal/vertical alignment. (Ronald's
10786 * ext/cairo/gsttextoverlay.h:
10788 2004-12-26 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
10790 * ext/ogg/gstogg.c:
10791 * ext/ogg/gstogmparse.c:
10792 fix ogm[audio/video]parse plugin registration
10793 (riff won't load if bytestream is already loaded)
10795 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
10797 * gst/audioconvert/gstchannelmix.c:
10800 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
10804 disable docs again until it actually passes make distcheck.
10806 2004-12-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10808 * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
10809 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
10811 Add 3GP (variables name Q3GP because they can't start with a
10812 number). Add samr audio fourcc (used in .3gp files), decoder
10813 is work in progress. Also do a GST_WARNING instead of ERROR
10814 in case of unknown nodes, to decrease output.
10816 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
10821 2004-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
10824 * ext/speex/gstspeexdec.h:
10825 * ext/speex/gstspeexenc.h:
10826 Fixes #158382. Make speex plugin compatible with both 1.0 and 1.1.
10827 Fix detection code in configure.ac
10829 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10831 * gst/matroska/matroska-demux.c:
10832 (gst_matroska_demux_parse_blockgroup):
10833 Save position, so that queries give proper return values. Don't
10834 know how this could ever have worked before...
10836 2004-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
10839 Put additional LAME check inside the conditional. Fixes #152339
10841 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10843 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
10844 (gst_avi_demux_stream_scan):
10845 Add some more debug. Fix logic error when setting movi offset
10846 while reading index.
10848 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10850 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
10851 (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
10852 (gst_avi_demux_process_next_entry):
10853 Add some debugging. Better detection of broken indexes and the
10854 accompanying index recovery. No infinite loops on state changes
10855 when we're still in our loopfunction.
10857 2004-12-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10862 2004-12-22 Archana Shah <archana.shah@wipro.com>
10864 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10866 * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
10867 Normalizing the value before setting
10868 (gst_sunaudiomixer_get_volume):
10869 Normalizing the value after getting. Fixes bug# 161980
10871 2004-12-22 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
10873 * Makefile.am: Make sure docs gets disted
10874 * docs/Makefile.am: Make sure all needed files get disted
10875 * gst-plugins.spec.in: latest updates
10877 2004-12-22 Wim Taymans <wim@fluendo.com>
10879 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
10880 Revert patch 1.38 as clock distribution over schedulers does
10881 not work correcly in the core yet.
10883 2004-12-21 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
10885 * sys/oss/README: remove this file, which predates my birth
10886 (and which content is by far outdated)
10888 2004-12-20 Stefan Kost <ensonic@users.sf.net>
10892 * docs/Makefile.am:
10893 * docs/libs/Makefile.am:
10894 * docs/libs/gst-plugins-libs-docs.sgml:
10895 * docs/libs/gst-plugins-libs-sections.txt:
10896 * docs/libs/tmpl/gstgconf.sgml:
10898 * docs/version.entities.in:
10899 Added boilerplate gtk-doc files for plugin-libs documentation.
10901 2004-12-19 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
10903 * gst/auparse/gstauparse.c: fix int and float audio caps
10905 2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10907 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
10908 * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
10909 g_assert() can be a macro, don't use #ifdef inside it.
10911 2004-12-19 Edward Hervey <bilboed@bilboed.com>
10913 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10915 * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
10916 (gst_videorate_init), (gst_videorate_chain),
10917 (gst_videorate_change_state):
10918 Event handling (fixes #159986).
10920 2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10922 * gst-libs/gst/riff/riff-media.c:
10923 (gst_riff_create_video_caps_with_data):
10924 Add BLZ0 (Blizzard's version of DivX) fourcc.
10926 2004-12-18 David Schleef <ds@schleef.org>
10928 * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
10931 2004-12-18 David Schleef <ds@schleef.org>
10933 * gst/tta/ttadec.h: Disable some header code that isn't used
10934 and clearly isn't portable.
10936 2004-12-18 David Schleef <ds@schleef.org>
10938 * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
10939 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
10940 (avcodec_get_pix_fmt), (avpicture_layout),
10941 (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
10942 (get_convert_table_entry), (img_convert), (img_get_alpha_info):
10943 Fix code to not use GCC extensions (and c99 extensions that
10944 Forte does not like.)
10946 2004-12-19 Tim-Philipp M??ller <t.i.m@zen.co.uk>
10948 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10950 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
10951 (gst_deinterlace_chain):
10952 Rowstride fixes. Fixes #161039.
10953 * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
10954 (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
10955 (gst_video_crop_getcaps), (gst_video_crop_link),
10956 (gst_video_crop_i420), (gst_video_crop_chain),
10957 (gst_video_crop_change_state):
10958 Rework of negotiation. Actually works now. Fixes #158650.
10960 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10962 * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
10963 That was very stupid.
10965 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10967 * gst/matroska/matroska-demux.c:
10968 (gst_matroska_demux_parse_blockgroup):
10969 Fix possible crasher.
10971 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10973 * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
10974 (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
10975 Lace sizes can be zero.
10977 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10979 * ext/musepack/gstmusepackdec.cpp:
10980 Fetch error return values. Fixes #161624.
10981 * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
10984 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10986 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
10987 Work for truncated (unfinished download etc.) files. Fixes #160514.
10989 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10991 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
10992 Fix for integer overflow. Makes #156001 not crash. Probably masks
10995 2004-12-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10997 * gst/ac3parse/gstac3parse.c: (plugin_init):
10998 Parsers never have ranks. Fixes #159651.
11000 2004-12-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
11002 * gst/playback/gstdecodebin.c: (compare_ranks):
11003 make sure the facotries are ordered the same every time even if they
11004 have the same rank by using the name
11005 * gst/playback/gstdecodebin.c: (find_compatibles):
11006 make sure we don't add factories to the list twice
11008 2004-12-16 David Schleef <ds@schleef.org>
11010 * configure.ac: look for musepack headers as musepack/*.h
11012 * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
11013 * ext/musepack/gstmusepackreader.h: same
11015 2004-12-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11017 * gst-libs/gst/riff/riff-read.c:
11018 (gst_riff_read_strf_auds_with_data):
11019 Read extradata correctly (fixes #155879).
11021 2004-12-16 David Schleef <ds@schleef.org>
11023 * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
11024 audio. does _not_ attempt or allow conversion unless channels
11027 2004-12-16 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
11029 * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
11031 2004-12-16 David Schleef <ds@schleef.org>
11033 * gst/audioscale/gstaudioscale.c: the resample library only
11034 handles 1 or 2 channels. Change caps to compensate.
11036 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11038 * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
11039 (gst_matroska_demux_audio_caps):
11040 Some MPEG-AAC hacks, because else it doesn't work...
11042 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11044 * gst-libs/gst/riff/riff-media.c:
11045 (gst_riff_create_video_caps_with_data),
11046 (gst_riff_create_video_template_caps):
11049 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11051 * gst-libs/gst/audio/Makefile.am:
11052 Try to fix buildbot.
11054 2004-12-16 Thomas Vander Stichele <thomas at apestaart dot org>
11056 * gst/tcp/gstmultifdsink.c:
11057 Clean up and uniformize debugging.
11059 2004-12-16 Edward Hervey <bilboed@bilboed.com>
11061 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11063 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
11064 (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
11065 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
11066 (gst_mpeg_demux_change_state):
11067 Reset on ready. Fixes 160276.
11069 2004-12-16 Sebastien Cote <sc5@hermes.usherb.ca>
11071 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11073 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11074 (gst_ffmpegcsp_pad_link):
11075 Fix memleak (#154815).
11077 2004-12-16 James Bowes <bowes@cs.dal.ca>
11079 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11081 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
11082 (gst_musicbrainz_init), (gst_musicbrainz_chain),
11083 (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
11084 * ext/musicbrainz/gsttrm.h:
11085 Add support for using a proxy server when getting a trm id from
11086 the MusicBrainz database (#149613).
11088 2004-12-16 Christophe Fergeau <teuf@gnome.org>
11090 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11092 * gst/playback/gstdecodebin.c: (new_pad), (close_link):
11093 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
11094 Fix memleaks (#157233).
11096 2004-12-16 Sebastien Cote <sc5@hermes.usherb.ca>
11098 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11100 * gst-libs/gst/resample/resample.c: (gst_resample_close):
11101 * gst-libs/gst/resample/resample.h:
11102 * gst/audioscale/gstaudioscale.c:
11103 Fix memleak (#159215).
11105 2004-12-16 Toni Willberg <toniw@iki.fi>
11107 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11109 * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
11110 * sys/oss/oss_probe.c: (main):
11111 Check for mono/stereo support (similar to samplerate probing),
11112 fixes #159433. Also add missing copyright header to oss_probe.c.
11114 2004-12-15 David Schleef <ds@schleef.org>
11116 * configure.ac: add audioresample and cairo plugins. Remove
11117 HAVE_MMX stuff, because it's not used.
11118 * ext/Makefile.am: same
11119 * ext/audioresample/Makefile.am: You are not ready for an
11120 audio resampling element based on audioresample.
11121 * ext/audioresample/gstaudioresample.c:
11122 * ext/audioresample/gstaudioresample.h:
11123 * ext/cairo/Makefile.am: You are not ready for overlay elements
11124 based on cairo. Don't look too closely, these elements kinda
11126 * ext/cairo/gstcairo.c: new
11127 * ext/cairo/gsttextoverlay.c: new
11128 * ext/cairo/gsttextoverlay.h: new
11129 * ext/cairo/gsttimeoverlay.c: new
11130 * ext/cairo/gsttimeoverlay.h: new
11131 * gst-libs/gst/media-info/media-info-priv.h: fix compile
11132 problem with compilers that don't support variadic macros.
11134 2004-12-15 Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
11136 Reviewed by: David Schleef <ds@schleef.org>
11138 * sys/sunaudio/gstsunaudio.c: (plugin_init): Apply patch from
11139 Bala, registering sunaudiosrc (oops!), and cleaning up code a
11140 bit. Also ran indent-gst.
11141 * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
11142 (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
11143 (gst_sunaudiosrc_setparams):
11145 2004-12-14 David Schleef <ds@schleef.org>
11147 * gst/festival/gstfestival.c: (gst_festival_chain): Set the
11148 output rate to 16000. Should fix #160235.
11150 2004-12-14 Zaheer Abbas Merali <zaheerabbas at merali dot org>
11152 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
11153 Add typefinding for mpeg2 pes streams
11155 2004-12-13 David Schleef <ds@schleef.org>
11157 * configure.ac: Applied patch from bug #143659, making default
11158 sources and sinks OS-dependent (for Solaris), and added code
11160 * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
11162 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
11164 * gst-libs/gst/riff/riff-media.c:
11165 forgot to add h2.64 to avidemux template caps
11167 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
11169 * gst/wavenc/riff.h:
11170 * gst-libs/gst/riff/riff-media.c:
11171 * gst-libs/gst/riff/riff-ids.h:
11172 * gst/avi/gstavimux.c
11173 add 4CC code for VideoSoft h264 in AVI (VSSH)
11175 remove s323 from riff, it's quicktime specific :(
11177 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
11179 * gst/asfdemux/README
11180 * gst/wavenc/riff.h
11181 * gst-libs/gst/riff/riff-ids.h
11182 * gst-libs/gst/riff/riff-media.c
11183 * gst/qtdemux/qtdemux.c:
11184 add new 4CC codes for h263 related codecs
11185 fixes partially bug #155163
11187 2004-12-12 Christian Fredrik Kalager Schaller <christian at fluendo dot com>
11189 * configure.ac: Update polyaudio requirement to 0.7
11190 * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
11192 2004-12-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
11194 * gst/interleave/deinterleave.c:
11195 fix my name's spelling! :)
11197 2004-12-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
11199 * AUTHORS ChangeLog
11200 * gst/auparse/gstauparse.c
11201 * gst/interleave/deinterleave.c
11203 alaw-decode.c alaw-encode.c
11204 mulaw-decode.c mulaw-encode.c
11205 * gst/oneton/gstoneton.c
11207 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
11209 cocoawindow.h cocoawindow.m
11210 osxvideosink.h osxvideosink.m
11212 put the same mail address for Zaheer Abbas Merali everywhere
11214 2004-12-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11216 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
11217 Align by packetsize, and assert that we a packet available before
11218 playing. The first makes webstreams work (they often include
11219 trailing padding data in a packet), the second allows pausing a
11220 ASF stream in totem without getting demux errors afterwards.
11222 2004-12-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11224 * ext/ogg/gstoggdemux.c: (get_relative):
11225 Check for non-NULL before accessing member (end-of-chain).
11227 2004-12-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11229 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
11230 (cdparanoia_set_property), (cdparanoia_get_property):
11231 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
11232 (dvdnavsrc_set_property), (dvdnavsrc_get_property):
11233 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
11234 (dvdreadsrc_init), (dvdreadsrc_set_property),
11235 (dvdreadsrc_get_property):
11236 * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
11237 (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
11238 Synchronize property names where not yet the case. Devices are
11239 now device=X, other versions are deprecated (but still exist).
11240 Also use g_free() unconditionally.
11241 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
11242 (setup_source), (gst_play_base_bin_get_property):
11245 2004-12-09 Thomas Vander Stichele <thomas at apestaart dot org>
11247 * configure.ac: move GCONF macro outside conditional for the am
11248 conditional. Fixes #160439
11250 2004-12-08 David Schleef <ds@schleef.org>
11252 * tools/gst-visualise-m.m: Switch to elements that currently
11255 2004-12-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11257 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
11258 We love wrong commas.
11260 2004-12-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11262 * gst/matroska/matroska-demux.c:
11263 (gst_matroska_demux_handle_src_query):
11264 Don't set DEFAULT, unsupported - makes length display incorrectly
11267 2004-12-07 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
11269 * gst/monoscope/README: remove blurb about files being GPL
11270 * gst/monoscope/gstmonoscope.c: Change license field to LGPL
11271 * gst/monoscope/monoscope.c: Change license to BSD with explanation
11272 monoscope is now effectively LGPL licensed
11274 2004-12-07 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
11276 * gst/monoscope/README: Update information to be more correct
11277 * gst/monoscope/convolve.c: Relicense to LGPL
11278 * gst/monoscope/convolve.h: Relicense to LGPL
11280 2004-12-06 Arwed v. Merkatz <v.merkatz@gmx.net>
11282 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
11283 set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
11284 * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
11285 set default_duration for mpeg1 audio
11287 2004-12-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
11289 * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
11290 * ext/alsa/gstalsa.h:
11291 refactor big chunks of the core caps negotiation code to make it
11292 a lot faster, because people claim it's really slow
11293 (actually, just cache the getcaps when the device is opened)
11295 2004-12-06 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11297 * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
11298 (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
11299 (gst_a52dec_handle_frame), (gst_a52dec_chain),
11300 (gst_a52dec_change_state), (plugin_init):
11301 * ext/a52dec/gsta52dec.h:
11302 Do something useful with timestamps. Make chain-based (since
11303 there's really no reason to be loopbased).
11304 * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
11305 Update current_byte/frame correctly.
11307 2004-12-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11309 * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
11310 (gst_ape_demux_stream_init):
11313 2004-12-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11315 * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
11316 Let's make sure we're done typefinding when detecting tags.
11318 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11320 * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
11321 (gst_ebml_read_init), (gst_ebml_read_use_event),
11322 (gst_ebml_read_element_id), (gst_ebml_peek_id),
11323 (gst_ebml_read_seek), (gst_ebml_read_skip),
11324 (gst_ebml_read_reserve), (gst_ebml_read_buffer),
11325 (gst_ebml_read_master):
11326 * gst/matroska/ebml-read.h:
11327 * gst/matroska/matroska-demux.c:
11328 (gst_matroska_demux_parse_contents),
11329 (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
11330 Disgustingly evil hack for working around INTERRUPT events and
11331 their extremely annoying habit of being a pain in the ass. We
11332 simply peek a cluster before reading any of it.
11334 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11336 * ext/musepack/gstmusepackdec.cpp:
11337 There's also floating point libmusepacks.
11339 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11341 * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
11342 (gst_faad_chanpos_to_gst), (gst_faad_chain):
11343 Set DURATION even if source buffer didn't. Also use increasing
11345 * gst-libs/gst/riff/riff-media.c:
11346 (gst_riff_create_audio_caps_with_data):
11347 Block_align can have larger values than 8192.
11349 2004-12-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11351 * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
11352 * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
11353 * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
11354 * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
11357 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11359 * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
11362 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11364 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
11367 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11369 * ext/esd/esdsink.c: (gst_esdsink_chain):
11370 Make error actually say something useful (fixes #156798).
11371 * gst-libs/gst/riff/riff-media.c:
11372 (gst_riff_create_video_caps_with_data),
11373 (gst_riff_create_video_template_caps):
11374 Add Intel Video 5.0 fourcc (IV50).
11376 2004-12-01 Christophe Fergeau <teuf@gnome.org>
11378 * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
11379 detection on mono and stereo mp3 files.
11381 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11383 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
11384 Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
11385 the contained stream).
11387 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11389 * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
11390 Oops, remove debug.
11392 2004-12-01 Sebastien Cote <sc5@hermes.usherb.ca>
11394 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11396 * gst/law/alaw-decode.c: (alawdec_getcaps):
11397 * gst/law/mulaw-decode.c: (mulawdec_getcaps):
11398 Prevent warnings when negotiating caps (fixes #159338).
11400 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11402 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11403 (gst_ffmpegcsp_chain):
11404 Remove old leftover that shouldn't be there...
11406 2004-12-01 Sebastien Cote <sc5@hermes.usherb.ca>
11408 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11410 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
11411 Don't forward DISCONT events (fixes #159684).
11413 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11415 * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
11416 Unlink manually since sometimes bin disposal (and therefore
11417 pad unlinking) is delayed, which will cause a new media file
11418 to not be able to start playing instantly.
11420 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11422 * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
11423 On mute of an unlinked stream, check for pad availability so
11424 we don't crash on unlinked pad.
11426 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11428 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
11429 (gst_avi_demux_massage_index):
11430 Fix quite humiliating bug in omitting 0-sized index chunks but
11431 forgetting to count them for timestamps.
11433 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11435 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
11436 Actually leave the loop if we failed to sync. Don't crash.
11438 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11440 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
11441 (gst_dvd_demux_process_private):
11442 * gst/mpegstream/gstdvddemux.h:
11443 Fix crash (#159759). Doesn't work, though. :-(.
11445 2004-11-28 Benjamin Otte <otte@gnome.org>
11447 * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
11448 more overwriting protection due to modifying channels one by one
11449 instead of all at once
11451 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11453 * gst/audioconvert/gstchannelmix.c:
11454 (gst_audio_convert_fill_normalize):
11455 Normalize using absolute values.
11457 2004-11-28 Julien MOUTTE <julien@moutte.net>
11461 * ext/directfb/Makefile.am:
11462 * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
11463 (gst_directfbvideosink_get_pixel_format),
11464 (gst_directfbvideosink_get_format_from_fourcc),
11465 (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
11466 (gst_directfbvideosink_sink_link),
11467 (gst_directfbvideosink_change_state),
11468 (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
11469 (gst_directfbvideosink_buffer_alloc),
11470 (gst_directfbvideosink_interface_supported),
11471 (gst_directfbvideosink_interface_init),
11472 (gst_directfbvideosink_navigation_send_event),
11473 (gst_directfbvideosink_navigation_init),
11474 (gst_directfbvideosink_set_property),
11475 (gst_directfbvideosink_get_property),
11476 (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
11477 (gst_directfbvideosink_base_init),
11478 (gst_directfbvideosink_class_init),
11479 (gst_directfbvideosink_get_type), (plugin_init):
11480 * ext/directfb/directfbvideosink.h: Adding a first version of
11482 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
11485 2004-11-28 Benjamin Otte <otte@gnome.org>
11487 * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
11488 walk the samples backwards if out_channels > in_channels so we don't
11491 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11493 * gst/audioconvert/Makefile.am:
11494 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
11495 (gst_audio_convert_link), (gst_audio_convert_change_state),
11496 (gst_audio_convert_channels):
11497 * gst/audioconvert/gstchannelmix.c:
11498 (gst_audio_convert_unset_matrix),
11499 (gst_audio_convert_fill_identical),
11500 (gst_audio_convert_fill_compatible),
11501 (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
11502 (gst_audio_convert_fill_others),
11503 (gst_audio_convert_fill_normalize),
11504 (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
11505 (gst_audio_convert_passthrough), (gst_audio_convert_mix):
11506 * gst/audioconvert/gstchannelmix.h:
11507 Implement a channel mixer.
11509 2004-11-28 Martin Soto <martinsoto@users.sourceforge.net>
11511 * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
11512 * ext/alsa/gstalsa.h:
11513 * ext/alsa/gstalsa.c (gst_alsa_set_clock):
11514 Make alsasink actually honor gst_element_set_clock and use that
11515 clock instead of its internal one.
11517 2004-11-27 Christophe Fergeau <teuf@gnome.org>
11519 * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
11520 (gst_play_base_bin_change_state): nullify source and decoder when
11521 going from READY to NULL so that we don't try to do weird stuff with
11522 them when going from NULL to READY
11523 * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
11524 instead of g_object_unref
11525 (gen_video_element), (gen_audio_element): more refcounting fixes, now
11526 it should be correct
11527 (gst_play_bin_change_state): don't call remove_sinks if we are
11528 currently disposing the object
11530 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11532 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
11533 Don't forget bass if it's there. Else left channel is silent...
11535 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11537 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
11538 (gst_a52dec_change_state):
11539 Don't do sample adjusting anymore, we use float audio now.
11540 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
11541 Don't fixate to non-existing properties.
11543 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11545 * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
11546 (gst_a52dec_change_state):
11547 Advertise that we can do surround sound.
11549 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11551 * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
11552 Add buffer-frames=0.
11553 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
11554 (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
11555 (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
11556 (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
11557 (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
11558 (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
11559 (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
11560 (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
11561 (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
11562 * ext/dvdread/dvdreadsrc.h:
11563 Add seeking, querying for bytes, sectors, title, angle and
11564 chapter. Handle multiple chapters. Relicense to LGPL because
11565 Billy agreed on that (thanks Billy!).
11567 2004-11-27 Christophe Fergeau <teuf@gnome.org>
11569 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
11570 call parent dispose method
11572 2004-11-27 Martin Soto <martinsoto@users.sourceforge.net>
11574 * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
11575 (gst_audio_clock_get_internal_time):
11576 Fix active <-> inactive transitions: ensure time value always
11577 grows and avoid abrupt value changes.
11579 2004-11-27 Arwed v. Merkatz <v.merkatz@gmx.net>
11582 * gst/tta/Makefile.am:
11584 * gst/tta/filters.h:
11585 * gst/tta/gsttta.c:
11586 * gst/tta/gstttadec.c:
11587 * gst/tta/gstttadec.h:
11588 * gst/tta/gstttaparse.c:
11589 * gst/tta/gstttaparse.h:
11590 * gst/tta/ttadec.h:
11591 added TTA parser and decoder
11593 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11595 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
11596 (probe_triggered), (check_queue), (buffer_underrun),
11597 (buffer_running), (buffer_overrun), (gen_source_element),
11599 * gst/playback/gstplaybasebin.h:
11600 Implement buffering. Needs some more work.
11602 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11604 * ext/theora/theoradec.c: (theora_dec_chain):
11605 Fix ilog mask range overflow.
11607 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11609 * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
11610 Don't omit the last (which in case of dmix is the only :) )
11611 channel count. Don't set channels if <= 2.
11613 2004-11-26 Christophe Fergeau <teuf@gnome.org>
11615 * gst/playback/gstplaybin.c: (gen_video_element),
11616 (gen_audio_element): Removed 2 obsolete comments
11618 2004-11-26 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
11620 * ext/vorbis/oggvorbisenc.c
11621 * ext/vorbis/vorbisenc.c :
11622 change description fields of those plugins to differentiate them
11623 (pitivi show Encoders by description, they had the same one)
11625 2004-11-25 Christophe Fergeau <teuf@gnome.org>
11627 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11629 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
11630 (gst_play_bin_set_property), (gen_video_element),
11631 (gen_audio_element):
11632 Refcounting fixes for provided audio-/videosinks.
11634 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11636 * gst/playback/gstplaybin.c: (gen_video_element),
11637 (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
11638 Don't reference all sinks, but only the video- and audiosinks.
11639 The vis. element should be disposed when we're done with it.
11640 We don't have any reason to keep it around. This fixes warnings
11641 when reusing playbin for playing multiple audio files with
11642 vis. enabled. Also release audio device on pause - idea stolen
11645 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11647 * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
11648 (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
11649 * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
11650 * ext/alsa/gstalsaplugin.c: (plugin_init):
11651 * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
11652 (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
11653 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
11654 (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
11655 (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
11656 (gst_faad_change_state), (plugin_init):
11657 * ext/faad/gstfaad.h:
11658 * ext/vorbis/vorbis.c: (plugin_init):
11659 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
11660 * gst-libs/gst/audio/Makefile.am:
11661 * gst-libs/gst/audio/audio.c: (plugin_init):
11662 * gst-libs/gst/audio/multichannel.c:
11663 (gst_audio_check_channel_positions),
11664 (gst_audio_get_channel_positions),
11665 (gst_audio_set_channel_positions),
11666 (gst_audio_set_structure_channel_positions_list),
11667 (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
11668 (gst_audio_fixate_channel_positions):
11669 * gst-libs/gst/audio/multichannel.h:
11670 * gst-libs/gst/audio/testchannels.c: (main):
11671 * gst/audioconvert/gstaudioconvert.c:
11672 (gst_audio_convert_class_init), (gst_audio_convert_init),
11673 (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
11674 (gst_audio_convert_parse_caps), (gst_audio_convert_link),
11675 (gst_audio_convert_fixate), (gst_audio_convert_channels):
11676 * gst/audioconvert/plugin.c: (plugin_init):
11677 Surround sound support.
11679 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11681 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
11682 Fix position for discont if we're close as well. Nitpicking, but
11683 saves a few milliseconds of extra waiting or skipping.
11685 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11687 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
11688 We sometimes need parsers for playback, so add those too.
11690 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11693 * gst/apetag/Makefile.am:
11694 * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
11695 (gst_ape_demux_base_init), (gst_ape_demux_class_init),
11696 (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
11697 (gst_ape_demux_get_src_query_types),
11698 (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
11699 (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
11700 (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
11701 (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
11702 (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
11703 (gst_ape_demux_stream_data), (gst_ape_demux_loop),
11704 (gst_ape_demux_change_state):
11705 * gst/apetag/apedemux.h:
11706 * gst/apetag/apetag.c: (plugin_init):
11707 * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
11709 APE v1/2 tag reader plus typefind function.
11711 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11714 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
11715 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
11716 Remove hacks for older core. Require newer core version
11719 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11721 * gst/cdxaparse/Makefile.am:
11722 * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
11723 (gst_cdxaparse_class_init), (gst_cdxaparse_init),
11724 (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
11725 * gst/cdxaparse/gstcdxaparse.h:
11726 * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
11727 (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
11728 (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
11729 (gst_cdxastrip_get_src_query_types),
11730 (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
11731 (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
11732 (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
11733 (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
11734 * gst/cdxaparse/gstcdxastrip.h:
11735 SVCD/VCD header stripping separated from CDXA image parsing.
11736 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
11738 Add VCD/SVCD header typefinding for VCD/SVCD.
11739 * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
11740 (gst_vcdsrc_class_init), (gst_vcdsrc_init),
11741 (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
11742 (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
11743 (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
11744 (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
11745 (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
11746 (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
11747 (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
11748 (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
11749 (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
11750 * sys/vcd/vcdsrc.h:
11751 Fix up, add seeking, querying, URI interface. Works in totem now.
11753 2004-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
11758 === release 0.8.6 ===
11760 2004-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
11778 releasing 0.8.6, "IOU Love"
11780 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
11782 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
11784 * gst/playback/gstplaybasebin.c:
11785 Fix unplayable files error handling. Fixes #158365
11787 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
11789 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
11791 * gst/typefind/gsttypefindfunctions.c:
11792 Fix broken mp3 typefinding. Fixes #158375
11794 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
11796 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
11798 * ext/ogg/gstoggdemux.c:
11799 Fix sync on broken files. Fixes #158976
11801 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
11803 patch by: Edward Hervey <bilboed@bilboed.com>
11805 * ext/libpng/gstpngenc.c:
11806 Copy over buffer properties. Fixes #158832
11808 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
11810 patch by: Tim-Philipp M??ller <t.i.m@zen.co.uk>
11812 * ext/dvdread/dvdreadsrc.c:
11813 Fixes invalid reads (#158462)
11815 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
11817 * sys/v4l/gstv4lsrc.c:
11818 * sys/v4l/gstv4lsrc.h:
11819 * sys/v4l/v4lsrc_calls.c:
11820 Probe less and cache it. Fixes #159187.
11822 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
11824 * gst/videorate/gstvideorate.c:
11825 Handle all video formats. Fixes #159186.
11827 2004-11-16 Jan Schmidt <thaytan@mad.scientist.com>
11828 * gst/synaesthesia/gstsynaesthesia.c:
11829 (gst_synaesthesia_class_init), (gst_synaesthesia_init),
11830 (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
11831 (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
11832 (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
11833 (gst_synaesthesia_change_state), (plugin_init):
11834 Fix up synaesthesia to work under different samplerates/ buffer sizes.
11835 Force 320x200 output, as that's the only thing the underlying
11836 synaesthesia implementation supports. Still needs to be made
11839 2004-11-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11842 Fix mpeg2enc configure check (similar to mplex check below).
11844 2004-11-14 Koop Mast <kwm@rainbow-runner.nl>
11846 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11848 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11849 Fix for gcc-2.95 (fixes #158221).
11851 2004-11-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11853 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
11854 Re-add clock distribution hack (until new core is released).
11857 2004-11-13 Arwed v. Merkatz <v.merkatz@gmx.net>
11859 fix mplex configure check segfaulting on some systems (bug #140994)
11861 2004-11-13 Benjamin Otte <otte@gnome.org>
11863 * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
11865 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
11866 do a wait when we enter the loop func with no data available to
11867 write instead of getting into an 100% CPU loop by just returning and
11868 being called again by the scheduler
11870 2004-11-13 Jan Schmidt <thaytan@mad.scientist.com>
11873 * ext/libvisual/visual.c: (gst_visual_get_type),
11874 (libvisual_log_handler), (gst_visual_getcaps),
11875 (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
11877 Update libvisual to 0.1.7. Link in the debug handling to gstreamer
11878 * ext/smoothwave/Makefile.am:
11879 * ext/smoothwave/demo-osssrc.c: (main):
11880 * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
11881 (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
11882 (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
11884 * ext/smoothwave/gstsmoothwave.h:
11885 Make gstsmoothwave a working element in the 20th century.
11887 * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
11888 Fix incorrect link function
11890 2004-11-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11892 * gst/volume/gstvolume.c:
11893 Allow buffer-frames=0.
11895 2004-11-12 Iain <iaingnome@gmail.com>
11897 * configure.ac: Check for polypaudio
11899 * ext/Makefile.am: Build the polyp dir
11901 * ext/polyp: The polypsink sources.
11903 2004-10-30 Iain <iaingnome@gmail.com>
11905 * gst/interleave/interleave.c (interleave_unlink): Change the src pads
11906 caps to reflect the new number of channels.
11908 2004-11-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11910 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
11911 Fix for negotiation order problem. This would show when the
11912 ALSA loopfuction was called before any other function. ALSA
11913 wouldn't do anything because we're not negotiated yet, leading
11914 to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
11916 2004-11-11 Tim-Philipp M??ller <t.i.m@zen.co.uk>
11918 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11920 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
11921 No warnings (#157986).
11923 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11925 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
11926 Prefer apev1/2 and id3v1 (at end of file) over musepack.
11928 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11930 * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
11931 Signal no-more-pads (so it works in playbin).
11933 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11935 * ext/musepack/gstmusepackreader.cpp:
11936 Workaround for older core.
11938 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11940 * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
11941 Actually test for odd width/height rather than testing whether
11942 a temporary variable that was 0 before we subtracted 1 is now
11943 not equal to zero (which it always is).
11945 2004-11-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
11947 * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
11948 Fix compilation if HAVE_XVIDEO is not defined
11950 2004-11-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
11952 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
11953 Fix compilation if HAVE_XVIDEO is not defined
11955 2004-11-11 Jan Schmidt <thaytan@mad.scientist.com>
11957 * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
11958 (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
11959 (gst_goom_change_state), (plugin_init):
11960 Use the bytestream adapter so goom doesn't depend on the input
11962 Add a debug category
11964 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11966 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
11967 Only set hardware parameters *after* negotiation. Before
11968 negotiation, it will set ANY and that seems to cause crashes
11969 (see e.g. #151288, #153227).
11971 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11973 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
11974 This seems to be antique leftover. It needs to pass error
11976 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
11977 (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
11978 (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
11979 (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
11980 Fix GstXOverlay implementation (#151059).
11982 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11984 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
11985 Don't assert (#157853).
11987 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11989 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
11990 Fix bytes/samples confustion.
11991 (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
11992 Fix for underrun (#144389).
11994 2004-11-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11996 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
11997 Disable halfway-seek for pending release (since it needs a new
12000 2004-11-09 Thomas Vander Stichele <thomas at apestaart dot org>
12002 * sys/v4l/gstv4lsrc.c:
12003 * sys/v4l/gstv4lsrc.h:
12004 * sys/v4l/v4lsrc_calls.c:
12005 add autoprobe-fps property so we can separate autoprobing parts
12007 2004-11-09 Thomas Vander Stichele <thomas at apestaart dot org>
12009 * sys/v4l/gstv4lsrc.c:
12010 * sys/v4l/v4lsrc_calls.c:
12011 initialise fourcc to catch unset fourcc's, and debug
12013 2004-11-09 Wim Taymans <wim@fluendo.com>
12015 * gst/playback/README:
12016 * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
12017 * gst/playback/gstplaybin.c: (gst_play_bin_init),
12018 (gst_play_bin_dispose), (gst_play_bin_set_property),
12019 (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
12020 (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
12021 (gst_play_bin_get_formats), (gst_play_bin_convert),
12022 (gst_play_bin_get_query_types), (gst_play_bin_query):
12023 Cleanups and some more documentation.
12025 2004-11-09 Jan Schmidt <thaytan@mad.scientist.com>
12027 * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
12028 (gst_cacasink_init), (gst_cacasink_chain):
12029 * ext/libcaca/gstcacasink.h:
12030 Cacasink inherits from VideoSink, so let that store the clock.
12032 2004-11-09 Wim Taymans <wim@fluendo.com>
12034 * gst/playback/README:
12035 * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
12036 (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
12037 (probe_triggered), (preroll_unlinked), (new_decoded_pad),
12038 (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
12039 * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
12041 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
12042 (gst_stream_info_is_mute), (gst_stream_info_set_property):
12043 * gst/playback/gststreaminfo.h:
12045 Only switch groups if all streams have muted (EOSed).
12046 Send Tags in sync with the stream playback instead of in
12047 the playback/preroll phase.
12048 Some cleanups, free the fakesrc elements.
12050 2004-11-09 Benjamin Otte <in7y118@public.uni-hamburg.de>
12052 * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
12053 buffer-frames property was missing
12054 * ext/arts/gst_arts.c:
12055 rate missing from sinkcaps
12056 * ext/audiofile/gstafparse.c:
12057 * ext/audiofile/gstafsink.c:
12058 * ext/audiofile/gstafsrc.c:
12059 * ext/swfdec/gstswfdec.c:
12060 int audio doesn't know buffer-frames
12061 * ext/cdparanoia/gstcdparanoia.c:
12062 int audio doesn't know chunksize either
12063 * ext/nas/nassink.c:
12064 it's endianness, not endianess
12065 * gst-libs/gst/audio/audio.h:
12066 make float standard pad template caps really describe float
12067 * gst/law/mulaw.c: (linear_factory):
12068 signed only, please
12069 * gst/mpegstream/gstdvddemux.c:
12070 widths of 20 are not valid
12072 2004-11-08 Thomas Vander Stichele <thomas at apestaart dot org>
12074 Submitted by: Luca Ferretti <elle.uca@infinito.it>
12080 2004-11-08 Wim Taymans <wim@fluendo.com>
12082 * gst/playback/README:
12083 * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
12084 * gst/playback/gstplaybasebin.c: (probe_triggered),
12085 (gst_play_base_bin_change_state):
12086 Updated README, added more comments for fixmes etc..
12088 2004-11-08 Wim Taymans <wim@fluendo.com>
12090 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
12091 We can remove this hack now.
12093 2004-11-08 Wim Taymans <wim@fluendo.com>
12095 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
12096 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
12097 (gst_videomixer_blend_buffers), (gst_videomixer_loop):
12098 Only mix AYUV for maximum quality.
12100 2004-11-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12102 * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
12103 (gst_ogg_demux_push), (gst_ogg_pad_push):
12104 Let's act as if we're synchronized now! :).
12105 * ext/theora/theoradec.c: (theora_dec_chain):
12108 2004-11-08 Wim Taymans <wim@fluendo.com>
12110 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
12111 (gst_alpha_set_property), (gst_alpha_sink_link),
12112 (gst_alpha_set_ayuv), (gst_alpha_set_i420),
12113 (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
12114 (gst_alpha_init_params), (gst_alpha_chain):
12115 Implement alpha functions for AYUV too, this increases
12116 accuracy quite a bit.
12118 2004-11-08 Wim Taymans <wim@fluendo.com>
12120 * gst/ffmpegcolorspace/avcodec.h:
12121 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12122 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
12123 (gst_ffmpegcsp_avpicture_fill):
12124 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12125 (gst_ffmpegcsp_caps_remove_format_info):
12126 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
12127 (shrink12), (img_get_alpha_info), (deinterlace_line),
12128 (deinterlace_line_inplace):
12129 * gst/ffmpegcolorspace/imgconvert_template.h:
12130 Added AYUV colorspace and handle RGBA a bit more respectful.
12132 2004-11-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12134 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
12135 Actually always send a discont (cornercase when resending the
12136 same serial-tagged chain twice).
12138 2004-11-08 Julien MOUTTE <julien@moutte.net>
12140 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
12141 (gst_ximagesink_finalize):
12142 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
12143 (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
12145 2004-11-08 Wim Taymans <wim@fluendo.com>
12147 * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
12148 Don't segfault on NULL data.
12150 2004-11-08 Wim Taymans <wim@fluendo.com>
12152 * gst/playback/gstdecodebin.c: (unlinked):
12153 * gst/playback/gstplay-marshal.list:
12154 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
12155 (gst_play_base_bin_init), (group_create), (get_active_group),
12156 (get_building_group), (group_destroy), (group_commit),
12157 (queue_overrun), (remove_groups), (add_stream), (unknown_type),
12158 (add_element_stream), (no_more_pads), (probe_triggered),
12159 (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
12160 (state_change), (setup_source), (gst_play_base_bin_get_property),
12161 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
12162 (gst_play_base_bin_link_stream),
12163 (gst_play_base_bin_get_streaminfo):
12164 * gst/playback/gstplaybasebin.h:
12165 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
12166 (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
12167 Add support for chained ogg files. Prepare for playlist
12168 support. This patch introduces the concept of pad groups, which
12169 together compose one playable media file.
12171 2004-11-07 David Schleef <ds@schleef.org>
12173 * testsuite/gst-lint: Check for pad templates that aren't statically
12176 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12180 * ext/musepack/Makefile.am:
12181 * ext/musepack/gstmusepackdec.cpp:
12182 * ext/musepack/gstmusepackdec.h:
12183 * ext/musepack/gstmusepackreader.cpp:
12184 * ext/musepack/gstmusepackreader.h:
12185 Add musepack decoder.
12186 * ext/faad/gstfaad.c: (gst_faad_base_init):
12187 Make pad templates static.
12188 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
12190 Add musepack typefinder, make mp3 typefinding work halfway stream,
12191 which doesn't actually work yet because id3demux doesn't implement
12194 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12196 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
12197 (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
12198 Fix interrupt event handling (#144436).
12200 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12202 * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
12205 2004-11-06 Tim-Philipp M??ller <t.i.m@zen.co.uk>
12207 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12209 * ext/vorbis/vorbisenc.c: (raw_caps_factory):
12210 Fix weird caps (#157548).
12212 2004-11-06 Tim-Philipp M??ller <t.i.m@zen.co.uk>
12214 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12216 * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
12217 Add missing NULL terminator (#157543).
12219 2004-11-05 Thomas Vander Stichele <thomas at apestaart dot org>
12221 * gst/tcp/gsttcp.h:
12222 * gst/tcp/gsttcpclientsink.c:
12223 * gst/tcp/gsttcpclientsrc.c:
12224 * gst/tcp/gsttcpserversink.c:
12225 * gst/tcp/gsttcpserversrc.c:
12226 ports can go up to 65535. Move common defines to gsttcp.h
12228 2004-11-05 Wim Taymans <wim@fluendo.com>
12230 * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
12231 (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
12232 Added two more colorspaces.
12234 2004-11-05 Wim Taymans <wim@fluendo.com>
12236 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12237 (gst_ffmpegcsp_avpicture_fill):
12238 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
12239 (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
12240 (img_convert), (deinterlace_line), (deinterlace_line_inplace):
12243 2004-11-05 Wim Taymans <wim@fluendo.com>
12245 * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
12246 (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
12247 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
12248 (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
12249 (gst_videomixer_loop):
12252 2004-11-05 Benjamin Otte <otte@gnome.org>
12254 * ext/mad/gstmad.c: (gst_mad_chain):
12255 don't overflow data buffer. Flush not needed sync data when syncing
12258 2004-11-04 Wim Taymans <wim@fluendo.com>
12260 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
12261 (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
12262 (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
12263 (gst_alpha_init_params), (gst_alpha_chain),
12264 (gst_alpha_change_state):
12265 Updated the chroma keying algorithm with something more
12268 2004-11-03 Wim Taymans <wim@fluendo.com>
12270 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
12271 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
12272 (gst_videomixer_blend_buffers), (gst_videomixer_loop):
12273 Fix stride issues. Does not completely work for odd
12276 2004-11-03 Wim Taymans <wim@fluendo.com>
12278 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
12279 (gst_alpha_chroma_key), (gst_alpha_chain):
12280 Fix stride issues. Does not completely work for odd
12283 2004-11-03 Christophe Fergeau <teuf@gnome.org>
12285 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
12286 * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
12289 2004-11-03 Wim Taymans <wim@fluendo.com>
12291 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12292 (gst_ffmpegcsp_avpicture_fill):
12293 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
12295 * gst/ffmpegcolorspace/imgconvert_template.h:
12296 Use correct _fill function to get correct strides.
12298 2004-11-02 David Schleef <ds@schleef.org>
12300 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
12301 (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
12302 (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
12303 Change all g_print()s to debugging. Add a bunch of consistency
12306 2004-11-02 Wim Taymans <wim@fluendo.com>
12308 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
12309 (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
12310 (unlinked), (no_more_pads), (close_link):
12311 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
12312 (unknown_type), (add_element_stream), (new_decoded_pad),
12313 (removed_decoded_pad), (setup_source):
12314 * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
12315 (gst_stream_info_class_init), (gst_stream_info_init),
12316 (gst_stream_info_new), (gst_stream_info_dispose),
12317 (stream_info_mute_pad), (gst_stream_info_set_property),
12318 (gst_stream_info_get_property):
12319 * gst/playback/gststreaminfo.h:
12320 Fix playback of multiple files.
12321 a slightly different approach to handling dynamic pad removals.
12322 This one only looks at pads that we have linked.
12324 2004-11-01 Christophe Fergeau <teuf@gnome.org>
12326 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
12327 free" warning from libc.
12329 2004-11-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12331 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
12332 (get_unconnected_element), (remove_starting_from), (pad_removed),
12334 Implement support for dynamic pad changing. We listen to "live"
12335 pad removals (i.e. while playing) and re-setup autoplugging
12336 after that. Playbasebin/playbin need some more work for this
12337 to finally work, but decodebin supports (and replugs) chained
12340 2004-11-02 Jan Schmidt <thaytan@mad.scientist.com>
12342 * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
12343 (gst_alsa_finalize):
12344 * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
12345 (gst_cdaudio_finalize):
12346 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
12347 (cdparanoia_finalize):
12348 * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
12349 * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
12350 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
12351 (dvdreadsrc_finalize):
12352 * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
12353 (gst_flacdec_finalize):
12354 * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
12355 (gst_flacenc_finalize):
12356 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
12357 (gst_gnomevfssink_finalize):
12358 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
12359 (gst_gnomevfssrc_finalize):
12360 * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
12361 (gst_fameenc_finalize):
12362 * ext/nas/nassink.c: (gst_nassink_class_init),
12363 (gst_nassink_finalize):
12364 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
12365 (gst_sdlvideosink_class_init):
12366 * ext/sndfile/gstsf.c: (gst_sf_dispose):
12367 * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
12368 * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
12369 * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
12370 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
12371 (gst_x_window_listener_dispose):
12372 * gst/audioscale/gstaudioscale.c:
12373 * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
12374 (play_on_demand_finalize):
12375 * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
12376 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
12377 * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
12378 (cdplayer_finalize):
12379 * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
12380 (gst_glimagesink_class_init):
12381 * sys/oss/gstosselement.c: (gst_osselement_class_init),
12382 (gst_osselement_finalize):
12383 * sys/oss/gstosssink.c: (gst_osssink_dispose):
12384 * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
12385 * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
12386 Fixes a bunch of problems with finalize and dispose functions,
12387 either assumptions that dispose is only called once, or not calling
12388 the parent class dispose/finalize function
12390 2004-11-01 Stefan Kost <ensonic@users.sf.net>
12392 * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
12393 added two api precondition guards
12394 use g_strdup with getenv to fix crash when using ENVVAR
12396 2004-11-01 Jan Schmidt <thaytan@mad.scientist.com>
12397 * ext/esd/esdsink.c: (gst_esdsink_class_init),
12398 (gst_esdsink_finalize):
12399 Use a finalize function, not dispose, and more importantly,
12400 call the parent class finalize function too
12402 2004-11-01 Johan Dahlin <johan@gnome.org>
12404 * ext/ogg/gstoggdemux.c:
12405 * gst/tags/gstvorbistag.c:
12408 2004-10-31 Benjamin Otte <otte@gnome.org>
12410 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
12411 lotsa memleaks today. But they're all small...
12413 2004-10-31 Benjamin Otte <otte@gnome.org>
12415 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
12416 another memleak crushed
12418 2004-10-31 Benjamin Otte <otte@gnome.org>
12420 * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
12423 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12425 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
12426 Hack to prevent crash when going to READY inside signal handler
12427 while this function is active.
12429 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12431 * gst/ffmpegcolorspace/Makefile.am:
12432 * gst/ffmpegcolorspace/avcodec.h:
12433 * gst/ffmpegcolorspace/common.h:
12434 * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
12435 * gst/ffmpegcolorspace/dsputil.h:
12436 * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
12437 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12438 (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
12439 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
12440 (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
12441 (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
12442 (gst_ffmpegcsp_avpicture_fill):
12443 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
12444 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12445 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
12446 (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
12447 (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
12448 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
12449 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
12450 (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
12451 * gst/ffmpegcolorspace/imgconvert.c:
12452 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
12453 (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
12454 (avpicture_get_size), (avcodec_get_pix_fmt_loss),
12455 (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
12456 (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
12457 (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
12458 (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
12459 (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
12460 (img_convert_init), (img_apply_table), (shrink41), (shrink21),
12461 (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
12462 (grow21), (grow22), (grow41), (grow44), (conv411),
12463 (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
12464 (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
12465 (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
12466 (avpicture_free), (is_yuv_planar), (img_convert),
12467 (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
12468 (deinterlace_line_inplace), (deinterlace_bottom_field),
12469 (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
12470 * gst/ffmpegcolorspace/imgconvert_template.h:
12471 * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
12472 * gst/ffmpegcolorspace/mmx.h:
12473 * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
12474 (av_fast_realloc), (av_mallocz_static), (av_free_static),
12475 (av_freep), (avcodec_get_context_defaults),
12476 (avcodec_alloc_context), (avcodec_init):
12477 Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
12478 handling plus update from ffmpeg CVS. Large clean-up.
12480 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12482 * gst/playback/Makefile.am:
12483 We need the marshallers for decodebin, too.
12485 2004-10-30 David Schleef <ds@schleef.org>
12487 * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
12488 quicktime typefinding work with 64-bit offsets.
12490 2004-10-30 Jan Schmidt <thaytan@mad.scientist.com>
12492 * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
12493 Set EOS on the element when processing an EOS event.
12494 * ext/speex/gstspeexdec.h:
12495 * ext/speex/gstspeexenc.h:
12496 Only keep a const ptr to the mode
12497 * gst-libs/gst/riff/riff-media.c:
12498 (gst_riff_create_audio_caps_with_data),
12499 (gst_riff_create_audio_template_caps):
12500 Allow WMAV3, with up to 6 channels.
12501 * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
12502 Don't call gst_pad_set_event_function on a sink pad.
12503 * gst/mpegstream/gstdvddemux.c:
12504 (gst_dvd_demux_get_subpicture_stream),
12505 (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
12506 Copy the explicit caps that were set across to the cur_* pads,
12507 instead of trying to use a possibly non-existent negotiated caps.
12508 Reset the type of subpicture pads to UNKNOWN after calling
12509 init_stream, so that the caps get set.
12511 2004-10-29 Martin Pitt <martin.pitt@canonical.com>
12513 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12515 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
12516 Don't touch buffer if it is of size 0 (fixes #151064).
12518 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12520 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
12521 Synchronized discont handling.
12523 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12525 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
12526 (gst_ogg_demux_push):
12527 Make seeking sort-of exact again (fixes #156387).
12529 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12531 * gst/playback/gstplaybasebin.c: (unknown_type),
12532 (add_element_stream), (new_decoded_pad),
12533 (gst_play_base_bin_change_state):
12534 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
12535 (gst_stream_info_init), (gst_stream_info_new),
12536 (gst_stream_info_dispose), (gst_stream_info_get_property):
12537 * gst/playback/gststreaminfo.h:
12538 Make caps explicitely available. Makes testing for unsupported
12539 types possible. Improves error reporting.
12541 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12543 * gst/audioconvert/gstaudioconvert.c:
12544 (gst_audio_convert_buffer_to_default_format):
12545 Really don't touch read-only buffers (#156563).
12547 2004-10-29 Sebastien Cote <sc5@hermes.usherb.ca>
12549 Reviewd by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12551 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
12552 Fix memleak (#155223).
12554 2004-10-29 Wim Taymans <wim@fluendo.com>
12556 * gst/tcp/.cvsignore:
12557 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
12558 (gst_multifdsink_class_init), (gst_multifdsink_init),
12559 (gst_multifdsink_add), (gst_multifdsink_remove),
12560 (gst_multifdsink_remove_client_link), (is_sync_frame),
12561 (gst_multifdsink_new_client),
12562 (gst_multifdsink_handle_client_write),
12563 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
12564 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
12565 (gst_multifdsink_get_property):
12566 * gst/tcp/gstmultifdsink.h:
12567 Added burst on connect sync_method, deprecated sync_clients,
12568 streamlined the sync code some more.
12570 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12572 * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
12573 (gst_play_base_bin_change_state):
12574 Improve error reporting.
12576 2004-10-28 Wim Taymans <wim@fluendo.com>
12578 * gst/tcp/Makefile.am:
12579 * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
12580 * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
12581 (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
12582 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
12583 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
12584 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
12586 Added more locks around fdset structures. Fixed/reworked
12587 the poll array resizing code.
12588 Added stress test for fdset.
12590 2004-10-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
12592 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
12595 2004-10-28 Benjamin Otte <otte@gnome.org>
12597 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
12598 fix link function to always query channels and query width for
12602 * gst/equalizer/Makefile.am:
12603 * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
12604 (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
12605 (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
12606 (arg_to_scale), (setup_filter),
12607 (gst_iir_equalizer_compute_frequencies),
12608 (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
12609 (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
12613 2004-10-27 Thomas Vander Stichele <thomas at apestaart dot org>
12615 Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
12619 Added Norwegian Bokmaal translation
12621 2004-10-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12623 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
12624 Don't break on options (fixes #156488).
12626 2004-10-27 Thomas Vander Stichele <thomas at apestaart dot org>
12629 * ext/cdaudio/Makefile.am:
12631 fix build on older automake
12633 2004-10-26 Wim Taymans <wim@fluendo.com>
12635 * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
12636 (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
12637 Allow a little margin when negotiating the framerate.
12639 2004-10-26 Stefan Kost <ensonic@users.sf.net>
12641 * gst/level/gstlevel.c:
12642 synchonised naming of pads and pad-templates
12644 2004-10-26 Wim Taymans <wim@fluendo.com>
12646 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
12647 (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
12648 (_find_streams_check), (gst_ogg_demux_push):
12649 Fix EOS again. Needs to be done in a better way. We should not
12650 remove the pad if there is no new chained stream.
12652 2004-10-26 Iain <iaingnome@gmail.com>
12654 * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
12655 * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
12657 * gst/interleave/interleave.c (interleave_class_init): Hook up release
12659 (interleave_release_pad): Remove the pad.
12660 * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
12661 * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
12663 * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
12665 (gst_xvimagesink_xcontext_clear): Free the xcontext.
12666 (gst_xvimagesink_finalize): Free the par.
12668 2004-10-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12670 * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
12671 (gst_avimux_stop_file):
12672 First calculate the rate, and only then use it. Hdr.rate is a
12673 multiple and not a derivative of hdr.scale. Scale is not the
12674 same as blockalign but is solely related to rate.
12676 2004-10-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12678 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
12679 (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
12682 2004-10-25 James Henstridge <james@jamesh.id.au>
12684 Reviewed by: David Schleef <ds@schleef.org>
12686 * examples/gstplay/player.c: (got_stream_length), (main):
12687 * examples/seeking/cdplayer.c: (update_scale):
12688 * examples/seeking/seek.c: (format_value), (update_scale):
12689 * examples/seeking/spider_seek.c: (format_value), (update_scale),
12691 Build fixes on AMD64.
12693 2004-10-25 Zaheer Abbas Merali <zaheerabbas at merali dot org>
12695 reviewed by: Ronald Bultje <rbultje at gnome dot org>
12697 * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
12698 Fix for some v4l cards which hang in v4lsrc
12700 2004-10-25 Wim Taymans <wim@fluendo.com>
12702 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
12703 (gst_ogg_demux_push), (gst_ogg_chains_clear):
12704 Make sure to remove the pad when a new chain is
12705 encountered. Set some vars to NULL so we don't try
12706 to reference freed memory.
12708 2004-10-25 Wim Taymans <wim@fluendo.com>
12710 * examples/seeking/Makefile.am:
12711 * examples/seeking/cdplayer.c: (update_scale):
12712 * examples/seeking/chained.c: (unlinked), (new_pad), (main):
12713 * examples/seeking/playbin.c: (make_playerbin_pipeline),
12714 (format_value), (update_scale), (iterate), (start_seek),
12715 (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
12716 (print_usage), (main):
12717 Added some more examples, update others.
12719 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12721 * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
12722 * ext/speex/gstspeexdec.c: (speex_dec_chain):
12723 * ext/theora/theoradec.c: (theora_dec_chain):
12724 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
12725 Add codec-name metadata.
12727 2004-10-25 Takao Fujiwara <Takao.Fujiwara@Sun.COM>
12729 Reviewd by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12731 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
12732 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
12733 * ext/alsa/gstalsamixertrack.h:
12735 ALSA mixer track label internationalization (#154054).
12737 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12739 * ext/theora/theoradec.c: (theora_dec_chain):
12740 Export bitrate as metadata.
12742 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12744 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
12745 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
12746 * ext/alsa/gstalsamixertrack.h:
12747 Fix names, fix loop.
12749 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12751 * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
12752 (speex_dec_convert):
12753 sinkconvert function so oggdemux can get the file length (totem).
12755 2004-10-25 James Morrison <ja2morri@csclub.uwaterloo.ca>
12757 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12759 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
12760 Don't push incomplete packets.
12761 * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
12762 Fix MPEG-4 audio typefinding.
12764 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12766 * sys/v4l/Makefile.am:
12767 * sys/v4l/gstv4l.c: (plugin_init):
12768 * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
12769 (gst_v4lelement_init), (gst_v4lelement_dispose),
12770 (gst_v4lelement_change_state):
12771 * sys/v4l/gstv4lelement.h:
12772 * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
12773 (gst_v4l_xoverlay_close), (idle_refresh),
12774 (gst_v4l_xoverlay_set_xwindow_id):
12775 * sys/v4l/gstv4lxoverlay.h:
12776 * sys/v4l/v4l-overlay_calls.c:
12777 * sys/v4l/v4l_calls.h:
12778 * sys/v4l2/Makefile.am:
12779 * sys/v4l2/gstv4l2.c: (plugin_init):
12780 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
12781 (gst_v4l2element_init), (gst_v4l2element_dispose),
12782 (gst_v4l2element_change_state):
12783 * sys/v4l2/gstv4l2element.h:
12784 * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
12785 (gst_v4l2_xoverlay_close), (idle_refresh),
12786 (gst_v4l2_xoverlay_set_xwindow_id):
12787 * sys/v4l2/gstv4l2xoverlay.h:
12788 * sys/v4l2/v4l2-overlay_calls.c:
12789 * sys/v4l2/v4l2_calls.h:
12790 Remove client-side overlay handling, use the X-server v4l plugin
12791 for that. Nicer overlay, less code. Also make the plugin
12792 compileable without X (but then without overlay, obviously).
12793 Makes xwindowlistener obsolete, should we remove that?
12795 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12797 * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
12798 (gst_osssrc_src_query):
12799 * sys/oss/gstosssrc.h:
12800 OK, so people want offset in DEFAULT. This time, actually fix all
12802 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
12805 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12807 * gst/asfdemux/gstasfmux.c:
12808 * gst/avi/gstavimux.c:
12811 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12813 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
12814 Fix properties (channel, norm, frequency).
12816 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12818 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
12820 * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
12823 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12825 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
12828 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12830 * sys/v4l2/gstv4l2element.h:
12831 Yet Another Hack (tm) for kernel header borkedness.
12832 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
12833 (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
12834 (gst_v4l2src_link), (gst_v4l2src_getcaps),
12835 (gst_v4l2src_change_state):
12836 * sys/v4l2/gstv4l2src.h:
12837 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
12838 (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
12839 Fix caps, keep track of state, work.
12841 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12843 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
12846 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12848 * sys/oss/gstosssrc.c: (gst_osssrc_get):
12849 Don't mix bytes and samples.
12851 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12853 * ext/ogg/gstoggmux.c:
12854 Basic pad template which accepts OGM tracks, speex, flac, vorbis
12855 and theora. Any is incorrect.
12856 * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
12858 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
12859 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
12860 (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
12861 (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
12862 * sys/v4l/gstv4lmjpegsrc.h:
12863 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
12864 (gst_v4lsrc_change_state):
12865 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
12866 (gst_v4lmjpegsrc_capture_stop):
12867 Fix caps. Keep track of internal state. Work.
12869 2004-10-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12872 Fix the build fixes.
12874 2004-10-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12876 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
12877 (gst_ogg_demux_src_event), (_find_chain_seek),
12878 (gst_ogg_pad_push):
12879 Check for pad availability before using it.
12880 * ext/ogg/gstoggdemux.c: (_find_chain_process):
12881 Fix parsing of chained ogg. Needs more work on the decoder side.
12883 2004-10-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
12885 * gst/spectrum/Makefile.am:
12886 * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
12888 Fix demo and reenable it. Yes, I'm currently playing with audio
12891 2004-10-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12893 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
12894 We love it if files that start at zero work too...
12896 2004-10-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12898 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
12899 Handle files with missing EOS headers.
12901 2004-10-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
12903 * gst/tcp/gsttcpserversink.c:
12904 (gst_tcpserversink_handle_server_read),
12905 (gst_tcpserversink_init_send):
12906 Zero some variables first (need for accept not to return EINVAL)
12908 2004-10-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12910 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
12911 (gst_ogg_demux_src_event), (gst_ogg_pad_push):
12912 * ext/theora/theoradec.c: (theora_dec_sink_convert),
12913 (theora_dec_chain):
12914 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
12915 (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
12916 Seeking and querying finetune.
12918 2004-10-20 Thomas Vander Stichele <thomas at apestaart dot org>
12922 * ext/raw1394/Makefile.am:
12925 2004-10-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12927 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
12929 * gst/playback/Makefile.am:
12930 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
12931 * gst/playback/gstplay-marshal.list:
12932 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
12935 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12937 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
12940 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12942 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
12943 (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
12944 (gst_ogg_pad_push):
12945 Yay for non-lineair granulepos in theora.
12947 2004-10-18 Wim Taymans <wim@fluendo.com>
12949 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
12950 (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
12951 * ext/dv/gstdvdec.h:
12952 Make sure we renegotiate aspect ratio when the camera switches.
12954 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12956 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
12957 (gst_ogg_demux_src_event), (gst_ogg_pad_push):
12959 * ext/theora/theoradec.c: (theora_dec_chain):
12960 Skip headers. Bad idea for chained ogg, but fixes seeking.
12962 2004-10-18 Wim Taymans <wim@fluendo.com>
12965 I swear, this is the last time I touch this.
12967 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12969 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
12970 (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
12971 (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
12973 * ext/theora/theoradec.c: (theora_dec_sink_convert):
12974 Time-to-default conversion.
12975 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
12976 Don't error on unknown packets, just skip. We should probably
12977 read them if we want to support chained ogg.
12979 2004-10-18 Wim Taymans <wim@fluendo.com>
12982 Added cdaudio to wrong list.
12984 2004-10-18 Wim Taymans <wim@fluendo.com>
12989 2004-10-18 Wim Taymans <wim@fluendo.com>
12991 * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
12992 (gst_dvdec_video_link), (gst_dvdec_push):
12993 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
12994 (gst_smokeenc_resync), (gst_smokeenc_chain):
12995 Fix mimetype on smoke encoder.
12996 Add aspect ratio to dvdec. Not sure if these
12997 values are correct though....
12999 2004-10-18 Wim Taymans <wim@fluendo.com>
13001 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
13002 Fix vorbis property descriptions and ranges.
13004 2004-10-18 Wim Taymans <wim@fluendo.com>
13006 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
13007 Really do nothing when no data is available.
13008 Go to the playing state when the stream is not seekable
13009 instead of failing.
13011 2004-10-18 Wim Taymans <wim@fluendo.com>
13013 * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
13014 (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
13015 (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
13016 (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
13017 (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
13018 Added uri handler for cd://
13021 2004-10-18 Wim Taymans <wim@fluendo.com>
13023 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
13024 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
13025 (try_to_link_1), (no_more_pads), (close_link), (type_found):
13026 * gst/playback/gstplaybasebin.c: (gen_preroll_element),
13027 (remove_prerolls), (unknown_type), (add_element_stream),
13028 (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
13029 (gst_play_base_bin_remove_element),
13030 (gst_play_base_bin_link_stream):
13031 * gst/playback/gstplaybin.c: (gen_video_element),
13032 (gen_vis_element), (remove_sinks), (setup_sinks):
13033 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
13034 (gst_stream_info_get_type), (gst_stream_info_class_init),
13035 (gst_stream_info_init), (gst_stream_info_new),
13036 (gst_stream_info_dispose), (stream_info_mute_pad),
13037 (gst_stream_info_set_property), (gst_stream_info_get_property):
13038 * gst/playback/gststreaminfo.h:
13039 Add sink padtemplate to decodebin.
13040 Added some more comments.
13041 Make queue size configurable in playbasebin.
13042 Added possibility to use elements as sinks (ex cdaudio).
13044 2004-10-15 Wim Taymans <wim@fluendo.com>
13046 * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
13047 (gst_speexenc_chain):
13048 Fix speex timestamps so that it gets muxed properly.
13050 2004-10-15 Wim Taymans <wim@fluendo.com>
13052 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
13053 (gst_dv1394src_base_init), (gst_dv1394src_class_init),
13054 (gst_dv1394src_init), (gst_dv1394src_dispose),
13055 (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
13056 (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
13057 (gst_dv1394src_event), (gst_dv1394src_get_formats),
13058 (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
13059 (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
13060 (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
13061 (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
13062 * ext/raw1394/gstdv1394src.h:
13063 Added conversion/query functions.
13064 Update buffer timestamps,
13066 Added uri dv:// so it might play from the firewire in playbin.
13067 Fix a possible leak.
13070 2004-10-15 Wim Taymans <wim@fluendo.com>
13072 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
13073 (gst_dv1394src_init), (gst_dv1394src_set_property),
13074 (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
13075 (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
13076 * ext/raw1394/gstdv1394src.h:
13077 Added AV/C VTR control support needed for some cameras.
13078 Added automatic port detection.
13079 Added properties for selecting the channel.
13080 The configure.ac script is not yet updated to reflect the
13081 new libavc1394 and librom1394 dependencies.
13083 2004-10-15 Wim Taymans <wim@fluendo.com>
13085 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
13086 (qtdemux_parse), (gst_qtdemux_handle_esds):
13087 An esds box is not a container.
13088 Fix parsing of mp4v boxes.
13089 Do not try to renegotiate fps for each frame. Need to
13090 find a better method. This should fix mp4 playback.
13092 2004-10-14 David Schleef <ds@schleef.org>
13094 * configure.ac: update for swfdec-0.3 and liboil-0.2
13095 * ext/swfdec/gstswfdec.c: update for swfdec-0.3
13096 * ext/swfdec/gstswfdec.h: same
13097 * gst/videofilter/gstvideobalance.c: update for liboil-0.2
13098 * gst/videotestsrc/videotestsrc.c: same
13100 2004-10-14 Wim Taymans <wim@fluendo.com>
13102 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
13103 (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
13104 (is_sync_frame), (gst_multifdsink_new_client),
13105 (gst_multifdsink_handle_client_write),
13106 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
13107 (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
13108 Turn warnings into info.
13109 Don't allow a state change in the streaming thread.
13111 2004-10-14 Thomas Vander Stichele <thomas at apestaart dot org>
13113 * ext/vorbis/oggvorbisenc.c:
13114 * ext/vorbis/vorbisdec.c:
13115 fix template sample rate
13117 2004-10-13 Wim Taymans <wim@fluendo.com>
13119 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
13120 Decoding the header first fixes some problems in resyncing
13123 2004-10-12 Wim Taymans <wim@fluendo.com>
13125 * gst/playback/gstplaybin.c: (gen_video_element),
13126 (gen_vis_element), (remove_sinks), (setup_sinks):
13127 Added vis plugin support, need to configure the vis
13128 element to activate it.
13130 2004-10-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13132 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
13133 (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
13135 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
13136 (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
13137 (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
13138 (gst_avi_demux_stream_index), (gst_avi_demux_skip),
13139 (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
13140 (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
13141 * gst/avi/gstavidemux.h:
13142 Support for openDML-2.0 indx/ix## chunks. Support for broken index
13143 recovery (where, if part of the index is broken, we will still read
13144 the rest of the index and recover the broken part by stream
13145 scanning). More broken media support. EOS workarounds. General AVI
13146 braindamage headache recovery. Aspirin included.
13148 2004-10-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13150 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
13151 (cdparanoia_event), (cdparanoia_query):
13152 Get rid of hideous lead-in.
13154 2004-10-11 Wim Taymans <wim@fluendo.com>
13156 * gst/playback/gstplaybasebin.c: (setup_source):
13157 Wrong var used to get g_list_next.
13159 2004-10-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13161 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
13162 (cdparanoia_get), (cdparanoia_open):
13163 Report discid as metadata, add duration.
13165 2004-10-11 Wim Taymans <wim@fluendo.com>
13167 * gst/playback/gstplaybasebin.c: (setup_source):
13168 Cleanup the previous pipeline a little earlier for the
13169 case that a source element provides raw data.
13171 2004-10-11 Benjamin Otte <otte@gnome.org>
13173 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
13174 reset v1 tag offset when there is no v1 tag. Fixes id3demux always
13175 consuming the last 128 bytes, even though it was valid mp3 data.
13177 2004-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
13179 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
13180 (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
13181 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
13182 Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
13184 2004-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
13186 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
13187 Fix for webcams that support only specific width or height
13189 2004-10-09 Tim-Philipp M??ller <t.i.m@zen.co.uk>
13191 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13193 * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
13194 Fix wrong discont event setup (fixes #154967).
13196 2004-10-09 Sebastien Cote <sc5@hermes.usherb.ca>
13198 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13200 * gst/auparse/gstauparse.c: (gst_auparse_chain):
13201 Error out on invalid data (fixes #154807).
13203 2004-10-09 Tim-Philipp M??ller <t.i.m@zen.co.uk>
13205 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13207 * ext/dvdread/dvdreadsrc.c: (_read):
13208 Make titles > 0 work again (fixes #154834).
13210 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13212 * gst-libs/gst/riff/riff-media.c:
13213 (gst_riff_create_video_template_caps):
13214 WMV3 missing in template caps.
13216 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13218 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
13219 OK, so the original code was too strict. It makes random AVI files
13220 hang for seconds upon opening, which is unacceptable and is far
13221 beyond the original goal of getting multiple chunks for one-chunk
13222 sounc stream files. So now do just that.
13224 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13226 * gst/playback/gstplaybasebin.c: (setup_source),
13227 (gst_play_base_bin_change_state):
13228 Actually clean up streaminfo if output fails. This would trigger
13229 if, for example, there was no CD in the drive. No preroll, so
13230 a streaminfo structure is created, but the subsequent state change
13231 of the thread fails.
13232 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
13233 Don't change state if parent failed.
13235 2004-10-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13237 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
13238 (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
13239 (gen_video_element), (remove_sinks):
13240 Add small bits of code for screenshot handling.
13242 2004-10-08 Wim Taymans <wim@fluendo.com>
13244 * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
13245 (gen_video_element), (gen_audio_element), (setup_sinks):
13246 Don't assume the user provided sinks are named "sink"...
13248 2004-10-08 Wim Taymans <wim@fluendo.com>
13250 * gst/playback/gstplaybasebin.c: (gen_preroll_element),
13251 (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
13252 (gst_play_base_bin_link_stream):
13253 Do not try to autoplug sources that generate raw streams like
13255 disconnect the preroll overrun signal when we don't need it anymore.
13257 2004-10-08 Milosz Derezynski <internalerror.rez@fhtw-berlin.de>
13259 * ext/cdparanoia/gstcdparanoia.c: (_do_init),
13260 Added reworked patch from #154903 from milosz derezynski (deadchip).
13262 2004-10-08 Wim Taymans <wim@fluendo.com>
13264 * ext/cdparanoia/gstcdparanoia.c: (_do_init),
13265 (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
13266 (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
13267 (cdparanoia_convert), (cdparanoia_uri_get_type),
13268 (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
13269 (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
13270 * ext/cdparanoia/gstcdparanoia.h:
13271 This adds the cdda://<tracknum> uri.
13273 2004-10-08 Wim Taymans <wim@fluendo.com>
13275 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
13276 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
13277 (try_to_link_1), (no_more_pads), (close_link), (type_found):
13278 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
13279 (unknown_type), (gst_play_base_bin_remove_element),
13280 (gst_play_base_bin_link_stream):
13281 * gst/playback/gstplaybasebin.h:
13282 * gst/playback/gstplaybin.c: (gst_play_bin_init),
13283 (gst_play_bin_set_property), (gen_video_element),
13284 (gen_audio_element), (setup_sinks):
13285 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
13286 (gst_stream_info_get_type), (gst_stream_info_class_init),
13287 (gst_stream_info_init), (gst_stream_info_new),
13288 (gst_stream_info_dispose), (stream_info_mute_pad),
13289 (gst_stream_info_set_property), (gst_stream_info_get_property):
13290 * gst/playback/gststreaminfo.h:
13291 Reuse the audio and video bins.
13292 Some internal cleanups in the stream selection code.
13294 2004-10-08 Julien MOUTTE <julien@moutte.net>
13296 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
13297 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
13298 * sys/ximage/ximagesink.h:
13299 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
13300 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
13301 * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
13302 not coming from those elements. Moreover these elements should not keep
13303 the xid they have been given when in NULL state.
13305 2004-10-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13307 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
13308 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
13309 * sys/ximage/ximagesink.h:
13310 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
13311 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
13312 * sys/xvimage/xvimagesink.h:
13313 Actually only create a new toplevel window if we're not gonna
13314 embed it right after.
13316 2004-10-07 Wim Taymans <wim@fluendo.com>
13318 * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
13319 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
13320 * gst/playback/gstplaybin.c: (setup_sinks):
13321 Implement muting/unmuting of streams, mute streams that are not
13324 2004-10-07 Wim Taymans <wim@fluendo.com>
13326 * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
13328 Added lame audio/x-ac3 typefind function.
13330 2004-10-06 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
13335 === release 0.8.5 ===
13337 2004-10-06 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
13342 releasing 0.8.5, "Take You On"
13344 2004-10-06 Wim Taymans <wim@fluendo.com>
13346 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
13347 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
13348 (no_more_pads), (close_link), (type_found):
13349 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
13350 * gst/playback/gstplaybin.c: (gen_video_element):
13351 Do not signal the no_more_pads after the first pad when
13352 we are plugging a non dynamic element with multiple
13353 output pads (like swfdec, dvdec, ...).
13355 2004-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
13358 bump for prerelease
13360 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
13362 * gst/wavparse/gstwavparse.c:
13363 add ATRAC3 to STATIC CAPS to fix a warning
13365 * gst/matroska/ebml-read.c:
13366 * gst-libs/gst/riff/riff-read.c:
13369 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
13371 * gst-libs/gst/riff/riff-media.c:
13372 generate caps for ATRAC3 audio streams
13374 * gst/realmedia/rmdemux.c:
13375 generate caps for ATRAC3 audio streams
13377 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
13379 * gst/wavparse/Makefile.am
13380 * gst/wavparse/riff.h
13381 * gst/wavparse/wavparse.vcproj
13382 riff.h removal (unused and duplication with riff-ids.h)
13384 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
13386 * gst/wavparse/gstwavparse.h
13387 remove duplicated defines for audio codec codes
13389 * gst-libs/gst/riff/riff-ids.h
13390 * gst/wavenc/riff.h:
13391 add "4CC" code for ATRAC3 audio streams
13392 add "4CC" code for ITU_G721_ADPCM (unused for now)
13394 2004-10-06 Wim Taymans <wim@fluendo.com>
13396 * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
13397 Actually _do_ negotiation. Pass gdouble as arg instead
13398 of guint64 for the framerate.
13400 2004-10-06 Wim Taymans <wim@fluendo.com>
13402 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
13403 (find_compatibles), (close_pad_link), (try_to_link_1),
13404 (no_more_pads), (close_link), (type_found):
13405 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
13406 * gst/playback/gstplaybin.c: (gen_video_element),
13407 (gen_audio_element):
13408 Set state on newly added element to READY so that negotiation
13410 Addes some more debug info.
13411 Do not try to plug pads with multiple caps structures or ANY
13412 because it is too dangerous since we do not do dynamic
13415 2004-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
13417 written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
13421 add Oriya translation
13423 2004-10-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13425 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
13426 Prevent overwrite of size member. Makes audio sound crappy.
13428 2004-10-05 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
13430 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
13431 Add rmvb to the list of known RealMedia extensions
13433 2004-10-05 Wim Taymans <wim@fluendo.com>
13435 * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
13436 (mngdec_openstream), (mngdec_closestream),
13437 (mngdec_handle_sink_event), (mngdec_readdata),
13438 (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
13439 (mngdec_getcanvasline), (mngdec_refresh),
13440 (gst_mngdec_change_state):
13441 Set the framerate correctly.
13443 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13445 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
13446 There was something wrong with the index massaging.
13448 2004-10-04 Wim Taymans <wim@fluendo.com>
13450 * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
13451 * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
13452 (gst_smokedec_chain):
13453 * ext/jpeg/gstsmokedec.h:
13454 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
13455 (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
13456 * ext/jpeg/gstsmokeenc.h:
13457 * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
13458 (smokecodec_decode_new), (smokecodec_info_free),
13459 (smokecodec_set_quality), (smokecodec_get_quality),
13460 (smokecodec_set_threshold), (smokecodec_get_threshold),
13461 (smokecodec_set_bitrate), (smokecodec_get_bitrate),
13462 (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
13463 (smokecodec_encode), (smokecodec_parse_id),
13464 (smokecodec_parse_header), (smokecodec_decode):
13465 * ext/jpeg/smokecodec.h:
13466 * ext/jpeg/smokeformat.h:
13467 Updated smoke, new bitstream, allows embedding in ogg.
13469 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13471 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
13472 Fix seeking in some files. All this code is no longer needed (and
13473 actually breaks stuff) because we now synchronize the full index
13474 right when reading the header.
13476 2004-10-04 Wim Taymans <wim@fluendo.com>
13479 configure update for libmng.
13481 2004-10-04 Wim Taymans <wim@fluendo.com>
13483 * ext/libmng/Makefile.am:
13484 * ext/libmng/gstmng.c: (plugin_init):
13485 * ext/libmng/gstmng.h:
13486 * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
13487 (gst_mngdec_base_init), (gst_mngdec_class_init),
13488 (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
13489 (gst_mngdec_loop), (gst_mngdec_get_property),
13490 (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
13491 (mngdec_closestream), (mngdec_handle_sink_event),
13492 (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
13493 (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
13494 (gst_mngdec_change_state):
13495 * ext/libmng/gstmngdec.h:
13496 * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
13497 (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
13498 (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
13499 (gst_mngenc_chain), (gst_mngenc_get_property),
13500 (gst_mngenc_set_property):
13501 * ext/libmng/gstmngenc.h:
13502 Added basic MNG decoder. Needs more work. The encoder does
13505 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13507 * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
13508 (gst_rmdemux_loop), (gst_rmdemux_add_stream),
13509 (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
13510 Don't hang on length=0 chunks. Some negotiation fixes. Signal
13513 2004-10-04 Thomas Vander Stichele <thomas at apestaart dot org>
13516 you need at least 1.0.4 of speex
13518 2004-10-04 Iain <iaingnome@gmail.com>
13520 * ext/speex/gstspeexdec.h: Revert the includes changes.
13522 * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
13524 2004-09-30 Iain <iaingnome@gmail.com>
13526 * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
13527 found during init or set as a property instead of hardcoding /dev/audio
13529 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13531 * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
13532 (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
13533 (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
13534 (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
13535 (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
13536 (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
13537 (gst_rmdemux_dump_data):
13538 Use debug category, fix EOS handling. filesrc ! rmdemux now
13541 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13543 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
13544 (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
13545 (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
13546 Improve allocation, cutting and sorting of the index. How takes a
13547 few seconds instead of minutes.
13549 2004-10-03 Christophe Fergeau <teuf@gnome.org>
13551 * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
13554 2004-10-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13556 * gst-libs/gst/riff/riff-media.c:
13557 (gst_riff_create_video_caps_with_data),
13558 (gst_riff_create_video_template_caps):
13559 Add wing commander format mimetype/fourccs.
13560 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
13561 Don't crash if some value is 0.
13563 2004-10-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13565 * gst-libs/gst/riff/riff-media.c:
13566 (gst_riff_create_video_caps_with_data),
13567 (gst_riff_create_video_template_caps):
13568 Add DIB fourcc (raw, palettized 8-bit RGB).
13569 * gst-libs/gst/riff/riff-read.c:
13570 (gst_riff_read_strf_vids_with_data):
13571 Oops, fix strf_data reading bug.
13572 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
13573 Use a non-NULL tag.
13574 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
13575 Time for hacks. Sorry Dave. At least one quicktime movie (a
13576 trailer) that I've encountered contains multiple video tracks.
13577 One of those is the actual video track, the other are one-frame
13578 tracks (images). Unfortunately, the number of frames according
13579 to the trak header is 1 for each, so that doesn't help. So
13580 instead, I look at the duration and discard tracks with a
13581 duration shorter than 20% of the length of the stream. Better
13584 2004-10-01 Christian Schaller <christian@fluendo.com>
13586 * ext/ivorbis/vorbis.c:
13587 Patch from Phil Blundell (Bug 152341)
13589 2004-10-01 Wim Taymans <wim@fluendo.com>
13591 * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
13592 (speex_dec_get_formats), (speex_dec_convert),
13593 (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
13594 (speex_dec_chain), (gst_speexdec_get_property),
13595 (gst_speexdec_set_property):
13598 2004-10-01 Wim Taymans <wim@fluendo.com>
13600 * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
13601 (gst_wavparse_stream_init), (gst_wavparse_fmt),
13602 (gst_wavparse_other), (gst_wavparse_loop),
13603 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
13604 (gst_wavparse_srcpad_event):
13605 * gst/wavparse/gstwavparse.h:
13606 Added some more debugging info.
13607 Fix the case where the length of the file is 0.
13608 Make sure we seek to sample borders.
13610 2004-10-01 Wim Taymans <wim@fluendo.com>
13612 * gst/playback/README:
13613 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
13614 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
13615 (try_to_link_1), (no_more_pads), (close_link), (type_found):
13616 Add some debug info to decodebin, update README
13618 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13620 * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
13621 Don't use g_print(); use GST_DEBUG().
13623 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13625 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
13626 (gst_ogg_mux_queue_pads):
13627 Handle EOS properly.
13629 2004-10-01 Sebastien Cote <sc5@hermes.usherb.ca>
13631 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13633 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
13634 (gst_faad_chain), (gst_faad_change_state):
13635 * ext/faad/gstfaad.h:
13636 Allow playback of raw (unframed) MPEG AAC files (#148993).
13638 2004-10-01 Sebastien Cote <sc5@hermes.usherb.ca>
13640 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13642 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
13643 Throw error if we didn't recognize the stream. Fixes #152289.
13645 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13647 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
13650 2004-10-01 Francis Labonte <francis_labonte@hotmail.com>
13652 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13654 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
13657 2004-10-01 Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
13659 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13661 * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
13663 * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
13666 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13668 * gst-libs/gst/riff/riff-media.c:
13669 (gst_riff_create_video_caps_with_data),
13670 (gst_riff_create_audio_caps_with_data):
13671 Add codec_data handling (like asfdemux used to do).
13672 * gst/asfdemux/gstasf.c: (plugin_init):
13673 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
13674 (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
13675 Use riff-media for caps creation instead of our own (mostly
13676 broken) copy of its functions.
13678 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13680 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
13681 Don't actually error out if we get another return value than
13682 -EINVAL. Opposite to what I first thought, drivers have random
13683 return values for this, although -EINVAL is the expected return
13684 value. Since this is not fatal, we shouldn't use
13685 GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
13687 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13689 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
13690 (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
13691 (dvdreadsrc_get_property), (_open), (_seek), (_read),
13692 (dvdreadsrc_get), (dvdreadsrc_open_file),
13693 (dvdreadsrc_change_state):
13694 Fix. Don't do one big huge loop around the whole DVD, that will
13695 cache all data and thus eat sizeof(dvd) (several GB) before we
13697 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
13698 Actually NULL'ify event after using it.
13699 * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
13700 (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
13701 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
13702 (gst_ebml_read_seek), (gst_ebml_read_skip):
13704 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
13705 (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
13706 (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
13707 Fix timing (this will probably break if I seek using menus, but
13708 I didn't get there yet). VOBs and normal DVDs should now work.
13709 Add a mpeg2-only pad with high rank so this get autoplugged for
13711 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
13712 (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
13713 (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
13714 (gst_mpeg_demux_get_audio_stream),
13715 (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
13716 (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
13717 Use this as second rank for MPEG-1 and MPEG-2. Still use this for
13718 MPEG-1 but use dvddemux for MPEG-2.
13719 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
13720 (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
13721 (gst_mpeg_parse_parse_packhead):
13722 Timing. Only add pad template if it exists. Add sink template from
13723 class and not from ourselves. This means we will always use the
13724 correct sink template even if it is not the one defined in this
13727 2004-09-29 Wim Taymans <wim@fluendo.com>
13729 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
13730 (gst_mpeg_demux_parse_pes):
13731 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
13732 Fix playback of mpeg again, timestamps where screwed up by
13735 2004-09-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13737 * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
13738 Only return true if we actually filled something in. Prevents
13739 player applications from showing a random length for flac files.
13740 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
13741 (gst_riff_read_use_event), (gst_riff_read_handle_event),
13742 (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
13743 (gst_riff_read_strf_vids_with_data),
13744 (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
13745 OK, ok, so I implemented event handling. Apparently it's normal
13746 that we receive random events at random points without asking
13748 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
13749 (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
13750 (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
13751 (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
13752 (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
13753 (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
13754 (gst_avi_demux_stream_data), (gst_avi_demux_loop):
13755 * gst/avi/gstavidemux.h:
13756 Implement non-lineair chunk handling and subchunk processing.
13757 The first solves playback of AVI files where the audio and video
13758 data of individual buffers that we read are not synchronized.
13759 This should not happen according to the wonderful AVI specs, but
13760 of course it does happen in reality. It is also a prerequisite for
13761 the second. Subchunk processing allows us to cut chunks in small
13762 pieces and process each of these pieces separately. This is
13763 required because I've seen several AVI files with incredibly large
13764 audio chunks, even some files with only one audio chunk for the
13765 whole file. This allows for proper playback including seeking.
13766 This patch is supposed to fix all AVI A/V sync issues.
13767 * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
13768 (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
13770 * gst/modplug/gstmodplug.cc:
13771 Proper return value setting for the query() function.
13772 * gst/playback/gstplaybasebin.c: (setup_source):
13773 Being in non-playing state (after, e.g., EOS) is not necessarily
13774 a bad thing. Allow for that. This fixes playback of short files.
13775 They don't actually playback fully now, because the clock already
13776 runs. This means that small files (<500kB) with a small length
13777 (<2sec) will still not or barely play. Other files, such as mod
13778 or flx, will work correctly, however.
13780 2004-09-28 Wim Taymans <wim@fluendo.com>
13782 * ext/speex/gstspeex.c: (plugin_init):
13783 * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
13784 (gst_speex_dec_class_init), (speex_dec_get_formats),
13785 (speex_get_event_masks), (speex_get_query_types),
13786 (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
13787 (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
13788 (gst_speexdec_get_property), (gst_speexdec_set_property),
13789 (speex_dec_change_state):
13790 * ext/speex/gstspeexdec.h:
13791 * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
13792 (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
13793 (gst_speexenc_base_init), (gst_speexenc_class_init),
13794 (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
13795 (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
13796 (gst_speexenc_src_query), (gst_speexenc_init),
13797 (gst_speexenc_get_tag_value), (comment_init), (comment_add),
13798 (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
13799 (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
13800 (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
13801 (gst_speexenc_chain), (gst_speexenc_get_property),
13802 (gst_speexenc_set_property), (gst_speexenc_change_state):
13803 * ext/speex/gstspeexenc.h:
13804 Rewrote speex encoder, make sure it can be embedded in ogg.
13805 Implemented speex decoder.
13807 2004-09-28 Christian Schaller <christian@fluendo.com>
13810 Remove kioslave plugin. Markey is brewing a new working one
13811 * ext/Makefile.am: Remove kioslave plugin
13813 * gst-plugins.spec.in: remove kio plugin from spec
13815 2004-09-27 Wim Taymans <wim@fluendo.com>
13817 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
13818 (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
13819 (is_sync_frame), (gst_multifdsink_client_queue_buffer),
13820 (gst_multifdsink_new_client),
13821 (gst_multifdsink_handle_client_write),
13822 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
13823 (gst_multifdsink_handle_clients):
13824 * gst/tcp/gstmultifdsink.h:
13825 Make syncing to keyframes actually work for new clients and lagging
13828 2004-09-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
13830 * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
13831 (gst_navigationtest_handle_src_event), (draw_box_planar411),
13832 (gst_navigationtest_planar411), (gst_navigationtest_change_state):
13833 * gst/debug/gstnavigationtest.h:
13834 make navigationtest display button-press and button-release events
13836 2004-09-26 Iain <iaingnome@gmail.com>
13838 * gst/interleave/interleave.c (all_channels_new_media): Checks if all
13839 the channels have received a new media event.
13840 (interleave_buffered_loop): Compresses a new media event on all
13843 2004-09-26 Iain <iaingnome@gmail.com>
13845 * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
13846 call the sinkpad's default event handler and not the srcpads. He also
13847 says this is confusing :)
13848 (gst_wavenc_stop_file): Company says that seek events only go upstream
13849 we should send a discontinuous downstream instead.
13851 2004-09-25 Christian Schaller <christian@fluendo.com>
13853 * Update SPEC file to be usable in conjunction with Fedora Core,
13854 Fedora.us and freshrpms packages
13855 * Fix typo in multifilesrc test Makefile
13857 2004-09-24 Wim Taymans <wim@fluendo.com>
13859 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
13860 Only signal the no_more_pads signal when we have
13861 added the stream to our list.
13863 2004-09-24 Wim Taymans <wim@fluendo.com>
13865 * gst/playback/gstplaybasebin.c: (remove_prerolls),
13867 * gst/playback/gstplaybasebin.h:
13868 * gst/playback/gstplaybin.c: (setup_sinks):
13869 Don't try to preroll or decode more than one audio/video
13872 2004-09-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13874 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
13875 Throw error if we failed to find a suitable output. This should
13876 throw an error if we successfully set up a pipeline (e.g. because
13877 we recognized a media file) but found no decodable streams in it
13878 (e.g. because it contains only media stream types for which we
13879 have no decoders, or because it's not a media type).
13881 2004-09-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13883 * ext/dirac/Makefile.am:
13884 * ext/dirac/gstdirac.cc:
13885 * ext/dirac/gstdiracdec.cc:
13886 * ext/dirac/gstdiracdec.h:
13887 Do something. Don't actually know if this works because I don't
13888 have a demuxer yet.
13889 * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
13890 Add channels=1 to caps returned from _getcaps().
13891 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
13892 (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
13893 (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
13894 (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
13895 (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
13896 (gst_ogm_parse_change_state):
13897 Separate between audio/video so ogmaudioparse actually uses the
13898 audio pad templates. Both audio and video work now, including
13899 autoplugging. Also use sometimes-srcpad hack.
13900 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
13901 Handle events better. Don't hang on infinite loops.
13902 * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
13903 (gst_avi_demux_init), (gst_avi_demux_reset),
13904 (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
13905 (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
13906 (gst_avi_demux_change_state):
13907 * gst/avi/gstavidemux.h:
13908 Improve A/V sync. Still not perfect.
13909 * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
13910 (gst_ebml_read_skip):
13911 Handle events better.
13912 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
13913 (gst_qtdemux_loop_header), (qtdemux_parse_trak),
13914 (qtdemux_audio_caps):
13915 Add IMA4. Improve event handling. Save offset after a seek when
13916 the headers are at the end of the file so that we don't end up in
13918 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
13919 Add low-priority typefind support for files with no length.
13921 2004-09-23 Zaheer Abbas Merali <zaheerabbas at merali dot org>
13923 * testsuite/multifilesink/Makefile.am:
13926 2004-09-22 Julien MOUTTE <julien@moutte.net>
13928 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
13929 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
13930 mistakes from thaytan's patches.
13932 2004-09-23 Jan Schmidt <thaytan@mad.scientist.com>
13934 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
13935 For completeness, XSync in the destroy function as xvimage does.
13937 2004-09-23 Jan Schmidt <thaytan@mad.scientist.com>
13939 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
13940 Correct caps negotiation
13941 * gst/volume/gstvolume.c: (volume_chain_float),
13942 (volume_chain_int16):
13943 Modify debug output to be little more informative
13944 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
13945 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
13946 (gst_xvimagesink_xvimage_destroy):
13947 Add XSync calls after detaching from the shared memory segment to
13950 2004-09-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
13952 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
13953 (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
13954 * ext/vorbis/vorbis.c: (plugin_init):
13955 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
13956 (gst_vorbisenc_chain):
13957 * ext/vorbis/vorbisenc.h:
13958 remove explicit newmedia support from oggmux and vorbisenc
13959 add debug category to vorbisenc
13960 * gst/multifilesink/gstmultifilesink.c:
13961 (gst_multifilesink_class_init), (gst_multifilesink_init),
13962 (gst_multifilesink_dispose), (gst_multifilesink_set_location),
13963 (gst_multifilesink_set_property), (gst_multifilesink_next_file),
13964 (gst_multifilesink_handle_event), (gst_multifilesink_chain),
13966 * gst/multifilesink/gstmultifilesink.h:
13967 add support for streamheader in multifilesink
13969 2004-09-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13971 * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
13972 (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
13973 (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
13974 Prevent infinite loops. More correct error reporting.
13975 * gst/auparse/gstauparse.c: (gst_auparse_chain):
13976 Error out if negotiation fails.
13977 * gst/playback/gstplaybasebin.c: (setup_source),
13978 (gst_play_base_bin_change_state), (gst_play_base_bin_error),
13979 (gst_play_base_bin_found_tag):
13980 Error/tag forwarding. Pre-roll fixes for source errors on state
13981 changes (e.g. "file does not exist") to prevent hangs.
13983 2004-09-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
13985 * testsuite/multifilesink/Makefile.am:
13986 * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
13987 (gst_newmedia_class_init), (gst_newmedia_init),
13988 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
13989 (newfile_signal), (test_signal), (main):
13990 * testsuite/multifilesink/multifilesrc_test.c: (main):
13991 * testsuite/multifilesink/oggtheora_test.c:
13992 (gst_newmedia_base_init), (gst_newmedia_class_init),
13993 (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
13994 (test_format), (newfile_signal), (test_signal), (main):
13995 * testsuite/multifilesink/oggvorbis_test.c:
13996 (gst_newmedia_base_init), (gst_newmedia_class_init),
13997 (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
13998 (test_format), (newfile_signal), (test_signal), (main):
13999 * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
14000 (gst_newmedia_class_init), (gst_newmedia_init),
14001 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
14002 (newfile_signal), (test_signal), (main):
14005 2004-09-20 Christian Schaller <christian@fluendo.com>
14007 * Fix mikmod license to LGPL as they have relicensed
14008 * Move Dirac and Effectv into LGPL section of README_license
14010 2004-09-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14012 * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
14013 (gst_mad_change_state):
14014 Allow for mp3 rate/channels changes. However, only very
14015 conservatively. Reason that we *have* to enable this is smiply
14016 because the mad find_sync() function is not good enough, it will
14017 regularly sync on random data as valid frames and therefore make
14018 us provide random caps as *final* caps of the stream. The best fix
14019 I could think of is to simply require several of the same stream
14020 changes in a row before we change caps.
14021 The actual testcase that works now is #
14022 * ext/ogg/Makefile.am:
14023 * ext/ogg/gstogg.c: (plugin_init):
14024 * ext/ogg/gstogmparse.c:
14025 OGM support (video only for now; I need an audio sample file).
14026 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
14027 (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
14028 (gst_asf_demux_add_video_stream):
14030 * gst/playback/gstplaybasebin.c: (unknown_type):
14031 Don't error out on single unknown-types after all. It's wrong.
14032 If we found type of video and audio but not of a subtitle stream,
14033 it will still error out (which is unwanted). Will find a better fix
14035 * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
14036 (ogmaudio_type_find), (plugin_init):
14039 2004-09-20 Johan Dahlin <johan@gnome.org>
14041 * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
14042 after setting caps.
14044 2004-09-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14046 * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
14047 * gst/wavenc/gstwavenc.h:
14048 Added newmedia support to wavenc
14050 2004-09-17 Wim Taymans <wim@fluendo.com>
14052 * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
14053 (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
14054 (gst_fdset_fd_can_write), (gst_fdset_wait):
14055 * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
14056 (gst_multifdsink_init), (gst_multifdsink_add),
14057 (gst_multifdsink_remove), (gst_multifdsink_get_stats),
14058 (gst_multifdsink_remove_client_link),
14059 (gst_multifdsink_client_queue_buffer),
14060 (gst_multifdsink_handle_client_write),
14061 (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
14062 (gst_multifdsink_close), (gst_multifdsink_change_state):
14063 * gst/tcp/gstmultifdsink.h:
14064 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
14065 (gst_tcpserversink_removed):
14066 Small cleanups in fdset.c
14067 Use a hastable to map fd to the client structure for faster
14068 lookup in _remove and get_stats.
14069 Added virtual function to close the fds.
14070 Handle clients even when the select/poll call was unblocked because
14072 Implement syncing to keyframe in the recovery procedure.
14074 2004-09-16 Iain <iaingnome@gmail.com>
14076 * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
14079 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14081 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
14082 Caps are only set if the type of the stream is unknown, but this
14083 is initialized in ->init_stream(), so set to UNKNOWN after calling
14084 ->init_stream() so that capsnego starts.
14086 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14088 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
14089 (gst_avi_demux_stream_data):
14090 Just hardcode for raw audio then. AVI audio sucks.
14092 2004-09-15 Arwed v. Merkatz <v.merkatz@gmx.net>
14094 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
14095 * gst/matroska/matroska-mux.c: (audiosink_templ),
14096 (gst_matroska_mux_audio_pad_link):
14097 * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
14098 Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
14100 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14102 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
14103 (gst_avi_demux_stream_data):
14104 Try to fix a/v sync issues.
14106 2004-09-15 David Schleef <ds@schleef.org>
14108 * configure.ac: remove NASM check, since we don't use it. Update
14110 * ext/dirac/gstdiracdec.cc: update to current 0.4 API
14111 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
14112 Initialized variables.
14113 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
14114 (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
14115 (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
14118 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14120 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
14121 (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
14122 * gst/avi/gstavidemux.h:
14123 Fix for compressed audio (mp3) timestamp generation. How did this
14126 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14128 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
14129 Volume is a double not a float.
14131 2004-09-15 Wim Taymans <wim@fluendo.com>
14133 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
14134 (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
14135 Don't close the fd in multifdsink as we didn't open it in the
14136 first place. Some cleanups.
14138 2004-09-15 Wim Taymans <wim@fluendo.com>
14140 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
14141 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
14142 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
14143 Fix the case where the muxer would mark pages as delta
14144 frames when they are not (vorbis only ogg).
14146 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14148 * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
14149 (gst_play_base_bin_change_state):
14150 Handle the case where we failed to setup a clear pipeline. This
14151 will throw an error (or EOS, another nice case) and if you don't
14152 catch that, the app will wait for the signal forever (and thus
14155 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14157 * ext/gnomevfs/gstgnomevfssink.c:
14158 (gst_gnomevfssink_uri_get_protocols):
14159 * ext/gnomevfs/gstgnomevfssrc.c:
14160 (gst_gnomevfssrc_uri_get_protocols):
14161 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
14162 * ext/gnomevfs/gstgnomevfsuri.h:
14163 Use _uri_new() instead of _open(), so it doesn't take as long and
14164 Christophe's computer won't hang.
14165 * gst/playback/gstplaybasebin.c: (unknown_type):
14166 Throw error on unknown media type, so apps actually display it.
14168 2004-09-14 Brian Cameron <brian.cameron@sun.com
14170 * tools/gst-launch-ext-m.m: Changed ~ to $ENV{HOME} to allow
14171 this script to work on Solaris since bash shell handles echo
14172 differenly than bash.
14174 2004-09-17 Wim Taymans <wim@fluendo.com>
14176 * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
14177 (setup_source), (gst_play_base_bin_set_property),
14178 (gst_play_base_bin_add_element):
14179 * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
14180 Some more work on making sure seeking pauses the pipeline and
14181 that changing the uri actually does something.
14183 2004-09-17 Wim Taymans <wim@fluendo.com>
14185 * gst/tcp/gstfdset.c: (gst_fdset_wait):
14186 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
14187 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
14188 (gst_tcpserversink_close):
14189 Be a bit more paranoid when freeing memory.
14191 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14193 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
14194 (qtdemux_parse_trak):
14195 Don't crash by dividing by zero (see sample movie in #126922).
14197 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14199 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
14200 Don't touch non-existing data (fixes crash on file in #140147).
14202 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14204 * gst/playback/gstplaybasebin.c:
14205 (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
14206 Handle double disposals, and proper change of URIs.
14208 2004-09-13 Martin Eikermann <meiker@upb.de>
14210 * gst/mpegstream/gstmpegparse.c:
14211 fix synchronistation for streams recorded from digital PCR
14214 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14216 * ext/gnomevfs/Makefile.am:
14217 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
14218 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
14219 (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
14220 (gst_gnomevfssink_uri_get_type),
14221 (gst_gnomevfssink_uri_get_protocols),
14222 (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
14223 (gst_gnomevfssink_uri_handler_init),
14224 (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
14225 (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
14226 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
14227 (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
14228 (gst_gnomevfssrc_uri_get_type),
14229 (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
14230 (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
14231 (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
14232 (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
14233 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
14234 * ext/gnomevfs/gstgnomevfsuri.h:
14235 Add URI support to Gnome-VFS plugins. Tries to load a fixed list
14236 of fake URIs to see which this version of Gnome-VFS likes, and
14237 uses that for the Gst-URI interface. Makes playbin support http://
14238 streams. Also fix up some stupid behaviour in gnomevfssrc.
14240 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14242 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
14243 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
14244 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
14245 (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
14246 Update mixer (to sync with other sessions) if we try to obtain
14247 a new value. This makes alsamixer work accross applications.
14248 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
14249 Only call sync functions if we're running, else alsalib asserts.
14250 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
14251 Sometimes fails to compile. Possibly a gcc bug.
14252 * gst/playback/gstplaybin.c: (gen_video_element),
14253 (gen_audio_element):
14254 Add a reference to an application-provided object, because we lose
14255 this same reference if we add it to the bin. If we don't do this,
14256 we can only use this object once and thus crash if we go from
14257 ready to playing, back to ready and back to playing again.
14258 Also add an audioscale element because several cheap soundcards -
14259 like mine - don't support all samplerates.
14260 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
14261 (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
14262 Fix wrong order or PAR calls. Makes automatically obtained PAR
14263 from the X server atually being used.
14265 2004-09-12 David Schleef <ds@schleef.org>
14267 Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
14268 #151887, #152102, #152247.
14269 * examples/indexing/indexmpeg.c: 64-bit warning fixes.
14270 * examples/seeking/cdparanoia.c: same
14271 * examples/seeking/cdplayer.c: same
14272 * examples/seeking/seek.c: same
14273 * examples/seeking/spider_seek.c: same
14274 * examples/seeking/vorbisfile.c: same
14275 * examples/stats/mp2ogg.c: same
14276 * ext/esd/esdsink.c: (gst_esdsink_class_init),
14277 (gst_esdsink_dispose): Dispose of element properly.
14278 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
14280 * ext/nas/nassink.c: (gst_nassink_class_init),
14281 (gst_nassink_dispose): Dispose of element correctly.
14282 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
14283 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
14284 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
14285 Fix 64-bit warning.
14286 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
14287 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
14288 Fix 64-bit warning.
14290 2004-09-12 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
14292 * configure.ac : change speex detection as 1.1.6 now uses
14293 .pc/pkg-config and they changed their headers location.
14295 2004-09-09 Arwed v. Merkatz <v.merkatz@gmx.net>
14297 * gst/matroska/matroska-mux.h:
14298 * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
14299 (gst_matroska_mux_start), (gst_matroska_mux_finish),
14300 (gst_matroska_mux_write_data):
14301 Write multiple blocks/frames per cluster.
14302 Write meta-seek information (seek heads).
14304 2004-09-09 Scott Wheeler <wheeler@kde.org>
14306 * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
14307 (gst_play_bin_set_property), (gst_play_bin_get_property),
14308 (gen_audio_element), (gen_audio_element):
14309 Add a volume element / property to the pipeline.
14311 2004-09-07 Wim Taymans <wim@fluendo.com>
14313 * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
14314 Copy timestamps from the master pad to the output buffers.
14316 2004-09-03 Thomas Vander Stichele <thomas at apestaart dot org>
14318 * ext/raw1394/gstdv1394src.c:
14319 throw errors when applicable
14321 2004-09-01 Arwed v. Merkatz <v.merkatz@gmx.net>
14323 * gst/matroska/ebml-ids.h:
14324 * gst/matroska/ebml-read.c: (gst_ebml_read_date):
14325 * gst/matroska/ebml-write.c: (gst_ebml_write_date):
14326 * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
14327 automatically convert unix time <-> ebml time when reading/writing
14328 a date, use gst_ebml_write_uint to write CUETIME,
14329 not gst_ebml_write_date.
14330 * gst/matroska/matroska-ids.h:
14331 * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
14332 (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
14333 (gst_matroska_mux_track_header), (gst_matroska_mux_start),
14334 (gst_matroska_mux_write_data):
14335 Write track and segment UIDs, write muxing date, write
14336 TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
14337 Create cues for audio only files.
14339 2004-08-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14341 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
14342 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
14343 Re-commit ALSA switches.
14344 * gst/adder/gstadder.c: (gst_adder_loop):
14345 64-bit fix (#151416).
14346 * gst/debug/progressreport.c: (gst_progressreport_report):
14347 64-bit fix (#151419).
14348 * gst/matroska/matroska-demux.c:
14349 (gst_matroska_demux_parse_contents):
14350 64-bit fix (#151420).
14351 * gst/playback/test3.c: (update_scale):
14352 64-bit fix (#151421).
14354 2004-08-31 Thomas Vander Stichele <thomas at apestaart dot org>
14359 === release 0.8.4 ===
14361 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
14363 * configure.ac: releasing 0.8.4, "Alias"
14365 2004-08-31 Thomas Vander Stichele <thomas at apestaart dot org>
14367 * ext/theora/Makefile.am:
14368 fix makefile. Fixes #151462.
14370 2004-08-30 Wim Taymans <wim@fluendo.com>
14372 * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
14373 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
14374 (gst_multifdsink_remove_client_link),
14375 (gst_multifdsink_client_queue_buffer),
14376 (gst_multifdsink_handle_client_write):
14377 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
14378 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
14379 Fix some memory leaks.
14381 2004-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
14383 Patch by: David Schleef
14387 rename our detection macro for V4L2. Fixes #151236.
14389 2004-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
14391 Patch by: David Schleef
14394 check to define LAMEPRESET. Fixes #151232.
14396 2004-08-27 David Schleef <ds@schleef.org>
14398 * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
14399 (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
14400 (gst_glimagesink_fixate): Move local variable declarations to
14401 make gcc-2.95 happy.
14403 2004-08-27 Thomas Vander Stichele <thomas at apestaart dot org>
14406 bump nano for prerelease
14408 2004-08-27 David Schleef <ds@schleef.org>
14410 * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
14411 * sys/sunaudio/gstsunaudiosrc.c:
14412 * sys/sunaudio/gstsunaudiosrc.h:
14414 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
14416 * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
14417 handle EOS correctly
14418 * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
14419 * gst/matroska/matroska-mux.h:
14420 added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
14421 VFW compatibility mode
14423 2004-08-27 Thomas Vander Stichele <thomas at apestaart dot org>
14425 patch by: Zaheer Abbas Merali
14427 * ext/ogg/gstoggmux.c:
14428 * ext/vorbis/vorbisenc.c:
14429 * ext/vorbis/vorbisenc.h:
14432 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
14434 * gst/matroska/ebml-write.c: (gst_ebml_write_float),
14435 fix byte order reversion on little endian machines.
14436 * gst/matroska/matroska-mux.c: (audiosink_templ),
14437 (gst_matroska_mux_audio_pad_link):
14438 add TTA codec to the list of supported codecs.
14439 * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
14440 (gst_matroska_mux_start), (gst_matroska_mux_finish),
14441 (gst_matroska_mux_write_data):
14442 * gst/matroska/matroska-mux.h:
14443 write segment duration correctly, write muxing app string, fixes bugs
14444 #140897 and #140898.
14445 * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
14446 wait for all pads to be negotiated before starting to mux.
14448 2004-08-26 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14450 * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
14451 * ext/lame/gstlame.h:
14452 Added new media support to lame
14454 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
14456 * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
14457 send vorbis headers at the beginning of a stream, fixes bug #141554.
14458 Interpret BLOCKDURATION and set buffer duration accordingly, fixes
14460 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
14461 (gst_matroska_demux_plugin_init):
14462 * gst/matroska/matroska-ids.h:
14463 enable demuxing of TTA audio streams, fixes bug #148951.
14464 * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
14465 enable typefinding for TTA audio files, fixes bug #148711.
14466 * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
14467 set XVID_LOWDELAY flag for decoding so xvid always returns an image,
14468 fixes playback of packed bitstream and xvid with bframes, bug #135407.
14470 2004-08-24 Sebastien Cote <sc5@hermes.usherb.ca>
14472 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
14473 (gst_riff_read_element_data), (gst_riff_read_seek),
14474 (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
14475 #144616, patch reviewed by Ronald and committed by Christophe Fergeau
14478 2004-08-23 Iain <iaingnome@gmail.com>
14480 * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
14481 tags. They appear to be handled differently to normal.
14482 (tag_list_to_id3_tag_foreach): Ditto.
14484 2004-08-22 Wim Taymans <wim@fluendo.com>
14486 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
14487 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
14488 Make sure we never send -1 granulepos.
14490 2004-08-20 Wim Taymans <wim@fluendo.com>
14492 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
14493 (gst_ogg_mux_loop):
14494 I will accept bitchslappings with non sharp objects.
14496 2004-08-20 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14499 Clean up the test for lame presets
14501 2004-08-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14504 * ext/lame/Makefile.am:
14505 * ext/lame/gstlame.c: (gst_lame_class_init),
14506 (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
14507 Only enable lame presets if version of lame has presets in API
14509 2004-08-19 Jan Schmidt <thaytan@mad.scientist.com>
14510 * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
14511 * gst/udp/gstudpsrc.h:
14512 Don't call gst_pad_push in a get function. Fixes #150449
14514 2004-08-18 Wim Taymans <wim@fluendo.com>
14516 * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
14517 (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
14518 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
14519 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
14520 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
14522 * gst/tcp/gstfdset.h:
14523 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
14524 (gst_multifdsink_client_queue_buffer),
14525 (gst_multifdsink_handle_client_write):
14526 * gst/tcp/gstmultifdsink.h:
14527 Some extra checks in gstfdset.
14528 Only use send() when the fd is a socket. Don't try to
14529 read from write only fds.
14531 2004-08-18 Wim Taymans <wim@fluendo.com>
14533 * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
14534 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
14535 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
14536 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
14538 Add more locking and bounds checking.
14540 2004-08-18 Wim Taymans <wim@fluendo.com>
14542 * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
14543 Realloc test fdset in the lock and right before starting
14544 the poll call. Bump the limit to 4096.
14546 2004-08-17 David Schleef <ds@schleef.org>
14548 * sys/sunaudio/Makefile.am:
14549 * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
14550 of rates and channels. Make debugging less obnoxious.
14552 Patch from Balamurali Viswanathan implementing a mixer for
14553 Sun audio. (bug #144091):
14554 * sys/sunaudio/gstsunelement.c:
14555 * sys/sunaudio/gstsunelement.h:
14556 * sys/sunaudio/gstsunmixer.c:
14557 * sys/sunaudio/gstsunmixer.h:
14559 2004-08-17 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14561 * gst/audioscale/gstaudioscale.c:
14562 * gst/audioscale/gstaudioscale.h:
14563 made audioscale resample from any sample rate to any sample rate
14565 2004-08-17 Thomas Vander Stichele <thomas at apestaart dot org>
14567 * ext/libpng/gstpngdec.c:
14568 error out on unsupported types
14570 2004-08-17 Iain <iaingnome@gmail.com>
14572 * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
14573 mid_side and loose_mid_side properties if its a stereo stream.
14575 2004-08-17 Wim Taymans <wim@fluendo.com>
14577 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
14578 (theora_get_formats), (theora_dec_src_convert),
14579 (theora_dec_sink_convert), (theora_dec_src_query),
14580 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
14583 2004-08-17 Wim Taymans <wim@fluendo.com>
14585 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
14586 (gst_ogg_pad_push):
14587 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
14588 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
14589 (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
14590 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
14591 Mark delta units in the muxer.
14592 Try to decode the packet after an out-of-sync error from
14595 2004-08-17 Wim Taymans <wim@fluendo.com>
14597 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
14598 (gst_multifdsink_init), (gst_multifdsink_add),
14599 (gst_multifdsink_client_queue_buffer),
14600 (gst_multifdsink_set_property), (gst_multifdsink_get_property):
14601 * gst/tcp/gstmultifdsink.h:
14602 Added option to send a keyframe to clients as the first buffer.
14603 Make timeout property writable.
14605 2004-08-17 Thomas Vander Stichele <thomas at apestaart dot org>
14607 patch by: Wim Taymans
14609 * gst/tcp/gstfdset.c:
14610 * gst/tcp/gstmultifdsink.c:
14611 fix index comparison, should include 0
14613 2004-08-16 Wim Taymans <wim@fluendo.com>
14615 * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
14616 (gst_fdset_add_fd), (gst_fdset_remove_fd),
14617 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
14618 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
14620 copy when reallocing for poll so the select arguments don't get
14621 changed during the call
14623 2004-08-16 Wim Taymans <wim@fluendo.com>
14625 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
14626 (gst_theora_enc_class_init), (theora_enc_sink_link),
14627 (theora_buffer_from_packet), (theora_enc_chain):
14628 Fix bug where buffers were not marked as keyframes
14631 2004-08-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14633 * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
14634 (gst_lame_preset_get_type), (gst_lame_class_init):
14635 describe the enum values for vbr mode and presets more verbosely
14637 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14639 * ext/lame/gstlame.c: (gst_lame_mode_get_type),
14640 (gst_lame_quality_get_type), (gst_lame_padding_get_type),
14641 (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
14642 (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
14643 * ext/lame/gstlame.h:
14644 add preset property to lame so it can use lame presets
14646 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14648 * ext/lame/gstlame.c: (gst_lame_get_property):
14649 whoops forgot break, thanks teuf
14651 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14653 * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
14654 (gst_lame_class_init), (gst_lame_src_getcaps),
14655 (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
14656 (gst_lame_get_property), (gst_lame_setup):
14657 * ext/lame/gstlame.h:
14658 fix lame's broken vbr stuff, allow it to resample if need be, and also
14659 make xing header optional
14661 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14663 * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
14664 added getcaps function so samplerate doesnt get fixated to silly values
14666 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14668 * ext/lame/gstlame.c: (gst_lame_src_link):
14669 revert previous fix
14671 2004-08-12 Johan Dahlin <johan@gnome.org>
14673 * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
14674 checks. Doesn't matter what state we are in. Interfaces are a
14675 compile time thing, not runtime. It also broke the python bindings.
14677 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14679 * ext/lame/gstlame.c: (gst_lame_src_link):
14680 made source pad link function check if sinkpad is ok..fixes the problem
14681 where core fixates the output rate of lame stupidly
14683 2004-08-12 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
14685 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
14686 * sys/v4l/v4l_calls.c:
14687 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
14688 fix fixate function to handle nonsimple caps.
14689 remove bogus check in _link
14692 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14694 * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
14695 set default compression ratio parameter to 0.0 so bitrate parameter
14698 2004-08-11 David Schleef <ds@schleef.org>
14700 * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
14702 2004-08-11 David Schleef <ds@schleef.org>
14704 * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
14707 2004-08-11 David Schleef <ds@schleef.org>
14709 * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
14711 2004-08-11 David Schleef <ds@schleef.org>
14713 * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
14715 * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
14716 * gst-libs/gst/video/gstvideosink.c: Change copyright block to
14718 * gst/auparse/gstauparse.c: Fix plugin license field.
14719 * gst/monoscope/gstmonoscope.c: Fix plugin license field.
14720 * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
14721 * gst/rtp/gstrtp.c: Fix plugin license field.
14723 2004-08-11 Wim Taymans <wim@fluendo.com>
14725 * gst/tcp/Makefile.am:
14726 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
14727 (ensure_size), (gst_fdset_new), (gst_fdset_free),
14728 (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
14729 (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
14730 (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
14731 (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
14732 (gst_fdset_fd_can_write), (gst_fdset_wait):
14733 * gst/tcp/gstfdset.h:
14734 * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
14735 (gst_multifdsink_class_init), (gst_multifdsink_init),
14736 (gst_multifdsink_add), (gst_multifdsink_remove),
14737 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
14738 (gst_multifdsink_remove_client_link),
14739 (gst_multifdsink_handle_client_read),
14740 (gst_multifdsink_client_queue_data),
14741 (gst_multifdsink_client_queue_caps),
14742 (gst_multifdsink_client_queue_buffer),
14743 (gst_multifdsink_handle_client_write),
14744 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
14745 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
14746 (gst_multifdsink_get_property), (gst_multifdsink_init_send),
14747 (gst_multifdsink_close):
14748 * gst/tcp/gstmultifdsink.h:
14749 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
14750 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
14751 (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
14752 (gst_tcpserversink_close):
14753 * gst/tcp/gsttcpserversink.h:
14754 Abstracted away the select call, implemented poll (yes we ran into
14755 the 1024 limit in production).
14757 2004-08-11 Thomas Vander Stichele <thomas at apestaart dot org>
14759 * gst/tcp/gsttcp.c:
14760 * gst/tcp/gsttcpplugin.c:
14761 improve debuggging, remove assert
14763 2004-08-10 Wim Taymans <wim@fluendo.com>
14765 * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
14766 (gst_client_status_get_type), (gst_multifdsink_class_init),
14767 (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
14768 (gst_multifdsink_handle_client_read),
14769 (gst_multifdsink_handle_client_write),
14770 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
14771 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
14772 (gst_multifdsink_get_property):
14773 * gst/tcp/gstmultifdsink.h:
14774 * gst/tcp/gsttcp-marshal.list:
14775 Starting to prepare for specifying buffer time in other units
14776 than buffers. Expose remove reason in signal.
14778 2004-08-10 Wim Taymans <wim@fluendo.com>
14780 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
14781 (gst_multifdsink_remove), (gst_multifdsink_clear),
14782 (gst_multifdsink_remove_client_link),
14783 (gst_multifdsink_handle_client_read),
14784 (gst_multifdsink_client_queue_data),
14785 (gst_multifdsink_client_queue_buffer),
14786 (gst_multifdsink_handle_client_write),
14787 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
14788 (gst_multifdsink_chain), (gst_multifdsink_close):
14789 * gst/tcp/gstmultifdsink.h:
14790 Added more debugging info. Changed the way clients are
14791 removed from the lists. Fixed a bug where a bad file descriptor
14792 could cause many clients to be removed.
14794 2004-08-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
14796 * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
14797 allow all pixel-aspect-ratios, not just 1:1
14799 2004-08-09 David Schleef <ds@schleef.org>
14801 * sys/glsink/ARB_multitexture.h: Remove old files.
14802 * sys/glsink/EXT_paletted_texture.h:
14803 * sys/glsink/NV_register_combiners.h:
14804 * sys/glsink/gstgl_nvimage.c:
14805 * sys/glsink/gstgl_pdrimage.c:
14806 * sys/glsink/gstgl_rgbimage.c:
14807 * sys/glsink/gstglsink.c:
14808 * sys/glsink/gstglsink.h:
14809 * sys/glsink/gstglxwindow.c:
14810 * sys/glsink/regcomb_yuvrgb.c:
14812 2004-08-09 David Schleef <ds@schleef.org>
14814 Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
14815 GL sink plugin. (Bug #147302)
14817 * configure.ac: Test for OpenGL
14818 * sys/Makefile.am: Use test for OpenGL
14819 * sys/glsink/Makefile.am:
14820 * sys/glsink/glimagesink.c: rewrite
14821 * sys/glsink/glimagesink.h: rewrite
14823 2004-08-09 David Schleef <ds@schleef.org>
14825 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init): Only allow
14827 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
14828 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
14829 * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
14831 2004-08-09 Wim Taymans <wim@fluendo.com>
14833 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
14834 (gst_multifdsink_add), (gst_multifdsink_get_stats),
14835 (gst_multifdsink_client_remove),
14836 (gst_multifdsink_handle_client_read),
14837 (gst_multifdsink_handle_client_write),
14838 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
14839 Do a bit more logging, make the client_read code more robust.
14841 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
14843 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
14844 (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
14845 (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
14846 (gst_jpegdec_init), (gst_jpegdec_chain):
14847 * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
14848 (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
14849 cleanups, debugging fixes and memleak plugging
14851 2004-08-09 Wim Taymans <wim@fluendo.com>
14853 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
14854 (theora_get_formats), (theora_dec_src_convert),
14855 (theora_dec_sink_convert), (theora_dec_src_query),
14856 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
14857 (theora_dec_change_state):
14858 Don't crash on missing header packets.
14860 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
14864 Added Albanian translation (Laurent Dhima)
14868 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
14870 * ext/lame/gstlame.c:
14873 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
14875 * sys/ximage/ximagesink.c:
14876 * sys/xvimage/xvimagesink.c:
14877 assign all TOO_LAZY's to a real category. Thanks to Warthy Warthog.
14879 2004-08-06 Wim Taymans <wim@fluendo.com>
14881 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
14882 (gst_multifdsink_add), (gst_multifdsink_get_stats),
14883 (gst_multifdsink_client_remove),
14884 (gst_multifdsink_handle_client_read),
14885 (gst_multifdsink_handle_client_write),
14886 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
14887 Make sure we don't try to read more from a client that what
14888 ioctl says us or we deadlock.
14890 2004-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
14892 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
14893 (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
14894 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
14895 decouple running_time and n_frames so it can handle changing
14896 framerate while running
14898 2004-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
14902 updated translations
14904 2004-08-04 Benjamin Otte <otte@gnome.org>
14906 * gst/videotestsrc/gstvideotestsrc.c:
14907 (gst_videotestsrc_get_capslist), (generate_capslist),
14909 generate the list of supported caps at startup and reuse it instead
14910 of always generating it
14912 2004-07-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
14914 * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
14915 whoops, last checkin broke normal build
14917 2004-08-03 Benjamin Otte <otte@gnome.org>
14919 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
14920 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
14921 (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
14922 (gst_alsa_mixer_get_option):
14923 * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
14924 (dvdnavsrc_print_event):
14925 * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
14926 * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
14927 (gst_ogg_mux_pad_unlink):
14928 * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
14929 (gst_multipart_mux_pad_unlink):
14930 * gst/videofilter/gstvideobalance.c:
14931 (gst_videobalance_colorbalance_set_value):
14932 * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
14933 (gst_videomixer_pad_unlink):
14935 * sys/oss/gstossmixer.c:
14936 * sys/v4l/gstv4lcolorbalance.c:
14937 * sys/v4l/gstv4ltuner.c:
14938 * sys/v4l/v4lsrc_calls.c:
14939 * sys/v4l2/gstv4l2colorbalance.c:
14940 * sys/v4l2/gstv4l2tuner.c:
14941 compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
14943 2004-08-03 Benjamin Otte <otte@gnome.org>
14945 * examples/dynparams/filter.c: (ui_control_create):
14946 * examples/gstplay/player.c: (print_tag):
14947 * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
14948 * ext/gdk_pixbuf/gstgdkanimation.c:
14949 (gst_gdk_animation_iter_may_advance):
14950 * ext/jack/gstjack.c: (gst_jack_request_new_pad):
14951 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
14952 (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
14953 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
14954 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
14955 * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
14956 * gst-libs/gst/media-info/media-info-test.c: (print_tag):
14957 * gst/sine/demo-dparams.c: (main):
14958 * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
14959 * testsuite/alsa/formats.c: (create_pipeline):
14960 * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
14961 fixes for G_DISABLE_ASSERT and friends
14962 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
14963 (mp3_type_frame_length_from_header), (mp3_type_find),
14965 require mp3 typefinding to have at least MIN_HEADERS valid headers
14966 add typefinding for AAC adts files
14968 2004-08-04 Jan Schmidt <thaytan@mad.scientist.com>
14970 * sys/ximage/ximagesink.c:
14971 (gst_ximagesink_calculate_pixel_aspect_ratio):
14972 * sys/xvimage/xvimagesink.c:
14973 (gst_xvimagesink_calculate_pixel_aspect_ratio):
14974 Make sure we calculate pixel-aspect-ratio using floating point maths
14976 2004-08-03 Thomas Vander Stichele <thomas at apestaart dot org>
14979 updated translation
14981 2004-08-03 Thomas Vander Stichele <thomas at apestaart dot org>
14983 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
14984 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
14985 add debugging for display PAR calculation
14987 2004-08-02 David Schleef <ds@schleef.org>
14989 * configure.ac: Fix mikmod CFLAGS.
14991 2004-07-27 Benjamin Otte <otte@gnome.org>
14993 * gst/audioscale/gstaudioscale.c:
14994 - fix templates to only support S16, it's the only format that works
14995 - make caps nego code use try_set_caps_nonfixed and fixation instead
14996 of try_set_caps twice, which is not nice for autopluggers
14997 - change rank to secondary, so autopluggers can pick it up after
15000 2004-08-02 Iain <iain@prettypeople.org>
15002 * gst/interleave/interleave.c (interleave_init),
15003 (interleave_request_new_pad),
15004 (interleave_pad_removed),
15005 (interleave_buffered_loop): Use the real pad count, not the artificial
15008 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
15010 * configure.ac: bump nano back to development
15012 === release 0.8.3 ===
15014 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
15016 * configure.ac: releasing 0.8.3, "Water"
15018 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
15020 * sys/xvimage/xvimagesink.c:
15021 (gst_xvimagesink_calculate_pixel_aspect_ratio),
15022 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
15023 (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
15024 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
15025 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
15026 * sys/xvimage/xvimagesink.h:
15027 apply similar PAR fixes as to ximagesink
15029 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
15031 patch from: Benjamin Otte
15033 * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
15034 add link function to lame. Fixes #148986.
15036 2004-08-02 Johan Dahlin <johan@gnome.org>
15038 * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
15041 2004-07-30 David Schleef <ds@schleef.org>
15043 * gst/videomixer/Makefile.am: Fix things that should have been
15044 fixed in the last checkin.
15046 2004-07-30 David Schleef <ds@schleef.org>
15048 * gst/multipart/Makefile.am: Fix things that should have been
15049 fixed in the last checkin.
15051 2004-07-30 David Schleef <ds@schleef.org>
15053 * testsuite/multifilesink/Makefile.am: Fix unused variable.
15055 2004-07-30 Thomas Vander Stichele <thomas at apestaart dot org>
15058 bump nano for prerelease
15070 2004-07-30 Wim Taymans <wim@fluendo.com>
15072 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
15073 (gst_multifdsink_add), (gst_multifdsink_remove),
15074 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
15075 (gst_multifdsink_client_remove),
15076 (gst_multifdsink_handle_client_write),
15077 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
15078 * gst/tcp/gstmultifdsink.h:
15079 Recover from a select with a bad file descriptor by removing
15082 2004-07-30 Thomas Vander Stichele <thomas at apestaart dot org>
15085 fix requirement of core
15086 * gst-libs/gst/play/play.c: (gst_play_error_plugin),
15087 (gst_play_pipeline_setup):
15088 don't use colorspace element. do use hermescolorspace element.
15089 make macro to get a colorspace element.
15090 mark strings for translation.
15102 update translations
15104 2004-07-30 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15106 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
15107 fix default for newmedia flag
15109 2004-07-30 Wim Taymans <wim@fluendo.com>
15111 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
15112 (gst_theora_dec_init), (theora_get_formats),
15113 (theora_dec_src_convert), (theora_dec_sink_convert),
15114 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
15115 (theora_dec_chain), (theora_dec_set_property),
15116 (theora_dec_get_property):
15117 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
15118 (gst_theora_enc_class_init), (gst_theora_enc_init),
15119 (theora_enc_sink_link), (theora_enc_chain),
15120 (theora_enc_set_property), (theora_enc_get_property):
15121 Added cropping option to theora decoder.
15122 Added border option to theora encoder.
15124 2004-07-30 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15126 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
15127 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
15128 (gst_pngenc_set_property):
15129 * ext/libpng/gstpngenc.h:
15130 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
15132 2004-07-30 Wim Taymans <wim@fluendo.com>
15134 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
15135 (theora_enc_sink_link), (theora_enc_chain),
15136 (theora_enc_set_property), (theora_enc_get_property):
15137 Fix encoding of non-multiple-of-16 video.
15139 2004-07-29 David Schleef <ds@schleef.org>
15141 * configure.ac: make test for audiofile more strict
15143 2004-07-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
15145 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
15146 give different names to typefind functions
15148 2004-07-28 Thomas Vander Stichele <thomas at apestaart dot org>
15150 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
15151 (gst_ximagesink_calculate_pixel_aspect_ratio),
15152 (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
15153 (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
15154 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
15155 (gst_ximagesink_get_property), (gst_ximagesink_init):
15156 * sys/ximage/ximagesink.h:
15157 allocate PAR's dynamically.
15158 use autodetected PAR if no object-set PAR is given.
15159 add workaround for directfb's X not setting physical size.
15160 fix to xvimagesink will follow tomorrow.
15162 2004-07-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15164 * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
15165 * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
15166 (gst_shout2send_get_type), (gst_shout2send_set_clock),
15167 (gst_shout2send_class_init), (gst_shout2send_init),
15168 (set_shout_metadata), (gst_shout2send_set_metadata),
15169 (gst_shout2send_chain), (gst_shout2send_set_property),
15170 (gst_shout2send_get_property), (gst_shout2send_connect),
15171 (gst_shout2send_change_state):
15172 * ext/shout2/gstshout2.h:
15173 - fix for sending mp3 audio to icecast2 server, if pad link function not
15174 called before PAUSED state
15175 - added option to use GStreamer clock sync (as opposed to libshout's own sync)
15176 - added tagging support for mp3 audio broadcasted
15177 * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
15180 2004-07-28 Wim Taymans <wim@fluendo.com>
15182 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
15183 (gst_ogg_demux_push):
15184 Return query failure when we don't know the length of
15185 an ogg stream insteda of returning TRUE with a bogus value.
15187 2004-07-28 Wim Taymans <wim@fluendo.com>
15189 * ext/theora/theoradec.c: (theora_get_formats),
15190 (theora_dec_src_convert), (theora_dec_sink_convert),
15191 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
15192 (theora_dec_chain):
15193 Don't screw up the 1 Chroma for 1 luma sample situation when we
15194 have an odd offset/width by adding a black border in those cases.
15196 2004-07-28 Wim Taymans <wim@fluendo.com>
15198 * ext/theora/theoradec.c: (theora_get_formats),
15199 (theora_dec_src_convert), (theora_dec_sink_convert),
15200 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
15201 (theora_dec_chain):
15202 * ext/theora/theoraenc.c: (theora_enc_sink_link):
15203 Added first attempt at cropping of the image as required by the
15204 theora spec. We need more properties in the caps (offset_x,
15205 offset_y,stride) to implement this correctly.
15207 2004-07-28 Jan Schmidt <thaytan@mad.scientist.com>
15209 * ext/dvdnav/README:
15210 Update the README to use dvddemux
15211 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
15212 Ensure getcaps returns a subset of the template caps
15213 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
15214 (gst_mpeg2subt_init):
15215 Ensure getcaps returns a subset of the template caps
15216 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
15217 (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
15218 (gst_dvd_demux_get_subpicture_stream),
15219 (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
15220 * gst/mpegstream/gstdvddemux.h:
15221 Set the explicit caps on the current_video pad before pushing
15223 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
15224 (gst_mpeg_demux_get_audio_stream):
15225 Free caps used to gst_pad_set_explicit_caps, which takes a const
15228 2004-07-28 Thomas Vander Stichele <thomas at apestaart dot org>
15230 * configure.ac: update GStreamer requirement to 0.8.4 because of
15233 2004-07-28 Wim Taymans <wim@fluendo.com>
15235 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
15236 (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
15237 Add the pad to the element after setting up the caps. This
15238 makes it a lot easier to autoplug.
15240 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
15242 * gst/median/gstmedian.c:
15243 * gst/mpeg2subt/gstmpeg2subt.c:
15244 * gst/mpegaudioparse/gstmpegaudioparse.c:
15245 * gst/mpegstream/gstdvddemux.c:
15246 * gst/mpegstream/gstmpegdemux.c:
15247 * gst/mpegstream/gstmpegpacketize.c:
15248 * gst/rtjpeg/gstrtjpeg.c:
15249 * gst/rtjpeg/gstrtjpegdec.c:
15250 * gst/rtjpeg/gstrtjpegenc.c:
15251 * gst/sine/gstsinesrc.c:
15252 * gst/smooth/gstsmooth.c:
15253 * gst/smpte/gstsmpte.c:
15254 * gst/smpte/gstsmpte.h:
15255 * gst/stereo/gststereo.c:
15256 * gst/videofilter/gstgamma.c:
15257 * gst/videofilter/gstvideobalance.c:
15258 * gst/videofilter/gstvideofilter.c:
15259 * gst/videofilter/gstvideoflip.c:
15260 * gst/videoscale/gstvideoscale.c:
15261 * gst/videoscale/videoscale.c:
15262 * gst/videotestsrc/gstvideotestsrc.c:
15263 * gst/videotestsrc/videotestsrc.c:
15264 * gst/wavenc/gstwavenc.c:
15265 * gst/wavparse/gstwavparse.c:
15266 fix local includes and 64 bits constants
15268 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
15271 * gst-libs/gst/*/*.vcproj:
15273 more working plugins
15275 2004-07-27 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15277 * testsuite/alsa/Makefile.am:
15278 * testsuite/alsa/srcstate.c:
15279 add test for alsasrc changing state
15281 2004-07-27 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15283 * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
15285 * gst/silence/gstsilence.h:
15286 fix silence generation for 16bit raw audio
15288 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
15290 * gst/matroska/matroska-demux.c:
15291 (gst_matroska_demux_parse_metadata),
15292 (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
15293 * gst/mpegaudio/common.c:
15294 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
15295 (gst_videoscale_getcaps), (gst_videoscale_link),
15296 (gst_videoscale_src_fixate), (gst_videoscale_init),
15297 (gst_videoscale_finalize):
15298 * gst/videoscale/gstvideoscale.h:
15299 * gst/videotestsrc/gstvideotestsrc.c:
15300 (gst_videotestsrc_get_capslist):
15301 * gst/wavenc/gstwavenc.c:
15302 * sys/oss/gstossmixer.c: (fill_labels):
15303 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
15304 (gst_ximagesink_handle_xevents),
15305 (gst_ximagesink_calculate_pixel_aspect_ratio),
15306 (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
15307 (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
15308 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
15309 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
15310 (gst_ximagesink_init), (gst_ximagesink_class_init):
15311 * sys/ximage/ximagesink.h:
15312 * sys/xvimage/xvimagesink.c:
15313 (gst_xvimagesink_calculate_pixel_aspect_ratio),
15314 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
15315 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
15316 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
15317 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
15318 * sys/xvimage/xvimagesink.h:
15319 first batch of pixel aspect ratio commits.
15321 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
15323 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15324 (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
15325 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
15326 handle stride, needs work if we want to move stride handling
15327 upstream, but works correctly for our purposes.
15329 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
15331 * gst/videoscale/README:
15332 add testing examples
15333 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
15334 (gst_videoscale_chain):
15335 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
15336 (gst_videoscale_get_size):
15337 add get_size function that handles stride like videotestsrc.
15338 fixes conversion for YUV formats for as much as I can test them.
15340 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
15342 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
15343 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
15344 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
15345 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
15346 (gst_xvimagesink_xvimage_put):
15347 further cleanups, logging, error handling and synchronizing
15349 2004-07-27 Wim Taymans <wim@fluendo.com>
15351 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
15352 (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
15353 (gst_videomixer_pad_set_property),
15354 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
15355 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
15356 (gst_videomixer_class_init), (gst_videomixer_init),
15357 (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
15358 (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
15359 (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
15360 (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
15361 (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
15362 (gst_videomixer_loop), (plugin_init):
15363 Be a nicer negotiation citizen and provide a getcaps function on
15364 the srcpad. This also fixes a crash when resizing.
15366 2004-07-27 Julien MOUTTE <julien@moutte.net>
15368 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
15369 (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
15371 2004-07-27 Wim Taymans <wim@fluendo.com>
15373 * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
15374 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
15375 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
15376 (gst_pngenc_set_property):
15377 * ext/libpng/gstpngenc.h:
15378 Added snapshot property to pngenc.
15379 removed g_print from pngdec
15381 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
15383 * gst/ac3parse/ac3parse.vcproj
15384 * gst/adder/adder.vcproj
15385 * gst/alpha/alpha.vcproj
15386 * gst/alpha/alphacolor.vcproj
15387 * gst/asfdemux/asf.vcproj
15388 * gst/audioconvert/audioconvert.vcproj
15389 * gst/audiorate/audiorate.vcproj
15390 * gst/audioscale/audioscale.vcproj
15391 * gst/auparse/auparse.vcproj
15392 * gst/avi/avi.vcproj
15393 * gst/cdxaparse/cdxaparse.vcproj
15394 * gst/chart/chart.vcproj
15395 * gst/colorspace/colorspace.vcproj
15396 * gst/cutter/cutter.vcproj
15397 * gst/debug/debug.vcproj
15398 * gst/debug/efence.vcproj
15399 * gst/debug/navigationtest.vcproj
15400 * gst/deinterlace/deinterlace.vcproj
15401 * gst/effectv/effectv.vcproj
15402 * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
15403 * gst/filter/filter.vcproj
15404 * gst/flx/flxdec.vcproj
15405 * gst/goom/goom.vcproj
15406 * gst/interleave/interleave.vcproj
15407 * gst/law/alaw.vcproj
15408 * gst/law/mulaw.vcproj
15409 * gst/matroska/matroska.vcproj
15410 * gst/median/median.vcproj
15411 * gst/mixmatrix/mixmatrix.vcproj
15412 * gst/mpeg1sys/mpeg1systemencode.vcproj
15413 * gst/mpeg1videoparse/mp1videoparse.vcproj
15414 * gst/mpeg2sub/mpeg2subt.vcproj
15415 * gst/mpegaudio/mpegaudio.vcproj
15416 * gst/mpegaudioparse/mpegaudioparse.vcproj
15417 * gst/mpegstream/mpegstream.vcproj
15418 * gst/multifilesink/multifilesink.vcproj
15419 * gst/multipart/multipart.vcproj
15420 * gst/oneton/oneton.vcproj
15421 * gst/overlay/overlay.vcproj
15422 * gst/passthrough/passthrough.vcproj
15423 * gst/qtdemux/qtdemux.vcproj
15424 * gst/realmedia/rmdemux.vcproj
15425 * gst/rtjpeg/rtjpeg.vcproj
15426 * gst/rtp/rtp.vcproj
15427 * gst/silence/silence.vcproj
15428 * gst/sine/sinesrc.vcproj
15429 * gst/smooth/smooth.vcproj
15430 * gst/smpte/smpte.vcproj
15431 * gst/spectrum/spectrum.vcproj
15432 * gst/speed/speed.vcproj
15433 * gst/stereo/stereo.vcproj
15434 * gst/switch/switch.vcproj
15435 * gst/tags/tagedit.vcproj
15436 * gst/tcp/tcp.vcproj
15437 * gst/typefind/typefindfunctions.vcproj
15438 * gst/udp/udp.vcproj
15439 * gst/videobox/videobox.vcproj
15440 * gst/videocrop/videocrop.vcproj
15441 * gst/videodrop/videodrop.vcproj
15442 * gst/videofilter/gamma.vcproj
15443 * gst/videofilter/videobalance.vcproj
15444 * gst/videofilter/videofilter.vcproj
15445 * gst/videofilter/videoflip.vcproj
15446 * gst/videoflip/videoflip.vcproj
15447 * gst/videomixer/videomixer.vcproj
15448 * gst/videorate/videorate.vcproj
15449 * gst/videoscale/videoscale.vcproj
15450 * gst/videotestsrc/videotestsrc.vcproj
15451 * gst/virtualdub/virtualdub.vcproj
15452 * gst/volenv/volenv.vcproj
15453 * gst/volume/volume.vcproj
15454 * gst/wavenc/wavenc.vcproj
15455 * gst/wavparse/wavparse.vcproj
15456 * gst/y4m/y4menc.vcproj
15457 * gst-libs/gst/audio/audio.vcproj
15458 * gst-libs/gst/audio/audiofilter.vcproj
15459 * gst-libs/gst/colorbalance/colorbalance.vcproj
15460 * gst-libs/gst/idct/idtc.vcproj
15461 * gst-libs/gst/media-info/media-info.vcproj
15462 * gst-libs/gst/mixer/mixer.vcproj
15463 * gst-libs/gst/navigation/navigation.vcproj
15464 * gst-libs/gst/play/play.vcproj
15465 * gst-libs/gst/propertyprobe/propertyprobe.vcproj
15466 * gst-libs/gst/resample/resample.vcproj
15467 * gst-libs/gst/riff/riff.vcproj
15468 * gst-libs/gst/tuner/tuner.vcproj
15469 * gst-libs/gst/video/video.vcproj
15470 * gst-libs/gst/xoverlay/xoverlay.vcproj
15471 avoid problems with math.h, fix release dependancy
15472 rename GStreamer-0.8.lib to libgstreamer.lib
15474 2004-07-27 Julien MOUTTE <julien@moutte.net>
15476 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
15477 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
15478 the atom is not available we have to unlock the mutex. Fixes #148023
15480 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
15482 * gst-libs/gst/media-info/media-info.h:
15483 issue for a vararg macro with MSVC
15485 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
15487 * gst/effectv/effectv.vcproj
15488 * gst-libs/gst/idct/idct.vcproj:
15489 * gst-libs/gst/media-info/media-info.vcproj:
15490 * gst-libs/gst/navigation/navigation.vcproj:
15491 * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
15492 * gst-libs/gst/video/video.vcproj:
15493 * gst-libs/gst/xoverlay/xoverlay.vcproj:
15494 fixes for build problems
15496 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
15498 * gst-libs/gst/audio/audio.def:
15499 * gst-libs/gst/audio/riff.def:
15500 add some definitions needed by plugins
15502 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
15504 * gst/asfdemux/gstasfmux.c
15505 Fix some 64 bits constants to be glib friendly
15507 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
15509 * gst/ac3parse/gstac3parse.c
15510 * gst/audioscale/gstaudioscale.c
15511 * gst/auparse/gstauparse.c
15512 * gst/colorspace/gstcolorspace.c
15513 * gst/colorspace/yuv2rgb.h
15514 local include fixes
15516 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
15519 add more plugins to the build
15521 2004-07-26 Julien MOUTTE <julien@moutte.net>
15523 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
15524 (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
15526 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
15528 * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
15529 (gst_level_set_property), (gst_level_get_property),
15530 (gst_level_base_init), (gst_level_class_init):
15531 add debugging categories. cleanups.
15533 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
15535 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
15536 (gst_videoscale_planar411), (gst_videoscale_planar400),
15537 (gst_videoscale_packed422), (gst_videoscale_packed422rev),
15538 (gst_videoscale_scale_nearest_str1),
15539 (gst_videoscale_scale_nearest_str2),
15540 (gst_videoscale_scale_nearest_str4),
15541 (gst_videoscale_scale_nearest_16bit),
15542 (gst_videoscale_scale_nearest_24bit):
15543 fixed stride issues
15544 tested with 320x240 -> 321, 322, 324 x240
15545 tested with YV12, I420, YUY2, UYVY
15546 fixed packed422rev (don't think it could have worked before)
15547 by testing with UYVY
15549 2004-07-26 Benjamin Otte <otte@gnome.org>
15551 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
15552 (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
15554 add debugging category, add error checks like checking return values
15555 of setup calls, make sure it still works after
15556 PLAYING=>NULL=>PLAYING, fix encoding of mono streams
15558 2004-07-26 Wim Taymans <wim@fluendo.com>
15560 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
15561 (gst_mpeg_demux_get_audio_stream),
15562 (gst_mpeg_demux_process_private):
15563 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
15564 Check for error codes from the negotiation functions. Make sure
15565 we really set the pad caps when a new pad is created.
15567 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
15569 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
15570 (gst_ffmpeg_caps_to_pix_fmt):
15571 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
15572 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15573 (gst_ffmpegcolorspace_pad_link):
15574 don't make function do two things at the same time without reason.
15576 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
15578 * gst/ac3parse/ac3parse.vcproj
15579 * gst/adder/adder.vcproj
15580 * gst/alpha/alpha.vcproj
15581 * gst/alpha/alphacolor.vcproj
15582 * gst/asfdemux/asf.vcproj
15583 * gst/audioconvert/audioconvert.vcproj
15584 * gst/audiorate/audiorate.vcproj
15585 * gst/audioscale/audioscale.vcproj
15586 * gst/auparse/auparse.vcproj
15587 * gst/avi/avi.vcproj
15588 * gst/cdxaparse/cdxaparse.vcproj
15589 * gst/chart/chart.vcproj
15590 * gst/colorspace/colorspace.vcproj
15591 * gst/cutter/cutter.vcproj
15592 * gst/debug/debug.vcproj
15593 * gst/debug/efence.vcproj
15594 * gst/debug/navigationtest.vcproj
15595 * gst/deinterlace/deinterlace.vcproj
15596 * gst/effectv/effectv.vcproj
15597 * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
15598 * gst/filter/filter.vcproj
15599 * gst/flx/flxdec.vcproj
15600 * gst/goom/goom.vcproj
15601 * gst/interleave/interleave.vcproj
15602 * gst/law/alaw.vcproj
15603 * gst/law/mulaw.vcproj
15604 * gst/matroska/matroska.vcproj
15605 * gst/median/median.vcproj
15606 * gst/mixmatrix/mixmatrix.vcproj
15607 * gst/mpeg1sys/mpeg1systemencode.vcproj
15608 * gst/mpeg1videoparse/mp1videoparse.vcproj
15609 * gst/mpeg2sub/mpeg2subt.vcproj
15610 * gst/mpegaudio/mpegaudio.vcproj
15611 * gst/mpegaudioparse/mpegaudioparse.vcproj
15612 * gst/mpegstream/mpegstream.vcproj
15613 * gst/multifilesink/multifilesink.vcproj
15614 * gst/multipart/multipart.vcproj
15615 * gst/oneton/oneton.vcproj
15616 * gst/overlay/overlay.vcproj
15617 * gst/passthrough/passthrough.vcproj
15618 * gst/qtdemux/qtdemux.vcproj
15619 * gst/realmedia/rmdemux.vcproj
15620 * gst/rtjpeg/rtjpeg.vcproj
15621 * gst/rtp/rtp.vcproj
15622 * gst/silence/silence.vcproj
15623 * gst/sine/sinesrc.vcproj
15624 * gst/smooth/smooth.vcproj
15625 * gst/smpte/smpte.vcproj
15626 * gst/spectrum/spectrum.vcproj
15627 * gst/speed/speed.vcproj
15628 * gst/stereo/stereo.vcproj
15629 * gst/switch/switch.vcproj
15630 * gst/tags/tagedit.vcproj
15631 * gst/tcp/tcp.vcproj
15632 * gst/typefind/typefindfunctions.vcproj
15633 * gst/udp/udp.vcproj
15634 * gst/videobox/videobox.vcproj
15635 * gst/videocrop/videocrop.vcproj
15636 * gst/videodrop/videodrop.vcproj
15637 * gst/videofilter/gamma.vcproj
15638 * gst/videofilter/videobalance.vcproj
15639 * gst/videofilter/videofilter.vcproj
15640 * gst/videofilter/videoflip.vcproj
15641 * gst/videoflip/videoflip.vcproj
15642 * gst/videomixer/videomixer.vcproj
15643 * gst/videorate/videorate.vcproj
15644 * gst/videoscale/videoscale.vcproj
15645 * gst/videotestsrc/videotestsrc.vcproj
15646 * gst/virtualdub/virtualdub.vcproj
15647 * gst/volenv/volenv.vcproj
15648 * gst/volume/volume.vcproj
15649 * gst/wavenc/wavenc.vcproj
15650 * gst/wavparse/wavparse.vcproj
15651 * gst/y4m/y4menc.vcproj
15652 more plugins supported under windows
15654 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
15656 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
15657 (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
15658 (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
15659 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
15660 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
15661 Add debugging statements. Use the sizes as returned by the
15662 *CreateImage calls.
15664 2004-07-26 Johan Dahlin <johan@gnome.org>
15666 * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
15667 the pad is negotiated.
15669 * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
15671 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
15673 * gst-libs/gst/colorbalance/colorbalance.vcproj:
15674 * gst-libs/gst/idct/idct.vcproj:
15675 * gst-libs/gst/media-info/media-info.vcproj:
15676 * gst-libs/gst/mixer/mixer.vcproj:
15677 * gst-libs/gst/navigation/navigation.vcproj:
15678 * gst-libs/gst/play/play.vcproj:
15679 * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
15680 * gst-libs/gst/resample/resample.vcproj:
15681 * gst-libs/gst/tuner/tuner.vcproj:
15682 * gst-libs/gst/video/video.vcproj:
15683 * gst-libs/gst/xoverlay/xoverlay.vcproj:
15684 more plugins supported under windows
15686 2004-07-25 Iain <iain@prettypeople.org>
15688 * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
15689 pad now rather than when the pad is created because state changes wipe
15690 explicit caps (fixes #148043).
15692 2004-07-25 Sebastien Cote <sc5@hermes.usherb.ca>
15694 reviewed by Benjamin Otte <otte@gnome.org>
15696 * ext/mad/gstmad.c:
15697 fix mad plugin crashing on Sun (fixes #148289)
15699 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
15702 * gst/avi/avi.vcproj:
15703 * gst/matroska/matroska.def:
15704 * gst/matroska/matroska.vcproj:
15705 remove unused .def files
15707 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
15709 * gst-libs/gst/audio/gstaudiofilter.c:
15710 Clean the local include
15712 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
15715 * gst-libs/gst/audio/audio.def:
15716 * gst-libs/gst/audio/audio.vcproj:
15717 * gst-libs/gst/audio/audiofilter.vcproj:
15718 * gst-libs/gst/audio/riff.def:
15719 * gst-libs/gst/audio/riff.vcproj:
15720 * gst-libs/gst/gst-libs.def:
15721 * gst-libs/gst/gst-libs.vcproj:
15722 * gst/avi/avi.vcproj:
15723 * gst/avi/avi.vcproj:
15724 Copy the files where needed after building, cleaner projects
15726 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
15728 * gst/matroska/ebml-write.c:
15729 Fix some 64 bits constants to be glib friendly
15731 2004-07-24 Steve Lhomme <steve.lhomme@free.fr>
15734 * gst-libs/gst/gst-libs.def:
15735 * gst-libs/gst/gst-libs.vcproj:
15736 * gst/matroska/matroska.def:
15737 * gst/matroska/matroska.vcproj:
15738 Add the preliminary canvas to build plugins on Win32
15740 2004-07-23 Benjamin Otte <otte@gnome.org>
15742 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
15743 don't enfore negotiation from source side, it breaks
15744 sinesrc ! audioconvert ! osssink
15746 2004-07-22 David Schleef <ds@schleef.org>
15748 * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
15749 for ELF files, since they can easily be recognized as audio/mpeg.
15752 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
15754 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
15755 (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
15756 (gst_videoscale_scale_nearest_24bit),
15757 (gst_videoscale_scale_nearest_16bit):
15758 fix 16bit and 24bit for stride (24bit might need testing)
15759 don't pretend we do more than one algorithm
15761 2004-07-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15765 * gst/multifilesink/Makefile.am:
15766 * gst/multifilesink/gstmultifilesink.c:
15767 (gst_multifilesink_get_formats),
15768 (gst_multifilesink_get_query_types), (_do_init),
15769 (gst_multifilesink_base_init), (gst_multifilesink_class_init),
15770 (gst_multifilesink_init), (gst_multifilesink_dispose),
15771 (gst_multifilesink_set_location), (gst_multifilesink_set_property),
15772 (gst_multifilesink_get_property), (gst_multifilesink_open_file),
15773 (gst_multifilesink_close_file), (gst_multifilesink_next_file),
15774 (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
15775 (gst_multifilesink_chain), (gst_multifilesink_change_state),
15776 (gst_multifilesink_uri_get_type),
15777 (gst_multifilesink_uri_get_protocols),
15778 (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
15779 (gst_multifilesink_uri_handler_init), (plugin_init):
15780 * gst/multifilesink/gstmultifilesink.h:
15781 * testsuite/Makefile.am:
15782 * testsuite/multifilesink/Makefile.am:
15783 * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
15784 (gst_newmedia_class_init), (gst_newmedia_init),
15785 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
15786 (newfile_signal), (test_signal), (main):
15787 multifilesink plugin for creating new files every time a new media
15788 discontinuity event occurs
15790 2004-07-22 Wim Taymans <wim@fluendo.com>
15792 * gst/alpha/Makefile.am:
15793 * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
15794 (gst_alpha_color_base_init), (gst_alpha_color_class_init),
15795 (gst_alpha_color_init), (gst_alpha_color_set_property),
15796 (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
15797 (transform), (gst_alpha_color_chain),
15798 (gst_alpha_color_change_state), (plugin_init):
15799 Stupid plugin to to RGBA to AYUV conversion because none of
15800 the colorspace plugins can handle that yet.
15802 2004-07-22 Wim Taymans <wim@fluendo.com>
15804 * examples/seeking/seek.c: (update_scale), (main):
15805 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
15806 (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
15807 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
15808 (gst_decode_bin_init), (gst_decode_bin_dispose),
15809 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
15810 (no_more_pads), (close_link), (type_found),
15811 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
15813 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
15814 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
15815 (gst_play_base_bin_dispose), (queue_overrun),
15816 (gen_preroll_element), (remove_prerolls), (unknown_type),
15817 (no_more_pads), (new_stream), (setup_source),
15818 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
15819 (play_base_eos), (gst_play_base_bin_change_state),
15820 (gst_play_base_bin_add_element),
15821 (gst_play_base_bin_remove_element),
15822 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
15823 (gst_play_base_bin_unlink_stream),
15824 (gst_play_base_bin_get_streaminfo):
15825 * gst/playback/gstplaybin.c: (gen_video_element),
15826 (gen_audio_element):
15827 * gst/playback/gststreaminfo.h:
15828 More playback updates, attempt to fix things after the state change
15831 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
15833 * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
15834 (gst_videoscale_scale_nearest_16bit):
15837 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
15839 * gst/videotestsrc/gstvideotestsrc.c:
15840 (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
15841 (gst_videotestsrc_init), (gst_videotestsrc_get),
15842 (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
15843 (gst_videotestsrc_get_property):
15844 * gst/videotestsrc/gstvideotestsrc.h:
15845 * gst/videotestsrc/videotestsrc.c:
15846 * gst/videotestsrc/videotestsrc.h:
15847 cleanup and commenting
15849 2004-07-21 Wim Taymans <wim@fluendo.com>
15851 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
15852 (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
15853 (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
15854 (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
15855 (_find_chain_get_unknown_part), (_find_streams_check),
15856 (gst_ogg_demux_push), (gst_ogg_pad_push):
15857 * ext/theora/theoradec.c: (theora_get_formats),
15858 (theora_dec_src_convert), (theora_dec_sink_convert),
15859 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
15860 (theora_dec_chain):
15861 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
15862 (vorbis_dec_convert), (vorbis_dec_src_query),
15863 (vorbis_dec_src_event), (vorbis_dec_event):
15864 More seeking fixes, oggdemux now supports seeking to time and
15865 uses the downstream element to convert granulepos to time.
15866 Seeking in theora-only ogg files now works.
15868 2004-07-21 Wim Taymans <wim@fluendo.com>
15870 * ext/theora/theoradec.c: (gst_theora_dec_init),
15871 (theora_get_formats), (theora_get_event_masks),
15872 (theora_get_query_types), (theora_dec_src_convert),
15873 (theora_dec_sink_convert), (theora_dec_src_query),
15874 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
15875 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
15876 (vorbis_get_event_masks), (vorbis_get_query_types),
15877 (gst_vorbis_dec_init), (vorbis_dec_convert),
15878 (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
15879 Added query/convert/formats functions to vorbis and theora decoders
15880 so that the outside world can use them too. Fixed seeking on an
15881 ogg/theora/vorbis file by disabling the seeking seeking on the
15884 2004-07-21 Julien MOUTTE <julien@moutte.net>
15886 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
15887 (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
15888 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
15889 images creation for both elements. We don't create the image on caps
15890 nego or renego, we just destroy the internal one if present if it does
15891 not match the needs. The chain function takes care of creating a new
15893 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
15894 (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
15895 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
15896 (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
15897 the image format information. The buffer pool checks for the context
15898 image format and discard images with different formats.
15899 * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
15901 2004-07-21 Thomas Vander Stichele <thomas at apestaart dot org>
15903 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15904 (gst_ffmpegcolorspace_chain):
15905 no point in doing any chaining if the pad we want to push from
15908 2004-07-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
15910 * gst-libs/gst/riff/riff-media.c:
15911 (gst_riff_create_audio_caps_with_data):
15912 Fix double end-to-native symbol conversion (#148021).
15914 2004-07-20 David Schleef <ds@schleef.org>
15916 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
15917 Don't use an Atom that doesn't exist.
15919 2004-07-20 Wim Taymans <wim@fluendo.com>
15921 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
15922 (gst_multifdsink_add), (gst_multifdsink_get_stats),
15923 (gst_multifdsink_client_remove),
15924 (gst_multifdsink_handle_client_write),
15925 (gst_multifdsink_queue_buffer):
15926 * gst/tcp/gstmultifdsink.h:
15927 More multifdsink stats. Avoid deadlock by releasing locks
15928 before sending out a signal.
15930 2004-07-20 Thomas Vander Stichele <thomas at apestaart dot org>
15934 added Hungarian translation (Laszlo Dvornik)
15936 2004-07-20 Wim Taymans <wim@fluendo.com>
15938 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
15939 (gst_multifdsink_add), (gst_multifdsink_client_remove),
15940 (gst_multifdsink_handle_client_write),
15941 (gst_multifdsink_queue_buffer):
15942 * gst/tcp/gsttcp-marshal.list:
15943 Fixed the stupid marshal definition.
15945 2004-07-20 Wim Taymans <wim@fluendo.com>
15947 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
15948 (gst_multifdsink_init), (gst_multifdsink_add),
15949 (gst_multifdsink_client_remove),
15950 (gst_multifdsink_handle_client_write),
15951 (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
15952 (gst_multifdsink_set_property), (gst_multifdsink_get_property),
15953 (gst_multifdsink_init_send):
15954 * gst/tcp/gstmultifdsink.h:
15955 Added more stats, added timeout for a client, fixed some typos
15956 and added some comments.
15958 2004-07-20 Wim Taymans <wim@fluendo.com>
15960 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
15961 (gst_multifdsink_add), (gst_multifdsink_get_stats),
15962 (gst_multifdsink_client_remove),
15963 (gst_multifdsink_handle_client_write):
15964 * gst/tcp/gstmultifdsink.h:
15965 * gst/tcp/gsttcp-marshal.list:
15966 Added get_stats method that returns a GValueArray of
15969 2004-07-19 Benjamin Otte <otte@gnome.org>
15971 * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
15972 make sure longname, description and author are valid UTF-8
15974 2004-07-19 Thomas Vander Stichele <thomas at apestaart dot org>
15976 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
15977 (gst_ximagesink_set_property):
15978 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
15979 (gst_xvimagesink_set_property):
15980 make sure SYNCHRONOUS is respected after getting the X context
15982 2004-07-18 Thomas Vander Stichele <thomas at apestaart dot org>
15984 * gst/matroska/matroska-demux.c:
15985 (gst_matroska_demux_handle_src_event),
15986 (gst_matroska_demux_parse_blockgroup):
15987 * gst/matroska/matroska-ids.h:
15988 add BlockReference tag and ignore it to clear out log.
15989 ignore NAVIGATION events to clear out log.
15991 2004-07-18 Thomas Vander Stichele <thomas at apestaart dot org>
15993 * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
15994 (gst_matroska_demux_add_stream):
15995 * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
15996 add debug categories
15998 2004-07-16 Wim Taymans <wim@fluendo.com>
16000 * ext/libpng/Makefile.am:
16001 * ext/libpng/gstpng.c: (plugin_init):
16002 * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
16003 (gst_pngdec_get_type), (gst_pngdec_base_init),
16004 (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
16005 (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
16006 * ext/libpng/gstpngdec.h:
16009 2004-07-16 Julien MOUTTE <julien@moutte.net>
16011 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
16012 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
16013 (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
16014 (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
16015 (gst_ximagesink_buffer_alloc):
16016 * sys/ximage/ximagesink.h:
16017 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
16018 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
16019 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16020 (gst_xvimagesink_buffer_alloc):
16021 * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
16022 again. Using internal data pointer of the x(v)image to store image's
16023 data to be coherent with the buffer alloc mechanism. Investigated the
16024 image destruction code to be sure that everything gets freed correctly.
16026 2004-07-16 Wim Taymans <wim@fluendo.com>
16028 * gst-libs/gst/riff/riff-read.c:
16029 (gst_riff_read_strf_vids_with_data),
16030 (gst_riff_read_strf_auds_with_data):
16031 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
16032 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
16033 Make sure we don't create 0 sized subbuffers in riff-read.
16034 Signal the no more pads signal after reading the avi header.
16036 2004-07-16 Wim Taymans <wim@fluendo.com>
16038 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
16039 (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
16040 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
16041 (gst_decode_bin_init), (gst_decode_bin_dispose),
16042 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
16043 (no_more_pads), (close_link), (type_found),
16044 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
16045 (gst_decode_bin_change_state), (plugin_init):
16046 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
16047 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
16048 (gst_play_base_bin_dispose), (queue_overrun),
16049 (gen_preroll_element), (remove_prerolls), (unknown_type),
16050 (no_more_pads), (new_stream), (setup_source),
16051 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
16052 (play_base_eos), (gst_play_base_bin_change_state),
16053 (gst_play_base_bin_add_element),
16054 (gst_play_base_bin_remove_element),
16055 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
16056 (gst_play_base_bin_unlink_stream),
16057 (gst_play_base_bin_get_streaminfo):
16058 * gst/playback/gstplaybasebin.h:
16059 Better error recovery. Added configurable preroll queue size. Faster
16060 detection of no-more-pads.
16062 2004-07-16 Wim Taymans <wim@fluendo.com>
16064 * gst-libs/gst/video/video.h:
16065 Added 32 bits RGBA. Not sure if we should use another mime-type
16066 for alpha rgb. Currently the presence of the alpha_mask property
16067 signals an alpha channel.
16069 2004-07-16 Wim Taymans <wim@fluendo.com>
16071 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
16072 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
16073 FPS seems to be 0.0 to MAX everywhere else.
16075 2004-07-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
16077 * gst-libs/gst/riff/riff-media.c:
16078 (gst_riff_create_video_caps_with_data):
16079 mp42/mp43 (no caps) exist too.
16080 * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
16081 Set pixel_width/height; we've got them in-caps.
16082 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16083 * gst/wavparse/gstwavparse.c: (plugin_init):
16084 Both are valid primary.
16085 * sys/oss/gstossmixer.c:
16086 Remove i18n hack and enable translations.
16088 2004-07-15 Benjamin Otte <otte@gnome.org>
16090 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
16091 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
16092 fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
16094 2004-07-15 Benjamin Otte <otte@gnome.org>
16096 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
16097 (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
16098 (gst_alsa_close_audio):
16099 disable some of the debugging code for now. Writing debugging to a
16100 buffer is broken in current alsalib releases.
16102 2004-07-12 Benjamin Otte <otte@gnome.org>
16104 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
16107 2004-07-14 Thomas Vander Stichele <thomas at apestaart dot org>
16109 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
16110 (theora_dec_src_query), (theora_dec_event):
16111 * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
16112 add debugging categories. Remove \n's.
16114 2004-07-13 Johan Dahlin <johan@gnome.org>
16116 * gst/playback/gstplaybin.c (gst_play_bin_set_property)
16117 (gst_play_bin_get_property): Impl.
16119 2004-07-13 Wim Taymans <wim@fluendo.com>
16121 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
16122 When trying to find the stream length, seek back N pages
16123 instead of just one, where N is the number of streams in
16126 2004-07-13 Wim Taymans <wim@fluendo.com>
16128 * gst-libs/gst/riff/riff-media.c:
16129 (gst_riff_create_audio_caps_with_data),
16130 (gst_riff_create_audio_caps),
16131 (gst_riff_create_audio_template_caps):
16132 * gst-libs/gst/riff/riff-media.h:
16133 * gst-libs/gst/riff/riff-read.c:
16134 (gst_riff_read_strf_vids_with_data),
16135 (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
16136 * gst-libs/gst/riff/riff-read.h:
16137 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
16138 (gst_avi_demux_add_stream):
16139 Set codec_data on caps for avidemuxer.
16141 2004-07-12 David Schleef <ds@schleef.org>
16143 * configure.ac: Fix test for Objective C
16145 2004-07-12 Jan Schmidt <thaytan@mad.scientist.com>
16146 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
16147 (gst_gdk_pixbuf_chain):
16148 Add svg and pcx to template caps, and ensure that getcaps returns a
16149 subset of the template caps.
16150 Copy each row manually for output, as gdkpixbuf may pad the
16151 rowstride to a 32-bit word boundary.
16153 2004-07-12 Wim Taymans <wim@fluendo.com>
16155 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
16156 (gst_riff_create_video_template_caps):
16157 Fix the template caps to include some more media types.
16159 2004-07-12 Wim Taymans <wim@fluendo.com>
16161 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
16162 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
16163 (compare_ranks), (print_feature), (gst_decode_bin_init),
16164 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
16165 (try_to_link_1), (new_pad), (close_link), (type_found),
16166 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
16167 (gst_decode_bin_change_state), (plugin_init):
16168 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
16169 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
16170 (gst_play_base_bin_dispose), (queue_overrun),
16171 (gen_preroll_element), (remove_prerolls), (no_more_pads),
16172 (new_stream), (setup_source), (gst_play_base_bin_set_property),
16173 (gst_play_base_bin_get_property), (play_base_eos),
16174 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
16175 (gst_play_base_bin_remove_element),
16176 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
16177 (gst_play_base_bin_unlink_stream),
16178 (gst_play_base_bin_get_streaminfo):
16179 * gst/playback/gstplaybasebin.h:
16180 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
16181 (gst_play_bin_class_init), (gst_play_bin_init),
16182 (gst_play_bin_dispose), (gst_play_bin_set_property),
16183 (gst_play_bin_get_property), (gen_video_element),
16184 (gen_audio_element), (remove_sinks), (setup_sinks),
16185 (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
16186 (gst_play_bin_send_event), (gst_play_bin_get_formats),
16187 (gst_play_bin_convert), (gst_play_bin_get_query_types),
16188 (gst_play_bin_query), (plugin_init):
16189 * gst/playback/test4.c: (main):
16190 More fixes on reusing of the element.
16192 2004-07-11 Benjamin Otte <otte@gnome.org>
16194 * ext/mad/gstmad.c: (normal_seek):
16195 allow seeking for other methods than just SET
16197 2004-07-11 Andy Wingo <wingo@pobox.com>
16199 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
16200 float, "any" caps -> buffer_frames=[0,MAX].
16202 * gst/interleave/interleave.c (interleave_getcaps): Seems the core
16203 doesn't intersect our caps with the template any more. Do it
16205 (interleave_buffered_loop): Use g_newa instead of malloc/free.
16207 2004-07-09 Wim Taymans <wim@fluendo.com>
16209 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
16210 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
16211 (compare_ranks), (print_feature), (gst_decode_bin_init),
16212 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
16213 (try_to_link_1), (new_pad), (close_link), (type_found),
16214 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
16215 (gst_decode_bin_change_state), (plugin_init):
16216 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
16217 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
16218 (gst_play_base_bin_dispose), (queue_overrun),
16219 (gen_preroll_element), (remove_prerolls), (no_more_pads),
16220 (new_stream), (setup_source), (gst_play_base_bin_set_property),
16221 (gst_play_base_bin_get_property), (play_base_eos),
16222 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
16223 (gst_play_base_bin_remove_element),
16224 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
16225 (gst_play_base_bin_unlink_stream),
16226 (gst_play_base_bin_get_streaminfo):
16227 * gst/playback/gstplaybasebin.h:
16228 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
16229 (gst_play_bin_class_init), (gst_play_bin_init),
16230 (gst_play_bin_dispose), (gst_play_bin_set_property),
16231 (gst_play_bin_get_property), (gen_video_element),
16232 (gen_audio_element), (remove_sinks), (setup_sinks),
16233 (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
16234 (gst_play_bin_send_event), (gst_play_bin_get_formats),
16235 (gst_play_bin_convert), (gst_play_bin_get_query_types),
16236 (gst_play_bin_query), (plugin_init):
16237 * gst/playback/test4.c: (main):
16238 Work on object reuse and seeking.
16240 2004-07-09 Wim Taymans <wim@fluendo.com>
16242 * examples/seeking/seek.c: (iterate):
16243 Don't consume all CPU in the idle loop.
16245 2004-07-09 Wim Taymans <wim@fluendo.com>
16247 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
16248 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
16249 Add pad to element *after* setting the pad functions so that
16250 the scheduler can use the correct ones.
16252 2004-07-09 Wim Taymans <wim@fluendo.com>
16254 * ext/theora/theoradec.c: (theora_dec_from_granulepos),
16255 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
16256 Sync to keyframe after seek
16258 2004-07-09 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
16260 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
16261 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
16262 (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
16263 * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
16264 * ext/libvisual/visual.c: (gst_visual_change_state):
16265 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
16266 * ext/theora/theoradec.c: (theora_dec_change_state):
16267 * ext/theora/theoraenc.c: (theora_enc_change_state):
16268 * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
16269 * gst-libs/gst/navigation/navigation.c:
16270 * gst/adder/gstadder.c: (gst_adder_change_state):
16271 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
16272 (gst_audio_convert_get_buffer):
16273 * gst/multipart/multipartdemux.c:
16274 (gst_multipart_demux_change_state):
16275 * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
16276 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
16277 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
16278 * gst/videoscale/gstvideoscale.c:
16279 (gst_videoscale_handle_src_event):
16280 * gst/volume/gstvolume.c: (volume_chain_int16):
16281 don't assert in state change, this should be done by the base
16283 various debugging fixes.
16285 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
16288 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
16289 (gst_play_dispose), (gst_play_set_location),
16290 (gst_play_set_data_src), (gst_play_set_video_sink),
16291 (gst_play_set_audio_sink), (gst_play_set_visualization),
16292 (gst_play_connect_visualization), (gst_play_get_sink_element),
16293 (gst_play_get_all_by_interface):
16294 * gst-libs/gst/play/play.h:
16295 add new method to get elements implementing an interface.
16296 add various error logging
16298 2004-07-08 Wim Taymans <wim@fluendo.com>
16300 * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
16301 (make_mpeg_pipeline), (make_mpegnt_pipeline),
16302 (make_playerbin_pipeline), (query_durations_elems),
16303 (query_durations_pads), (query_positions_elems),
16304 (query_positions_pads), (update_scale), (iterate), (stop_seek),
16306 Added playbin seeking example.
16308 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
16310 * gst-libs/gst/play/play.c: (gst_play_set_location),
16311 (gst_play_set_data_src), (gst_play_set_video_sink),
16312 (gst_play_set_audio_sink), (gst_play_set_visualization),
16313 (gst_play_connect_visualization), (gst_play_get_framerate):
16314 use a macro to look up elements from hash table
16316 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
16318 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
16319 (gst_play_get_length_callback), (gst_play_set_location),
16320 (gst_play_seek_to_time), (gst_play_set_data_src),
16321 (gst_play_set_video_sink), (gst_play_set_audio_sink),
16322 (gst_play_set_visualization), (gst_play_connect_visualization),
16323 (gst_play_get_sink_element):
16324 - add debugging info
16325 - fix looking up sink elements by iterating over complete caps
16326 - put everything except for source and autoplugger in a complete bin
16328 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
16330 * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
16331 * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
16332 (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
16333 (gst_alsa_sink_write), (gst_alsa_sink_loop):
16334 * ext/alsa/gstalsasink.h:
16335 - add debugging info
16336 - clean up schizophrenia of data/buffer/event
16337 - fix double event unref error
16339 2004-07-08 Wim Taymans <wim@fluendo.com>
16341 * gst/playback/Makefile.am:
16342 Add headers to noinst
16344 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
16346 * tools/gst-launch-ext-m.m:
16347 * tools/gst-launch-ext.1.in:
16348 convert to the third millenium
16350 2004-07-07 David Schleef <ds@schleef.org>
16352 * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
16354 2004-07-07 Wim Taymans <wim@fluendo.com>
16356 * gst/playback/Makefile.am:
16357 * gst/playback/README:
16358 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
16359 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
16360 (compare_ranks), (print_feature), (gst_decode_bin_init),
16361 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
16362 (try_to_link_1), (new_pad), (close_link), (type_found),
16363 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
16365 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
16366 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
16367 (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
16368 (gen_preroll_element), (no_more_pads), (new_stream),
16369 (setup_source), (gst_play_base_bin_set_property),
16370 (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
16371 (gst_play_base_bin_add_element),
16372 (gst_play_base_bin_remove_element),
16373 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
16374 (gst_play_base_bin_unlink_stream),
16375 (gst_play_base_bin_get_streaminfo):
16376 * gst/playback/gstplaybasebin.h:
16377 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
16378 (gst_play_bin_class_init), (gst_play_bin_init),
16379 (gst_play_bin_dispose), (gst_play_bin_set_property),
16380 (gst_play_bin_get_property), (gen_video_element),
16381 (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
16382 (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
16383 (gst_play_bin_get_formats), (gst_play_bin_convert),
16384 (gst_play_bin_get_query_types), (gst_play_bin_query),
16386 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
16387 (gst_stream_info_get_type), (gst_stream_info_class_init),
16388 (gst_stream_info_init), (gst_stream_info_new),
16389 (gst_stream_info_dispose), (gst_stream_info_set_property),
16390 (gst_stream_info_get_property):
16391 * gst/playback/gststreaminfo.h:
16392 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
16394 * gst/playback/test2.c: (main):
16395 * gst/playback/test3.c: (update_scale), (main):
16396 More playbin fixes. Added README. Do better element filtering.
16397 Added base class to preroll media. Added test apps.
16399 2004-07-07 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
16401 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
16402 * ext/mpeg2dec/gstmpeg2dec.h:
16403 various debugging improvements. Reset stream to next picture
16404 instead of sequence header, otherwise seeks cannot work.
16406 2004-07-07 Wim Taymans <wim@fluendo.com>
16408 * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
16409 (gst_video_box_class_init), (gst_video_box_set_property),
16410 (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
16411 Use pad_alloc where possible.
16413 2004-07-07 Wim Taymans <wim@fluendo.com>
16415 * sys/oss/gstosselement.c: (gst_osselement_reset),
16416 (gst_osselement_parse_caps):
16417 * sys/oss/gstosselement.h:
16418 * sys/oss/gstosssrc.c: (gst_osssrc_get):
16419 Fix offset on osssrc.
16421 2004-07-07 Wim Taymans <wim@fluendo.com>
16423 * ext/theora/theora.c: (plugin_init):
16424 * ext/theora/theoradec.c: (theora_dec_from_granulepos),
16425 (theora_dec_src_query), (theora_dec_chain):
16426 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
16427 (theora_enc_sink_link), (theora_buffer_from_packet),
16428 (theora_push_packet), (theora_enc_chain):
16429 Fix theora granulepos calculation.
16430 Fix overflow in duration/position calculation.
16431 Bump rank to PRIMARY for theoradec.
16432 Use granulepos of last packet to calculate position.
16433 Set keyframe flag on buffers when needed.
16435 2004-07-06 David Schleef <ds@schleef.org>
16437 * gst/playback/Makefile.am: 'test' in bin_PROGRAMS? Are you
16438 serious? (Fixed, obviously.)
16440 2004-07-06 Thomas Vander Stichele <thomas at apestaart dot org>
16444 added Czech translation (Miloslav Trmac)
16446 2004-07-05 Wim Taymans <wim@fluendo.com>
16448 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
16449 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
16450 (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
16451 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
16452 (close_link), (type_found), (gst_decode_bin_set_property),
16453 (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
16454 (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
16455 (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
16456 (gst_decode_bin_query), (plugin_init):
16457 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
16458 (gst_play_bin_class_init), (gst_play_bin_init),
16459 (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
16460 (get_video_element), (new_pad), (setup_source),
16461 (gst_play_bin_set_property), (gst_play_bin_get_property),
16462 (gst_play_bin_change_state), (gst_play_bin_add_element),
16463 (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
16464 (gst_play_bin_send_event), (gst_play_bin_get_formats),
16465 (gst_play_bin_convert), (gst_play_bin_get_query_types),
16466 (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
16467 * gst/playback/test.c: (main):
16468 More fixes, cleaned up playbin, make it use decodebin. Added
16469 threaded property to playbin.
16471 2004-07-05 Wim Taymans <wim@fluendo.com>
16474 * gst/playback/Makefile.am:
16475 * gst/playback/decodetest.c: (main):
16476 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
16477 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
16478 (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
16479 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
16480 (close_link), (type_found), (gst_decode_bin_set_property),
16481 (gst_decode_bin_get_property), (gst_decode_bin_change_state),
16482 (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
16483 (gst_decode_bin_get_formats), (gst_decode_bin_convert),
16484 (gst_decode_bin_get_query_types), (gst_decode_bin_query),
16486 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
16487 (gst_play_bin_class_init), (gst_play_bin_init),
16488 (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
16489 (collect_sink_pads), (find_compatibles), (close_pad_link),
16490 (try_to_link_1), (new_pad), (close_link), (type_found),
16491 (setup_source), (gst_play_bin_set_property),
16492 (gst_play_bin_get_property), (gst_play_bin_factory_filter),
16493 (compare_ranks), (gst_play_bin_collect_factories),
16494 (gst_play_bin_change_state), (gst_play_bin_add_element),
16495 (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
16496 (gst_play_bin_send_event), (gst_play_bin_get_formats),
16497 (gst_play_bin_convert), (gst_play_bin_get_query_types),
16498 (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
16499 * gst/playback/test.c: (main):
16500 Added some playback helper elements and some test apps, very alpha
16503 2004-07-04 Benjamin Otte <otte@gnome.org>
16505 * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
16506 only restart audio when we indeed have an xrun to fix repeated
16507 xruns. Fix suggested by Giuliano Pochini.
16509 2004-07-03 David Schleef <ds@schleef.org>
16511 * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
16512 call to gst_debug_log() if debugging is disabled (bug #145118)
16514 2004-07-03 Benjamin Otte <otte@gnome.org>
16516 * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
16517 use our own functions for restarting the alsa device.
16518 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
16519 I should apply patches myself - use MIN for the third argument, not
16520 the second, this fixes seeking
16522 2004-07-02 David Schleef <ds@schleef.org>
16524 * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
16525 (gst_flacdec_write): Actually, GST_PAD_CAPS() has nothing to
16528 2004-07-02 David Schleef <ds@schleef.org>
16530 * ext/flac/gstflacdec.c: (gst_flacdec_write): Set duration on
16531 output buffers. Fix logic mistake. (bug #144866)
16533 2004-07-02 David Schleef <ds@schleef.org>
16535 * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
16536 on X. (bug #144753)
16538 2004-07-02 David Schleef <ds@schleef.org>
16540 * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
16541 (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
16543 * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
16544 (gst_osselement_rate_probe_check): Add another workaround for
16545 buggy drivers (bug #145336)
16547 2004-07-02 David Schleef <ds@schleef.org>
16549 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
16550 Most systems don't have MSG_NOSIGNAL.
16552 2004-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
16555 * gst-libs/gst/colorbalance/Makefile.am:
16556 * gst-libs/gst/mixer/Makefile.am:
16557 * gst-libs/gst/play/Makefile.am:
16558 * gst-libs/gst/tuner/Makefile.am:
16559 (hopefully) fix both install and dist and make error message useful.
16560 needs testing across automakes.
16562 2004-07-02 Benjamin Otte <otte@gnome.org>
16564 * ext/ogg/gstogg.c: (plugin_init):
16565 we require bytestream now
16566 * ext/ogg/gstoggdemux.c:
16567 huge diff to implement chain setup in a fast and generic way. This
16568 improves tag reading and startup of huge files (read: Theora videos)
16569 quite a bit. It probably contains bugs, too, so please test.
16570 Seeking is not improved to the fast method.
16572 2004-06-29 Wim Taymans <wim@fluendo.com>
16574 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
16575 * ext/ogg/gstoggmux.c:
16576 Fix memleak in oggdemux when running unconnected pads.
16577 doc update in mux, start working on keyframe mode.
16579 2004-06-29 Benjamin Otte <otte@gnome.org>
16581 * sys/oss/gstosssink.c:
16582 * sys/oss/gstosssrc.c:
16583 advertise correct template caps - we indeed do non-native endianness
16584 and 8bit audio has no endianness
16585 * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
16586 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
16587 avoid (wrong) duplications in getcaps function and return
16590 2004-06-29 Wim Taymans <wim@fluendo.com>
16592 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
16593 (gst_multifdsink_class_init), (gst_multifdsink_add),
16594 (gst_multifdsink_remove), (gst_multifdsink_clear),
16595 (gst_multifdsink_client_remove),
16596 (gst_multifdsink_handle_client_read),
16597 (gst_multifdsink_client_queue_data),
16598 (gst_multifdsink_client_queue_caps),
16599 (gst_multifdsink_client_queue_buffer),
16600 (gst_multifdsink_handle_client_write),
16601 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
16602 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
16603 (gst_multifdsink_init_send), (gst_multifdsink_close):
16604 Fix wrong GList iteration that could crash the server when
16605 more then 2 clients disconnect at the same time. Read all the
16606 pending commands in one batch to recover from command storms under
16609 2004-06-28 Wim Taymans <wim@fluendo.com>
16611 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
16612 (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
16613 (gst_videomixer_pad_set_property),
16614 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
16615 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
16616 (gst_videomixer_class_init), (gst_videomixer_init),
16617 (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
16618 (pad_zorder_compare), (gst_videomixer_sort_pads),
16619 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
16620 (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
16621 (gst_videomixer_update_queues), (gst_videomixer_loop),
16623 Avoid divide by zero, choose masterpad as the pad with the highest
16626 2004-06-27 Julien Moutte <julien@moutte.net>
16628 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
16629 (gst_ximagesink_xwindow_new):
16630 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
16631 (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
16632 function directly. We might want to call it from somewhere else one day.
16634 2004-06-27 Julien Moutte <julien@moutte.net>
16636 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
16637 (gst_ximagesink_xwindow_new):
16638 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
16639 (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
16640 window decorations.
16642 2004-06-27 Wim Taymans <wim@fluendo.com>
16644 * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
16645 (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
16646 (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
16647 (gst_dvdec_set_property), (gst_dvdec_get_property):
16648 * ext/dv/gstdvdec.h:
16649 Implement drop_factor property to lower the framerate with
16652 2004-06-27 Thomas Vander Stichele <thomas at apestaart dot org>
16654 * gst-libs/gst/colorbalance/Makefile.am:
16655 * gst-libs/gst/mixer/Makefile.am:
16656 * gst-libs/gst/play/Makefile.am:
16657 * gst-libs/gst/tuner/Makefile.am:
16658 unbreak Company's fix that didn't install the -enum.h files
16660 2004-06-27 Wim Taymans <wim@fluendo.com>
16662 * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
16663 (gst_dvdec_change_state):
16664 * ext/dv/gstdvdec.h:
16665 Fix timestamp, duration and offset of the buffers.
16667 2004-06-27 Wim Taymans <wim@fluendo.com>
16669 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
16670 (gst_multifdsink_class_init), (gst_multifdsink_add),
16671 (gst_multifdsink_remove), (gst_multifdsink_clear),
16672 (gst_multifdsink_client_remove),
16673 (gst_multifdsink_handle_client_read),
16674 (gst_multifdsink_client_queue_data),
16675 (gst_multifdsink_client_queue_caps),
16676 (gst_multifdsink_client_queue_buffer),
16677 (gst_multifdsink_handle_client_write),
16678 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
16679 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
16680 (gst_multifdsink_init_send), (gst_multifdsink_close):
16681 * gst/tcp/gstmultifdsink.h:
16682 * gst/tcp/gsttcpserversink.c:
16683 (gst_tcpserversink_handle_server_read),
16684 (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
16685 More multifdsink fixes, more recovery policy fixes.
16686 Removed stupid g_print
16688 2004-06-26 Wim Taymans <wim@fluendo.com>
16690 * gst/tcp/Makefile.am:
16691 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
16692 (gst_multifdsink_get_type), (gst_multifdsink_base_init),
16693 (gst_multifdsink_class_init), (gst_multifdsink_init),
16694 (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
16695 (gst_multifdsink_handle_client_read),
16696 (gst_multifdsink_client_queue_data),
16697 (gst_multifdsink_client_queue_caps),
16698 (gst_multifdsink_client_queue_buffer),
16699 (gst_multifdsink_handle_client_write),
16700 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
16701 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
16702 (gst_multifdsink_chain), (gst_multifdsink_set_property),
16703 (gst_multifdsink_get_property), (gst_multifdsink_init_send),
16704 (gst_multifdsink_close), (gst_multifdsink_change_state):
16705 * gst/tcp/gstmultifdsink.h:
16706 * gst/tcp/gsttcpplugin.c: (plugin_init):
16707 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
16708 (gst_tcpserversink_class_init), (gst_tcpserversink_init),
16709 (gst_tcpserversink_handle_server_read),
16710 (gst_tcpserversink_handle_select),
16711 (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
16712 (gst_tcpserversink_init_send), (gst_tcpserversink_close):
16713 * gst/tcp/gsttcpserversink.h:
16714 Added multifdsink, made tcpserversink a subclass of fdsink, removed
16715 one of the locks, added recovery policy to multifdsink.
16717 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
16719 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
16720 fix decision for when getting frames with same timestamp
16721 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
16722 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
16723 (gst_v4lsrc_get_property):
16724 * sys/v4l/gstv4lsrc.h:
16725 add latency offset property
16727 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
16729 * gst/videorate/gstvideorate.c: (gst_videorate_chain),
16731 fix debugging. add category.
16733 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
16735 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
16738 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
16740 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
16741 (gst_alsa_src_get_time), (gst_alsa_src_loop),
16742 (gst_alsa_src_change_state):
16743 return a time that is in sync with the element's processing
16745 2004-06-25 Wim Taymans <wim@fluendo.com>
16747 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
16748 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
16749 (gst_tcpserversink_client_remove),
16750 (gst_tcpserversink_handle_client_read),
16751 (gst_tcpserversink_client_queue_data),
16752 (gst_tcpserversink_client_queue_caps),
16753 (gst_tcpserversink_client_queue_buffer),
16754 (gst_tcpserversink_handle_client_write),
16755 (gst_tcpserversink_queue_buffer),
16756 (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
16757 (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
16758 (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
16759 (gst_tcpserversink_close):
16760 * gst/tcp/gsttcpserversink.h:
16761 Serversink rewrite. Really do non blocking writes to clients and
16762 maintain an internal queue to handle slower clients while not
16763 disturbing fast clients.
16765 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
16767 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
16768 better debug, don't override OFFSET and OFFSET_END
16770 2004-06-25 Iain <iain@prettypeople.org>
16772 * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
16773 name=source for the wavparse pipeline.
16775 2004-06-24 Johan Dahlin <johan@gnome.org>
16777 * ext/theora/theoraenc.c (theora_enc_chain): Call
16778 gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
16779 streamheader caps are set correctly.
16781 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
16783 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
16784 (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
16785 respect minimum bitrate; same could be done for max bitrate
16787 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
16789 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
16790 (gst_vorbisenc_setup):
16791 fix sample rate range
16793 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
16795 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
16796 (gst_oggvorbisenc_setup):
16797 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
16798 (gst_vorbisenc_setup):
16799 resolve ambiguities in code and description
16801 2004-06-24 Wim Taymans <wim@fluendo.com>
16803 * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
16804 * ext/alsa/gstalsa.h:
16805 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
16806 (gst_alsa_src_update_avail), (gst_alsa_src_loop):
16807 Use alsa trigger_tstamp to get the timestamp of the first
16808 sample in the buffer for more precise sync. Some cleanups.
16810 2004-06-24 Wim Taymans <wim@fluendo.com>
16812 * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
16813 (gst_audiorate_init), (gst_audiorate_chain),
16814 (gst_audiorate_set_property), (gst_audiorate_get_property):
16815 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
16816 (gst_videorate_chain):
16817 Added some logging, fixed an overflow bug in videorate.
16819 2004-06-24 Benjamin Otte <otte@gnome.org>
16821 * ext/kio/Makefile.am:
16822 fix for builddir != srcdir and distcheck
16824 2004-06-24 Benjamin Otte <otte@gnome.org>
16826 * gst-libs/gst/colorbalance/Makefile.am:
16827 * gst-libs/gst/mixer/Makefile.am:
16828 * gst-libs/gst/play/Makefile.am:
16829 * gst-libs/gst/tuner/Makefile.am:
16830 * gst/tcp/Makefile.am:
16831 * sys/dxr3/Makefile.am:
16832 don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
16834 Also add all *.list files that were missing.
16836 add a distcheck hook to ensure the above doesn't happen again.
16838 2004-06-23 David I. Lehn <dlehn@users.sourceforge.net>
16840 * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
16842 2004-06-23 Colin Walters <walters@redhat.com>
16844 * m4/Makefile.am: Distribute gst-fionread.m4.
16846 2004-06-23 Thomas Vander Stichele <thomas at apestaart dot org>
16848 * configure.ac: back to dev
16850 2004-06-23 Wim Taymans <wim@fluendo.com>
16852 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
16853 (gst_alsa_xrun_recovery):
16854 * ext/alsa/gstalsa.h:
16855 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
16856 (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
16857 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
16858 (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
16859 (gst_alsa_src_loop):
16860 Add clock to alsasrc. Take new capture timestamp when
16861 restarting after an overrun. Split up some functions between
16862 alsasrc and alsasink.
16864 === release 0.8.2 ===
16866 2004-06-23 Thomas Vander Stichele <thomas at apestaart dot org>
16868 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
16869 (gst_alsa_change_state), (gst_alsa_update_avail),
16870 (gst_alsa_xrun_recovery):
16871 * ext/alsa/gstalsa.h:
16872 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
16873 merge back changes from release
16875 2004-06-23 Wim Taymans <wim@fluendo.com>
16877 * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
16878 (gst_audiorate_init), (gst_audiorate_chain),
16879 (gst_audiorate_set_property), (gst_audiorate_get_property):
16880 Implement sample dropping and notify
16882 2004-06-22 Wim Taymans <wim@fluendo.com>
16884 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
16885 (theora_enc_sink_link), (theora_buffer_from_packet),
16886 (theora_push_packet), (theora_enc_chain):
16887 Some cleanups, make sure the timestamps are correct.
16889 2004-06-22 Wim Taymans <wim@fluendo.com>
16891 * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
16892 (gst_alsa_change_state), (gst_alsa_update_avail),
16893 (gst_alsa_xrun_recovery):
16894 * ext/alsa/gstalsa.h:
16895 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
16896 Cleanups, take queued samples into account when reporting
16899 2004-06-22 Wim Taymans <wim@fluendo.com>
16901 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
16902 (gst_videorate_init):
16903 Initialize the property as well.
16905 2004-06-22 Wim Taymans <wim@fluendo.com>
16907 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
16908 (gst_videorate_init), (gst_videorate_chain),
16909 (gst_videorate_set_property), (gst_videorate_get_property):
16910 Add property to make videorate silent.
16911 Add property to prefer new frames over old ones.
16913 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
16915 * sys/osxvideo/Makefile.am:
16916 Workaround so that the osxvideo .so file gets linked with the
16917 Cocoa, OpenGL and QuickTime frameworks
16919 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
16921 * sys/osxaudio/Makefile.am:
16922 Workaround so that the osxaudio .so file gets linked with the
16923 CoreAudio framework
16925 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
16928 Whoops, my fault...fixed build issues
16930 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
16933 Add objective-c support if running in Darwin/Mac OS X
16936 * sys/osxvideo/Makefile.am:
16937 * sys/osxvideo/osxvideosink.h:
16938 * sys/osxvideo/osxvideosink.m:
16939 * sys/osxvideo/cocoawindow.h:
16940 * sys/osxvideo/cocoawindow.m:
16941 Add osxvideosink, a cocoa-based osx video sink
16944 2004-06-19 Jan Schmidt <thaytan@mad.scientist.com>
16945 * ext/dvdnav/gst-dvd:
16946 Grab the gconf key from the right spot
16947 * gst/debug/gstnavseek.c: (gst_navseek_init),
16948 (gst_navseek_segseek), (gst_navseek_handle_src_event),
16949 (gst_navseek_chain):
16950 * gst/debug/gstnavseek.h:
16951 Add 's', 'e' and 'l' keypresses to navseek to define the start,end
16952 and loop parameters of a segment seek.
16953 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
16954 (gst_videotestsrc_get_event_masks),
16955 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
16956 * gst/videotestsrc/gstvideotestsrc.h:
16957 Add seeking support to videotestsrc
16958 Initialise the timestamp_offset variable.
16960 2004-06-18 Wim Taymans <wim@fluendo.com>
16962 * ext/sidplay/gstsiddec.cc:
16963 Fix negotiation and set correct end offset.
16965 2004-06-18 Thomas Vander Stichele <thomas at apestaart dot org>
16967 * configure.ac: branch and prerelease
16969 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
16971 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
16972 (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
16973 (gst_tcpclientsrc_init_receive):
16974 * gst/tcp/gsttcpclientsrc.h:
16975 read caps when connecting to server for GDP so we set them correctly
16977 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
16979 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
16980 notify drops and duplicates
16981 * gst/videoscale/videoscale.c: (videoscale_get_structure):
16982 no good reason to limit ourselves to 100x100
16984 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
16986 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
16987 (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
16988 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
16989 (gst_v4lsrc_get_property):
16990 * sys/v4l/gstv4lsrc.h:
16991 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
16992 (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
16993 (gst_v4l_set_audio):
16994 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
16995 (gst_v4lsrc_try_capture):
16996 * sys/v4l/v4lsrc_calls.h:
16997 change try_palette to more general try_capture
16998 add autoprobe option so we can turn off autoprobing
17001 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
17005 * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
17006 (gst_ximagesink_class_init):
17007 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
17008 (gst_xvimagesink_class_init):
17009 run them as finalize, not dispose, since dispose can be invoked
17012 2004-06-17 Wim Taymans <wim@fluendo.com>
17014 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
17015 (gst_alsa_get_time), (gst_alsa_xrun_recovery):
17016 * ext/alsa/gstalsa.h:
17017 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
17018 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
17019 (gst_alsa_src_change_state):
17020 * ext/alsa/gstalsasrc.h:
17021 Make the xrun code timestamp and offset the buffers correctly.
17022 moved the clock to the base class, use alsa methods to get time.
17023 Do correct timestamping on outgoing buffers.
17025 2004-06-17 Wim Taymans <wim@fluendo.com>
17027 * gst/audiorate/Makefile.am:
17028 * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
17029 (gst_audiorate_base_init), (gst_audiorate_class_init),
17030 (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
17031 (gst_audiorate_set_property), (gst_audiorate_get_property),
17032 (gst_audiorate_change_state), (plugin_init):
17033 Added an audiorate converter that fills in gaps.
17035 2004-06-17 Johan Dahlin <johan@gnome.org>
17037 * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
17039 2004-06-16 Wim Taymans <wim@fluendo.com>
17041 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
17042 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
17043 (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
17044 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
17045 (gst_v4lsrc_get_property):
17046 * sys/v4l/gstv4lsrc.h:
17047 Added a copy mode to v4lsrc where it will output a copied version
17048 of its internal hardware buffer.
17049 Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
17052 2004-06-16 Wim Taymans <wim@fluendo.com>
17054 * sys/oss/gstosssrc.c: (gst_osssrc_get):
17057 2004-06-16 Wim Taymans <wim@fluendo.com>
17059 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
17060 (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
17061 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
17062 (gst_v4lsrc_get_property):
17063 * sys/v4l/gstv4lsrc.h:
17064 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
17065 Added a sync mode enum property to control v4lsrc timestamp method
17066 Removed the use-fixed-fps property and moved functionality in
17068 Don't error on an error value from v4l-conf, it might not always
17071 2004-06-16 Wim Taymans <wim@fluendo.com>
17073 * gst/videorate/Makefile.am:
17074 * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
17075 (gst_videorate_base_init), (gst_videorate_class_init),
17076 (gst_videorate_getcaps), (gst_videorate_link),
17077 (gst_videorate_init), (gst_videorate_chain),
17078 (gst_videorate_set_property), (gst_videorate_get_property),
17079 (gst_videorate_change_state), (plugin_init):
17080 Added a video timestamp corrector.
17082 2004-06-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
17084 fixed a potential leak with previous commit
17086 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
17088 2004-06-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
17090 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
17091 Added missing refcount, fixes bug #144425
17092 Cheers Tim for finding the bug
17094 2004-06-15 Thomas Vander Stichele <thomas at apestaart dot org>
17096 * sys/v4l/gstv4l.c: (plugin_init):
17097 * sys/v4l/gstv4lcolorbalance.c:
17098 * sys/v4l/gstv4lcolorbalance.h:
17099 * sys/v4l/gstv4lelement.c:
17100 * sys/v4l/gstv4lelement.h:
17101 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
17102 * sys/v4l/gstv4lmjpegsink.h:
17103 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
17104 * sys/v4l/gstv4lmjpegsrc.h:
17105 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
17106 (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
17107 (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
17108 * sys/v4l/gstv4lsrc.h:
17109 * sys/v4l/gstv4ltuner.c:
17110 * sys/v4l/gstv4ltuner.h:
17111 * sys/v4l/gstv4lxoverlay.c:
17112 * sys/v4l/gstv4lxoverlay.h:
17113 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
17114 (gst_v4l_set_window), (gst_v4l_enable_overlay):
17115 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
17116 (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
17117 (gst_v4l_set_audio):
17118 * sys/v4l/v4l_calls.h:
17119 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
17120 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
17121 (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
17122 (gst_v4lmjpegsink_playback_init),
17123 (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
17124 (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
17125 (gst_v4lmjpegsink_playback_stop),
17126 (gst_v4lmjpegsink_playback_deinit):
17127 * sys/v4l/v4lmjpegsink_calls.h:
17128 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
17129 (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
17130 (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
17131 (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
17132 (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
17133 (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
17134 * sys/v4l/v4lmjpegsrc_calls.h:
17135 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
17136 (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
17137 (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
17138 (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
17139 (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
17140 (gst_v4lsrc_try_palette):
17141 * sys/v4l/v4lsrc_calls.h:
17142 bunch of paranoia cleanups
17144 2004-06-14 David Schleef <ds@schleef.org>
17146 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
17147 (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
17148 Send discont events and change timestamps appropriately when
17149 we get a seek event. (bug #144240)
17150 * ext/cdparanoia/gstcdparanoia.h:
17152 2004-06-14 Benjamin Otte <otte@gnome.org>
17154 * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
17155 snd_pcm_hw_params_set_rate since the latter fails for no good
17156 reason on some setups.
17158 2004-06-14 David Schleef <ds@schleef.org>
17160 * gst/volume/demo.c: (value_changed_callback): exp10() is not
17161 standard. Thank you for playing.
17163 2004-06-14 Wim Taymans <wim@fluendo.com>
17165 * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
17166 Patch 1.3 broke the ordering of the colorspace info and
17167 made the plugin basically work by coincidence, reordered
17170 2004-06-14 Thomas Vander Stichele <thomas at apestaart dot org>
17172 * ext/lame/gstlame.c:
17173 * ext/mad/gstmad.c:
17174 sync caps. Make sure mad can only output a list of rates, not
17175 a full range. In the future, have three caps lists for each of the
17176 mpeg versions. Change mpegversion to a double as well.
17178 2004-06-14 Thomas Vander Stichele <thomas at apestaart dot org>
17180 * gst/volume/.cvsignore:
17181 * gst/volume/Makefile.am:
17182 * gst/volume/demo.c: (value_changed_callback), (idler),
17183 (setup_gui), (main):
17184 added small demo app
17186 2004-06-13 Jan Schmidt <thaytan@mad.scientist.com>
17187 * ext/esd/esdsink.c: (gst_esdsink_change_state):
17188 * ext/esd/esdsink.h:
17189 Close the esd connection on pause, because esd will just wait -
17190 blocking all other esd clients indefinitely.
17192 2004-06-12 Christophe Fergeau <teuf@gnome.org>
17194 * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
17195 previous commit with GST_DEBUG
17197 2004-06-12 Thomas Vander Stichele <thomas at apestaart dot org>
17200 add a header check for a dvdread header in dvdnav. Fixes #133002
17202 2004-06-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
17204 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
17205 * gst/tcp/gsttcpclientsink.h:
17206 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
17207 * gst/tcp/gsttcpclientsrc.h:
17208 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
17209 (gst_tcpserversink_handle_server_read),
17210 (gst_tcpserversink_init_send):
17211 * gst/tcp/gsttcpserversink.h:
17212 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
17213 * gst/tcp/gsttcpserversrc.h:
17214 Modified the tcp plugins so they are portable (IPv4,IPv6, any future
17217 2004-06-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
17220 Added ogg library so that OSX detects libtheora properly
17222 2004-06-11 Wim Taymans <wim@fluendo.com>
17224 * ext/theora/theoradec.c: (theora_dec_chain),
17225 (theora_dec_change_state):
17226 Don't try to decode frames before we received a keyframe.
17228 2004-06-11 Wim Taymans <wim@fluendo.com>
17230 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
17231 (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
17232 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
17233 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
17234 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
17235 Added property to set the maximum delay of a page.
17237 2004-06-10 Wim Taymans <wim@fluendo.com>
17239 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
17240 (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
17241 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
17242 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
17243 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
17244 Added max-delay property to control the maximum amount
17245 of data to put in one page.
17247 2004-06-10 Wim Taymans <wim@fluendo.com>
17249 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
17250 (gst_theora_enc_init), (theora_enc_sink_link),
17251 (theora_buffer_from_packet), (theora_enc_set_property),
17252 (theora_enc_get_property):
17253 Set duration on encoded buffer, added some more properties
17255 2004-06-10 Wim Taymans <wim@fluendo.com>
17257 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
17258 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
17259 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
17260 * ext/theora/theoraenc.c: (theora_enc_chain):
17261 Fix refcounting bugs
17263 2004-06-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
17265 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
17266 (gst_asf_demux_loop), (gst_asf_demux_process_file),
17267 (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
17268 (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
17269 (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
17270 (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
17271 (gst_asf_demux_change_state):
17272 * gst/asfdemux/gstasfdemux.h:
17273 You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
17274 feels like. I think we should set a new requirement for demuxers
17275 from now on to implement sane loop functions, data loops, query
17276 and seek functions before first commit into CVS. And this commit
17277 fixes all of the above.
17279 2004-06-10 Christophe Fergeau <teuf@gnome.org>
17281 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
17282 vorbis comments are properly encoded in UTF-8 before adding them
17285 2004-06-09 Benjamin Otte <otte@gnome.org>
17287 * ext/alsa/gstalsa.c: (add_channels):
17288 handle min <= max correctly
17289 * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
17290 (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
17291 add fixation functions so we fixate correctly. No preferring of alaw
17292 anymore because it's the first structure.
17293 * ext/alsa/gstalsa.h:
17294 * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
17295 (gst_alsa_hw_params_dump):
17296 add functions to ease debugging in alsalib
17297 * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
17298 (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
17299 (gst_alsa_start_audio):
17300 only specify hw params if we really setup a format (fixes #134007 -
17301 or at least works around it)
17303 2004-06-09 Wim Taymans <wim@fluendo.com>
17305 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
17306 (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
17307 (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
17308 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
17309 (gst_ogg_mux_loop):
17310 Use stream caps to setup the initial pages in the ogg stream.
17311 Correctly set the streamheader caps on the srcpad.
17313 2004-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
17315 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
17316 (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
17317 (gst_v4lsrc_getcaps):
17318 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
17319 (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
17320 add querying of fps lists for webcams. Negotiating to a framerate
17323 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
17325 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
17326 (theora_push_buffer), (theora_push_packet),
17327 (theora_set_header_on_caps), (theora_enc_chain):
17328 mark buffers and put on streamheader, raw theora streaming
17329 now works too, whee
17331 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
17333 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
17334 (gst_tcp_gdp_read_caps):
17335 do a looping read for caps and GDP headers too
17337 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
17339 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
17340 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
17341 return EOS instead of NULL in _get
17343 2004-06-08 Wim Taymans <wim@fluendo.com>
17345 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
17346 (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
17347 (gst_tcp_gdp_write_caps):
17348 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
17349 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
17350 (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
17353 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
17355 * ext/vorbis/Makefile.am:
17356 * ext/vorbis/vorbis.c: (plugin_init):
17357 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
17358 (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
17359 (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
17360 (vorbis_parse_change_state):
17361 * ext/vorbis/vorbisparse.h:
17362 adding a vorbisparse element that marks the buffers, streaming
17363 raw vorbis using GDP now works, whee
17365 2004-06-08 Wim Taymans <wim@fluendo.com>
17367 * ext/jpeg/Makefile.am:
17369 * ext/jpeg/gstjpeg.c: (plugin_init):
17370 * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
17371 (gst_smokedec_base_init), (gst_smokedec_class_init),
17372 (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
17373 * ext/jpeg/gstsmokedec.h:
17374 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
17375 (gst_smokeenc_base_init), (gst_smokeenc_class_init),
17376 (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
17377 (gst_smokeenc_resync), (gst_smokeenc_chain),
17378 (gst_smokeenc_set_property), (gst_smokeenc_get_property):
17379 * ext/jpeg/gstsmokeenc.h:
17380 * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
17381 (smokecodec_flush_destination), (smokecodec_term_destination),
17382 (smokecodec_init_source), (smokecodec_fill_input_buffer),
17383 (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
17384 (smokecodec_term_source), (smokecodec_encode_new),
17385 (smokecodec_decode_new), (smokecodec_info_free),
17386 (smokecodec_set_quality), (smokecodec_get_quality),
17387 (smokecodec_set_threshold), (smokecodec_get_threshold),
17388 (smokecodec_set_bitrate), (smokecodec_get_bitrate),
17389 (find_best_size), (abs_diff), (put), (smokecodec_encode),
17390 (smokecodec_parse_header), (smokecodec_decode):
17391 * ext/jpeg/smokecodec.h:
17392 Added a new simple jpeg based codec
17394 2004-06-08 Wim Taymans <wim@fluendo.com>
17396 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
17397 (gst_multipart_mux_loop):
17400 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
17402 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
17403 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
17404 (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
17405 (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
17406 (gst_tcpserversink_init_send), (gst_tcpserversink_close):
17407 * gst/tcp/gsttcpserversink.h:
17408 take streamheader into account
17410 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
17412 * gst/level/Makefile.am:
17413 * gst/level/gstlevel.c: (gst_level_class_init):
17414 clean up marshal generation
17416 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
17418 * gst/tcp/Makefile.am:
17419 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
17420 (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
17421 (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
17422 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
17423 (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
17424 (gst_tcpclientsrc_get_property):
17425 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
17426 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
17427 (gst_tcpserversink_handle_client_read),
17428 (gst_tcpserversink_handle_client_write),
17429 (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
17430 * gst/tcp/gsttcpserversink.h:
17431 add signals client-added and client-removed
17432 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
17433 (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
17434 (gst_tcpserversrc_get_property):
17435 uniformized, change default protocol to NONE
17436 * gst/tcp/gsttcp-marshal.list: added
17437 2004-06-07 Benjamin Otte <otte@gnome.org>
17439 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
17440 handle discont events if they happen before caps nego
17442 2004-06-07 Wim Taymans <wim@fluendo.com>
17444 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
17445 (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
17446 (gst_multipart_demux_plugin_init):
17447 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
17448 (gst_multipart_mux_init), (gst_multipart_mux_loop),
17449 (gst_multipart_mux_change_state):
17450 Small updates, fix a memleak
17452 2004-06-07 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17454 * configure.ac: OSS portability
17455 * ext/arts/gst_arts.c: idem
17456 * sys/oss/gstosselement.c: idem
17457 * sys/oss/gstossmixer.c: idem
17458 * sys/oss/gstosssink.c: idem
17459 * sys/oss/gstosssrc.c: idem
17460 * sys/oss/oss_probe.c: idem
17461 - check for soundcard.h in different places for some BSD
17463 2004-06-07 Jan Schmidt <thaytan@mad.scientist.com>
17466 Add me to the authors file
17468 Increase the libdv requirement to >= version 0.100
17469 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
17470 (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
17471 (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
17472 * ext/dv/gstdvdec.h:
17473 Add support for the new_media flag when sending DISCONT events
17474 Make the querying work when video pad is not linked
17476 2004-06-07 Tim-Philipp M??ller <t.i.m@zen.co.uk>
17478 reviewed by Benjamin Otte <otte@gnome.org>
17480 * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
17481 create a NULL-initialized array of pads, so we don't think they
17482 exist already. (fixes #143130)
17484 2004-06-07 Benjamin Otte <otte@gnome.org>
17486 * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
17487 (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
17488 (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
17489 don't use // coments
17491 2004-06-07 Benjamin Otte <otte@gnome.org>
17493 * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
17494 cast to GstClockTime to get higher granularity
17495 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
17496 use gst_element_set_time_delay to get the exact time
17497 * ext/mad/gstmad.c: (gst_mad_chain):
17498 use the negotiated rate instead of the current frame's rate which
17499 might be wrong because of bit errors. This avoids emitting totally
17500 bogus timestamps and screwing sync.
17503 2004-06-07 Tim-Philipp M??ller <t.i.m@zen.co.uk>
17505 reviewed by Benjamin Otte <otte@gnome.org>
17507 * gst/adder/gstadder.c: (gst_adder_loop):
17508 properly error out when no negotiation has happened yet. (fixes
17511 2004-06-06 Benjamin Otte <otte@gnome.org>
17513 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
17514 forward correctly transformed offset in discont events. Based on
17515 patch by Arwed v. Merkatz. (fixes #142851)
17517 2004-06-06 David Schleef <ds@schleef.org>
17519 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
17520 G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS. Should fix compile
17521 problems on several systems.
17523 2004-06-06 Benjamin Otte <otte@gnome.org>
17525 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
17526 use explicit caps on the srcpad
17527 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
17528 properly error out if caps couldn't be set (fixes #142764)
17530 2004-06-06 Benjamin Otte <otte@gnome.org>
17532 * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
17533 (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
17534 (gst_alsa_start_audio):
17535 - don't call set_periods_integer anymore, it breaks the
17536 configuration randomly
17537 - call snd_pcm_hw_params_set_access directly instead of using masks
17538 - don't fail if the sw_params can't be set, just use the default
17539 params and hope it works. Alsalib has weird issues when you touch
17540 sw_params and does no proper error reporting about what failed.
17541 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
17542 (gst_alsa_close_audio):
17543 make our alsa debugging go via gst debugging and not conditionally
17545 * ext/alsa/gstalsa.h:
17546 add ALSA_DEBUG_FLUSH macro
17547 * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
17549 wrap alsa errors to be printed via the gst debugging system and not
17552 2004-06-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
17554 * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
17555 (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
17556 (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
17557 (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
17558 (qtdemux_parse_trak):
17559 * gst/qtdemux/qtdemux.h:
17560 Bitch. Also known as seeking, querying & co.
17561 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
17562 (gst_osssink_change_state):
17563 * sys/oss/gstosssink.h:
17564 Resyncing is for weenies, this hack is no longer needed and was
17565 broken anyway (since it - unintendedly - always leaves resync to
17568 2004-06-05 Andrew Turner <zxombie@hotpop.com>
17570 * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
17571 * gst/tcp/gsttcpclientsrc.h: idem
17572 - define MSG_NOSIGNAL if not done
17573 - include unistd.h for off_t
17576 2004-06-05 Benjamin Otte <otte@gnome.org>
17579 * ext/kio/Makefile.am:
17580 check for qt's moc preprocessor explicitly and use it
17582 2004-06-03 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
17584 * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
17585 don't get a signal for EPIPE on socket writes
17586 (somebody check if this works on other platforms)
17588 2004-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
17590 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
17591 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
17592 check error condition on available samples correctly
17594 2004-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
17596 * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
17598 * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
17599 (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
17600 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
17601 (gst_tcpserversrc_gdp_read_header):
17602 use ssize_t over size_t since the former is signed and thus the
17603 check for error codes can work
17605 2004-06-02 Wim Taymans <wim@fluendo.com>
17609 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
17610 (gst_multipart_mux_loop):
17613 2004-06-02 Wim Taymans <wim@fluendo.com>
17615 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
17616 (gst_multipart_mux_init), (gst_multipart_mux_loop),
17617 (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
17618 (gst_multipart_mux_change_state):
17619 Added configurable boundary specifier, added the value as a
17620 caps field as well.
17622 2004-06-02 Zaheer Abbas Merali <zaheerabbas at merali dot org>
17624 * gst/tcp/gsttcp.c:
17625 * gst/tcp/gsttcpclientsrc.c:
17626 * gst/tcp/gsttcpclientsrc.h:
17627 * gst/tcp/gsttcpserversrc.c:
17628 - portability fix, to compile on OSX
17631 * sys/osxaudio/gstosxaudioelement.c:
17632 * sys/osxaudio/gstosxaudiosink.c:
17633 * sys/osxaudio/gstosxaudiosrc.c:
17634 - compilation warnings on OSX
17637 2004-06-02 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17639 * ext/vorbis/vorbisdec.c : sign warning fixes
17641 * gst-libs/gst/mixer/mixertrack.c :
17642 do no use defines which are glib 2.4 specific
17644 2004-06-01 Christophe Fergeau <teuf@gnome.org>
17646 * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
17647 buffer since libflac doesn't expect it (reports a sync error when
17648 it encounters that)
17651 2004-06-01 Owen Fraser-Green <owen@discobabe.net>
17653 * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
17654 * gst-libs/gst/mixer/mixertrack.c:
17655 (gst_mixer_track_get_property), (get_mixer_track_init),
17656 (get_mixer_track_get_property): Added property accessors
17657 * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
17658 * gst-libs/gst/mixer/mixeroptions.c:
17659 (gst_mixer_options_get_values): Added
17660 * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
17661 * gst-libs/gst/mixer/mixer.c: Fixed comment
17664 2004-06-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
17666 * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
17667 improve error messages on open
17670 2004-06-01 Thomas Vander Stichele <thomas at apestaart dot org>
17672 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
17673 check if v4l-conf is in path
17675 2004-06-01 Thomas Vander Stichele <thomas at apestaart dot org>
17677 * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
17678 change assert to a more readable error message
17680 2004-05-31 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17682 * gst-libs/gst/tuner/tunerchannel.h:
17683 - add a freq_multiplicator field to make the conversion
17684 between internal frequency unit and Hz
17685 * sys/v4l/gstv4lelement.c:
17686 * sys/v4l2/gstv4l2element.c:
17687 - change default video device to /dev/video0
17688 * sys/v4l/v4l_calls.c:
17689 * sys/v4l2/v4l2_calls.c:
17690 - we only expose frequency to the user in Hz instead of
17691 bastard v4lX unit (either 62.5kHz or 62.5Hz)
17693 2004-05-31 Jan Schmidt <thaytan@mad.scientist.com>
17694 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
17695 Initialise b_o_s and e_o_s variables
17696 * gst-libs/gst/riff/riff-media.c:
17697 (gst_riff_create_video_caps_with_data):
17698 Add some unusual fourcc's from mplayer avi's
17699 * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
17700 Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
17703 2004-05-28 Wim Taymans <wim@fluendo.com>
17706 * gst/alpha/Makefile.am:
17707 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
17708 (gst_alpha_get_type), (gst_alpha_base_init),
17709 (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
17710 (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
17711 (gst_alpha_chroma_key), (gst_alpha_chain),
17712 (gst_alpha_change_state), (plugin_init):
17713 A plugin to add an alpha channel to I420 video. Can optionally do
17715 * gst/multipart/Makefile.am:
17716 * gst/multipart/multipart.c: (plugin_init):
17717 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
17718 (gst_multipart_demux_class_init), (gst_multipart_demux_init),
17719 (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
17720 (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
17721 (gst_multipart_demux_change_state),
17722 (gst_multipart_demux_plugin_init):
17723 * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
17724 (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
17725 (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
17726 (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
17727 (gst_multipart_mux_pad_unlink),
17728 (gst_multipart_mux_request_new_pad),
17729 (gst_multipart_mux_handle_src_event),
17730 (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
17731 (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
17732 (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
17733 (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
17734 A Multipart demuxer/muxer. Not sure if it violates specs. Used to
17735 send multipart jpeg images to a browser.
17736 * gst/videobox/Makefile.am:
17737 * gst/videobox/README:
17738 * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
17739 (gst_video_box_get_type), (gst_video_box_base_init),
17740 (gst_video_box_class_init), (gst_video_box_init),
17741 (gst_video_box_set_property), (gst_video_box_get_property),
17742 (gst_video_box_sink_link), (gst_video_box_i420),
17743 (gst_video_box_ayuv), (gst_video_box_chain),
17744 (gst_video_box_change_state), (plugin_init):
17745 Crops or adds borders around an image. can do alpha channel
17747 * gst/videomixer/Makefile.am:
17748 * gst/videomixer/README:
17749 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
17750 (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
17751 (gst_videomixer_pad_get_sink_event_masks),
17752 (gst_videomixer_pad_get_property),
17753 (gst_videomixer_pad_set_property),
17754 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
17755 (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
17756 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
17757 (gst_videomixer_base_init), (gst_videomixer_class_init),
17758 (gst_videomixer_init), (gst_videomixer_request_new_pad),
17759 (gst_videomixer_handle_src_event),
17760 (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
17761 (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
17762 (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
17763 (gst_videomixer_loop), (gst_videomixer_get_property),
17764 (gst_videomixer_set_property), (gst_videomixer_change_state),
17766 Generic video mixer plugin, can handle multiple inputs all with
17767 different framerates and video sizes. Is fully alpha channel
17770 2004-05-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
17772 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
17773 Select first track as master track. Not sure how else to handle
17775 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
17776 Discard discont events. Should fix #142962.
17778 2004-05-26 Ronald Bultje <rbultje@ronald.bitfreak.net>
17780 * ext/alsa/Makefile.am:
17781 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
17782 (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
17783 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
17784 (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
17785 (gst_alsa_mixer_get_option):
17786 * ext/alsa/gstalsamixer.h:
17787 * ext/alsa/gstalsamixeroptions.c:
17788 (gst_alsa_mixer_options_get_type),
17789 (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
17790 (gst_alsa_mixer_options_new):
17791 * ext/alsa/gstalsamixeroptions.h:
17792 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
17793 * ext/alsa/gstalsamixertrack.h:
17794 Add enumerations (as GstMixerOptions). Make correct distinction
17795 between input/output tracks. Add capture/playback private flag.
17796 Use flag to decide on whether to set capture or playback volumes
17797 or switches. Use playback and record switches.
17798 * gst-libs/gst/mixer/Makefile.am:
17799 * gst-libs/gst/mixer/mixer-marshal.list:
17800 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
17801 (gst_mixer_set_option), (gst_mixer_get_option),
17802 (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
17803 (gst_mixer_volume_changed), (gst_mixer_option_changed):
17804 * gst-libs/gst/mixer/mixer.h:
17805 * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
17806 (gst_mixer_options_class_init), (gst_mixer_options_init),
17807 (gst_mixer_options_dispose):
17808 * gst-libs/gst/mixer/mixeroptions.h:
17809 Add GstMixerOptions.
17810 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
17811 Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
17812 broken device detection on computers with multiple OSS sound
17815 2004-05-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
17817 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
17818 fixate nicely even when the peer is not negotiating
17820 2004-05-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
17822 * gst/audioconvert/gstaudioconvert.c:
17823 (gst_audio_convert_parse_caps):
17824 make sure we don't allow depth > width
17825 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
17826 fixate endianness to G_BYTE_ORDER as default
17827 * gst/audioscale/gstaudioscale.c:
17828 we don't handle another endianness as host-endianness
17830 2004-05-25 David Schleef <ds@schleef.org>
17832 * gst/ffmpegcolorspace/mem.c: malloc() is in stdlib.h, not malloc.h
17834 2004-05-24 Benjamin Otte <otte@gnome.org>
17836 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
17837 (gst_oggvorbisenc_setup):
17838 properly fail when we can't setup the vorbis encoder due to
17839 unsupported settings
17840 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
17841 (gst_vorbisenc_setup):
17843 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
17844 fix case where warnings occured when one pad was unlinked while the
17845 other's link function was called
17847 2004-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
17849 * gst/tcp/Makefile.am:
17852 2004-05-24 Benjamin Otte <in7y118@public.uni-hamburg.de>
17854 * gst-libs/gst/resample/private.h:
17855 don't use optimizations that are #if 0'ed
17857 2004-05-24 Wim Taymans <wim@fluendo.com>
17859 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
17860 Fix potential division by zero error and hopefully get
17861 the position query right to get correct timestamps on avi
17864 2004-05-24 Wim Taymans <wim@fluendo.com>
17866 * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
17867 (gst_videoscale_scale_nearest_str2),
17868 (gst_videoscale_scale_nearest_str4),
17869 (gst_videoscale_scale_nearest_32bit),
17870 (gst_videoscale_scale_nearest_24bit),
17871 (gst_videoscale_scale_nearest_16bit):
17872 Fix the scaling algorithm and avoid a buffer overflow.
17873 removed the while loop in the scaling function as it
17874 was used for point sampling only.
17876 2004-05-24 Benjamin Otte <in7y118@public.uni-hamburg.de>
17878 * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
17879 (gst_id3_tag_class_init), (gst_id3_tag_init),
17880 (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
17881 (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
17882 (gst_id3_tag_send_tag_event):
17883 lots of fixes to make id3mux work and id3demux work correctly
17885 2004-05-24 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17888 add rules to build shout2send (was removed by accident
17889 when this module was no more marked experimental/broken)
17891 2004-05-24 Zaheer Abbas Merali <zaheerabbas at merali dot org>
17893 * ext/shout2/gstshout2.c:
17894 * ext/shout2/gstshout2.h:
17895 adding a "connection problem" signal to shout2send
17898 2004-05-21 Thomas Vander Stichele <thomas at apestaart dot org>
17900 * ext/kio/kioreceiver.cpp:
17901 * ext/kio/kioreceiver.h:
17902 fix sign comparison issues
17904 2004-05-21 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17906 * gst/cdxaparse/gstcdxaparse.c:
17907 * gst/cdxaparse/gstcdxaparse.h:
17909 add some checks/sanity
17910 prepare for seek addition
17912 * sys/sunaudio/gstsunaudio.c:
17913 remove exported dupe init function
17915 2004-05-21 Jan Schmidt <thaytan@mad.scientist.com>
17917 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
17918 (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
17919 Fix format conversion and position querying.
17920 * gst/debug/progressreport.c: (gst_progressreport_report):
17921 Don't output a bogus total value that we didn't query.
17922 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
17923 Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
17924 only a blank window after xine has been used.
17926 2004-05-21 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
17929 sync with upstream version to fix test on FC2
17930 readd with -ko to preserve Id header
17932 2004-05-20 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17935 test for FIONREAD ioctl in sys/filio.h for Solaris compat.
17936 * gst/tcp/gsttcpclientsrc.c: idem
17937 * gst/tcp/gsttcpserversink.c: idem
17938 * gst/tcp/gsttcpserversrc.c: idem
17939 * m4/gst-fionread.m4: idem
17941 * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
17943 * configure.ac: enable speex plugin for speex 1.1.5+
17944 * ext/speex/gstspeexenc.c: fix cast warning
17946 * ext/esd/README: fix typo
17948 2004-05-20 David Schleef <ds@schleef.org>
17950 * configure.ac: Minor cosmetic change to convince the buildbot to
17952 * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
17953 (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
17954 (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
17955 (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
17956 (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
17957 (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
17958 More hacking. Plays audio now.
17960 2004-05-20 David Schleef <ds@schleef.org>
17965 2004-05-20 David Schleef <ds@schleef.org>
17967 * sys/osxaudio/Makefile.am: New OS X audio plugin by Zaheer Abbas Merali
17968 * sys/osxaudio/gstosxaudio.c:
17969 * sys/osxaudio/gstosxaudioelement.c:
17970 * sys/osxaudio/gstosxaudioelement.h:
17971 * sys/osxaudio/gstosxaudiosink.c:
17972 * sys/osxaudio/gstosxaudiosink.h:
17973 * sys/osxaudio/gstosxaudiosrc.c:
17974 * sys/osxaudio/gstosxaudiosrc.h:
17976 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
17978 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
17979 (gst_vorbisenc_chain):
17980 put the codec headers on the caps as streamheader as well as
17983 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
17985 * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
17986 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
17987 (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
17988 split up push_packet into two functions
17990 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
17992 * gst/tcp/.cvsignore:
17994 * gst/tcp/Makefile.am:
17996 * gst/tcp/gsttcp.c:
17997 * gst/tcp/gsttcp.h:
17998 * gst/tcp/gsttcpclientsink.c:
17999 * gst/tcp/gsttcpclientsink.h:
18000 * gst/tcp/gsttcpclientsrc.c:
18001 * gst/tcp/gsttcpclientsrc.h:
18002 * gst/tcp/gsttcpplugin.c:
18003 * gst/tcp/gsttcpserversink.c:
18004 * gst/tcp/gsttcpserversink.h:
18005 * gst/tcp/gsttcpserversrc.c:
18006 * gst/tcp/gsttcpserversrc.h:
18007 add new tcp elements
18009 2004-05-19 Wim Taymans <wim@fluendo.com>
18011 * gst/law/mulaw-conversion.c: (mulaw_encode):
18012 Fix overflow bug in ulaw encoding.
18014 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
18016 * ext/mad/gstmad.c: (gst_mad_handle_event):
18017 don't unref the event twice
18019 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
18022 remove -Wno-sign-compare
18024 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
18027 remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
18028 if you want to work against glib 2.2 and 2.4
18030 2004-05-19 Thomas Vander Stichele <thomas at apestaart dot org>
18032 * gst/tcp/Makefile.am:
18033 * gst/tcp/gsttcp.c:
18034 * gst/tcp/gsttcp.h:
18035 * gst/tcp/gsttcpsink.h:
18036 * gst/tcp/gsttcpsrc.h:
18037 gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
18039 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
18041 * gst/debug/tests.c: (md5_get_value):
18042 fix segfault on gst-inspect
18044 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
18046 * gst/debug/testplugin.c:
18047 * gst/debug/tests.c:
18048 * gst/debug/tests.h:
18049 add new extensible and configurable testing element. Current tests
18050 include buffer count, stream length, timestamp/duration matching and
18052 * gst/debug/Makefile.am:
18053 * gst/debug/gstdebug.c: (plugin_init):
18054 add infrastructure for new element
18056 2004-05-19 Johan Dahlin <johan@gnome.org>
18058 * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
18059 ending of the array. Fixes gst-inspect segfault on ppc.
18061 2004-05-19 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18063 * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
18065 * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
18067 2004-05-18 David Schleef <ds@schleef.org>
18069 * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
18070 warnings (bugs, actually) noticed by gcc but not forte.
18072 2004-05-18 David Schleef <ds@schleef.org>
18074 * sys/sunaudio/Makefile.am:
18075 * sys/sunaudio/gstsunaudio.c: New sunaudiosink
18077 2004-05-18 David Schleef <ds@schleef.org>
18079 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
18080 (gst_qtdemux_loop_header): Patch from dcm@acm.org (David Moore)
18081 to allow qtdemux to use non-seekable streams. (bug #142272)
18083 2004-05-18 David Schleef <ds@schleef.org>
18085 * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
18086 (gst_resample_sinc_ft_float): Remove use of static temporary
18087 buffer. This code was obviously not supposed to last long, but
18088 it's stuck in our ABI, so it required a little hack to make it
18089 ABI-compatible. Fixes #142585.
18090 * gst-libs/gst/resample/resample.h: same.
18092 2004-05-18 David Schleef <ds@schleef.org>
18094 * configure.ac: Add sunaudio
18095 * examples/Makefile.am: make gstplay depend on gconf
18096 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
18097 * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
18098 (convert_table_lookup), (img_convert): remove c99-isms
18099 * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
18100 unsigned, to fix a warning on Solaris
18101 * gst/mpeg1sys/systems.c: bcopy->memcpy
18102 * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
18103 * sys/Makefile.am: Add sunaudio
18105 2004-05-18 Wim Taymans <wim@fluendo.com>
18107 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
18108 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
18109 (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
18110 (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
18111 (gst_ogg_mux_loop):
18112 Fix an ugly memleak where the muxer didn't flush enough ogg
18113 pages. This also resulted in badly muxed ogg files.
18115 2004-05-18 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18117 * gst/asfdemux/asfheaders.c :
18118 * gst/asfdemux/asfheaders.h :
18119 * gst/asfdemux/gstasfdemux.c :
18120 - fix ASF_OBJ_PADDING guid
18121 - add 3 new object guids (language list, metadata,
18122 extended stream properties)
18123 - add a function to parse extended header objects
18125 2004-05-18 Benjamin Otte <in7y118@public.uni-hamburg.de>
18127 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
18128 remove leftover debugging g_print
18130 2004-05-17 Ronald Bultje <rbultje@ronald.bitfreak.net>
18132 * ext/mad/gstmad.c: (gst_mad_handle_event):
18133 Fix for when the first format in a discont event is not a
18134 byte-based one. Should fix #137710.
18136 2004-05-18 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18138 * m4/a52.m4 : fix compilation with -Wall -Werror
18139 * m4/libfame.m4 : idem
18140 * m4/libmikmod.m4 : idem
18142 2004-05-17 Benjamin Otte <otte@gnome.org>
18144 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
18145 signal the new tags before giving up the reference
18147 2004-05-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
18149 * ext/shout2/gstshout2.c:
18150 use application/ogg instead of application/x-ogg (patch by Patrick
18151 Guimond, fixes #142432)
18152 * sys/oss/gstosselement.c: (gst_osselement_reset),
18153 (gst_osselement_sync_parms):
18154 don't set fragment size unless specified (fixes #142493)
18156 2004-05-17 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18158 * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
18161 2004-05-17 Benjamin Otte <otte@gnome.org>
18163 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
18164 compute offsets correctly for internal buffers so timestamps are set
18165 correctly when we can't seek. Also handle cases where there are no
18166 offsets. (based on a patch by David Moore, fixes #142507)
18168 2004-05-17 Benjamin Otte <otte@gnome.org>
18170 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18171 use correct variable when determining amount of data to skip so we
18172 don't skip into the void and segfault
18174 2004-05-16 Benjamin Otte <otte@gnome.org>
18176 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
18179 2004-05-16 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18181 * gst/asfdemux/gstasfdemux.c:
18182 - fix a mem leak and always propagate tags
18183 - add WMV3 to known video codecs (but no decoder yet)
18184 - replace "surplus data" at end of audio header for what
18185 it is : codec specific data
18188 2004-05-16 Arwed v. Merkatz <v.merkatz@gmx.net>
18190 reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18192 * gst-libs/gst/audio/audioclock.c:
18193 Fix wrong return type (#142205).
18195 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
18197 * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
18198 Ignore CRCs by default (fixes #142566).
18200 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
18202 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
18203 (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
18204 (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
18205 (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
18206 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
18207 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
18208 Fix for cases where we fail to attach to a mixer.
18210 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
18212 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
18213 Don't touch events after not owning them anymore.
18214 * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
18215 (gst_wavparse_fmt), (gst_wavparse_other),
18216 (gst_wavparse_handle_seek), (gst_wavparse_loop),
18217 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
18218 (gst_wavparse_srcpad_event):
18219 * gst/wavparse/gstwavparse.h:
18220 Add seeking, fix querying.
18222 2004-05-16 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18224 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
18225 - process comments even if they don't end with \0\0
18226 g_convert would ignore them if present and works well without them
18228 2004-05-16 Benjamin Otte <otte@gnome.org>
18230 * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
18233 2004-05-16 Benjamin Otte <otte@gnome.org>
18235 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
18236 don't write to memory we might not write to - g_convert does that
18237 for us anyway (fixes #142613)
18238 (gst_asf_demux_audio_caps):
18239 comment out gst_util_dump_mem
18241 2004-05-16 Benjamin Otte <otte@gnome.org>
18243 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18244 compute correct expected timestamps after seek (broken since
18246 * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
18247 rename element and debugging category to gdkpixbufscale
18249 2004-05-16 Benjamin Otte <otte@gnome.org>
18251 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18252 add error checking to snd_pcm_delay and remove duplicate call to
18253 snd_pcm_delay that caused issues (see inline code comments)
18254 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
18255 make more readable and fix return value when snd_pcm_delay fails
18258 2004-05-15 Jan Schmidt <thaytan@mad.scientisti.com>
18259 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
18260 (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
18261 (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
18262 (gst_pixbufscale_link), (gst_pixbufscale_init),
18263 (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
18264 (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
18265 (gst_pixbufscale_get_property), (pixbufscale_init):
18266 * ext/gdk_pixbuf/pixbufscale.h:
18267 Add these files I forgot earlier
18269 2004-05-15 Jan Schmidt <thaytan@mad.scientist.com>
18270 * ext/gdk_pixbuf/Makefile.am:
18271 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
18272 * ext/gdk_pixbuf/gstgdkpixbuf.h:
18273 Add new pixbufscale element to scale RGB video
18274 using gdk_pixbuf, because gdk_pixbuf does BILINEAR
18275 and HYPER interpolation correctly.
18276 * ext/theora/theoraenc.c: (theora_enc_chain),
18277 Discard buffer and return if explicit caps could not be set
18278 (theora_enc_get_property):
18279 Make _get return kbps for the bitrate consistent with
18283 2004-05-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
18285 * ext/libvisual/visual.c: (gst_visual_chain):
18286 add missing visual_audio_analyze
18288 2004-05-14 David Schleef <ds@schleef.org>
18290 * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
18291 is killed while we're playing.
18292 * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
18293 gst_element_no_more_pads().
18295 2004-05-14 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18297 * gst-libs/gst/riff/riff-read.c :
18298 - fix INFO tag extraction in RIFF/AVI files
18299 because gst_event_unref (event) also freed taglist
18302 2004-05-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18304 * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
18305 * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
18307 * gst/auparse/gstauparse.c :
18308 - add code (commented for now) to support audio/x-adpcm on src pad
18309 (we have no decoder for those layout yet)
18311 * gst/cdxaparse/gstcdxaparse.c :
18312 * gst/cdxaparse/gstcdxaparse.h :
18313 - partial rewrite using RiffRead (ripped iain's wavparse code)
18315 * gst/rtp/gstrtpL16enc.c : typo
18316 * gst/rtp/gstrtpgsmenc.c : typo
18318 2004-05-13 Benjamin Otte <otte@gnome.org>
18321 check for exact version of libvisual, it's not supposed to be
18324 2004-05-13 Benjamin Otte <in7y118@public.uni-hamburg.de>
18326 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
18327 signal no-more-pads
18329 2004-05-13 Jan Schmidt <thaytan@mad.scientist.com>
18331 * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
18332 Report which format was used for GST_FORMAT_DEFAULT
18333 * gst/debug/Makefile.am:
18334 * gst/debug/gstdebug.c: (plugin_init):
18335 * gst/debug/progressreport.c: (gst_progressreport_base_init),
18336 (gst_progressreport_class_init), (gst_progressreport_init),
18337 (gst_progressreport_report), (gst_progressreport_set_property),
18338 (gst_progressreport_get_property), (gst_progressreport_chain),
18339 (gst_progressreport_plugin_init):
18340 Add progressreport element for testing.
18342 2004-05-13 Thomas Vander Stichele <thomas at apestaart dot org>
18344 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
18345 * sys/v4l/gstv4lsrc.h:
18346 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
18347 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
18348 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
18349 (gst_v4lsrc_grab_frame):
18351 send a discont at start
18353 2004-05-12 Colin Walters <walters@redhat.com>
18355 * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
18356 inflooping if we can't find a chunk. Or in other words, don't blow
18357 chunks if we don't have a chunk to blow.
18359 2004-05-13 Jan Schmidt <thaytan@mad.scientist.com>
18360 * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
18361 Remove old debug output
18362 * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
18363 (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
18364 (gst_dvdec_set_property), (gst_dvdec_get_property):
18365 Change the quality setting to an enum, so it works from gst-launch
18366 Don't renegotiate a non-linked pad. Allows audio only decoding.
18367 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
18368 (gst_deinterlace_link), (gst_deinterlace_init):
18369 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
18370 (gst_videodrop_link):
18371 Some caps negotiation fixes
18373 2004-05-12 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18375 * ext/tarkin/gsttarkin.c :
18376 - Change RANK from NONE to PRIMARY
18377 * ext/gdk_pixbuf/gstgdkpixbuf.c :
18378 - Change RANK from NONE to MARGINAL
18379 * ext/divx/gstdivxenc.c :
18380 - Change RANK from PRIMARY to NONE (encoder/spider issue)
18382 2004-05-12 Thomas Vander Stichele <thomas at apestaart dot org>
18384 * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
18385 (gst_vorbisenc_push_packet):
18386 copy a function that was added between 1.0 and 1.0.1 until we
18387 depend on worthwhile features of post-1.0
18389 2004-05-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
18392 enable shout2 by default
18393 * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
18394 (gst_shout2send_base_init), (gst_shout2send_init),
18395 (gst_shout2send_connect), (gst_shout2send_change_state):
18396 * ext/shout2/gstshout2.h:
18397 make this work again. Based on a patch by Zaheer Abbas Merali (fixes
18399 * ext/theora/theora.c: (plugin_init):
18400 don't set rank on encoders
18402 2004-05-11 Jeremy Simon <jesimon@libertysurf.fr>
18404 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
18405 Use codec_data property instead of flag1 and flag2 for wma
18407 2004-05-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18409 * gst/cdxaparse/gstcdxaparse.c :
18410 - Add mpegversion to CAPS to make it link
18411 - Rank is as GST_RANK_SECONDARY instead of NONE
18412 * gst/auparse/gstauparse.c :
18413 - Document all audio encoding we can encounter from Solaris 9
18414 headers and libsndfile information.
18415 - Increase max. rate from 48000 to 192000 (to match other elements)
18416 - Don't try to play junk data between header and samples
18418 2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
18420 * ext/libvisual/visual.c: (gst_visual_getcaps):
18421 use the right caps depending on endianness (I hope)
18422 * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
18423 use GST_RANK_NONE for all non-decoding elements or spider gets
18426 2004-05-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
18428 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
18429 Fix some odd cases and fix BE metadata parsing of unicode16 text.
18431 2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
18433 * gst/switch/gstswitch.c: (gst_switch_release_pad),
18434 (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
18435 (gst_switch_loop), (gst_switch_get_type):
18436 whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
18437 HEADERS. Had to be said.
18439 2004-05-10 David Schleef <ds@schleef.org>
18441 * configure.ac: Add prototype Dirac support.
18443 * ext/dirac/Makefile.am:
18444 * ext/dirac/gstdirac.cc:
18445 * ext/dirac/gstdiracdec.cc:
18447 2004-05-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
18449 * gst/auparse/gstauparse.c: (gst_auparse_class_init),
18450 (gst_auparse_init), (gst_auparse_chain),
18451 (gst_auparse_change_state):
18452 Hack around spider. Remove me some day please.
18454 2004-05-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
18456 * gst/auparse/gstauparse.c: (gst_auparse_chain):
18457 Fix for some uninitialized variables in previous patch, also
18458 makes it work. Fixes #142286 while we're at it.
18460 2004-05-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18462 * gst/auparse/gstauparse.c:
18463 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
18464 only unsupported formats are ADPCM/CCITT G.72x
18466 * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
18468 2004-05-10 Wim Taymans <wim@fluendo.com>
18470 * ext/vorbis/Makefile.am:
18471 * ext/vorbis/README:
18472 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
18473 (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
18474 (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
18475 (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
18476 (gst_oggvorbisenc_convert_sink),
18477 (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
18478 (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
18479 (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
18480 (get_constraints_string), (update_start_message),
18481 (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
18482 (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
18483 (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
18484 * ext/vorbis/oggvorbisenc.h:
18485 * ext/vorbis/vorbis.c: (plugin_init):
18486 * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
18487 (raw_caps_factory), (gst_vorbisenc_class_init),
18488 (gst_vorbisenc_init), (gst_vorbisenc_setup),
18489 (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
18490 (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
18491 * ext/vorbis/vorbisenc.h:
18492 Added a raw vorbis encoder to be used with the oggmuxer.
18493 We still need the old encoder for some gnome applications,
18494 read the README to find out how that works.
18495 The raw encoder is called "rawvorbisenc" until 0.9.
18497 2004-05-10 Wim Taymans <wim@fluendo.com>
18499 * ext/ogg/gstogg.c: (plugin_init):
18500 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
18502 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
18503 (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
18504 (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
18505 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
18506 (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
18507 (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
18508 (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
18509 (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
18510 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
18511 (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
18512 Added an ogg muxer.
18513 Small typo fixes in the demuxer.
18515 2004-05-10 Wim Taymans <wim@fluendo.com>
18517 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
18518 (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
18519 (theora_enc_change_state), (theora_enc_set_property),
18520 (theora_enc_get_property):
18521 Mark the last packet with an EOS flag which is not really needed
18523 Do some better video framerate initialisation.
18524 Update the buffer timestamp.
18526 2004-05-10 Jan Schmidt <thaytan@mad.scientist.com>
18528 * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
18529 Return the result of the parent state change call
18531 2004-05-10 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18533 * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
18534 * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
18535 * gst/law/alaw-encode.c : (idem)
18536 * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
18537 * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
18538 * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
18540 2004-05-09 Benjamin Otte <otte@gnome.org>
18542 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
18543 don't use a fixed buffer size when writing variable length data to
18544 it. Fixes memory corruption and makes alsasrc work
18546 2004-05-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
18548 * ext/gnomevfs/gstgnomevfssink.c:
18549 (_gst_boolean_allow_overwrite_accumulator),
18550 (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
18551 Run glib's default signal handler (??) in RUN_CLEANUP rather than
18552 RUN_LAST, and don't use that to set the accumulator value because
18553 then it's always FALSE.
18555 2004-05-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
18557 * gst-libs/gst/riff/riff-media.c:
18558 (gst_riff_create_video_caps_with_data),
18559 (gst_riff_create_audio_caps),
18560 (gst_riff_create_audio_template_caps):
18561 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
18562 Fix for unaligned RIFF files (i.e. where all the chunks together
18563 in a LIST chunk are not of the same size as the size given in
18564 the LIST chunk header). Fixes several odd WAVE files. Also fix
18565 ADPCM (block_align property) in audio, so that wavparse based
18566 on this works now as it used to stand-alone.
18568 2004-05-09 Edward Hervey <bilboed@bilboed.com>
18570 reviewed by Benjamin Otte <otte@gnome.org>
18572 * ext/a52dec/gsta52dec.c:
18573 * ext/divx/gstdivxdec.c:
18574 * ext/divx/gstdivxenc.c:
18575 * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
18576 * ext/faac/gstfaac.c: (gst_faac_base_init):
18577 * ext/faad/gstfaad.c: (gst_faad_base_init):
18578 * ext/ivorbis/vorbisfile.c:
18579 * ext/lame/gstlame.c:
18580 * ext/libfame/gstlibfame.c:
18581 * ext/mpeg2enc/gstmpeg2enc.cc:
18582 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
18583 * ext/sidplay/gstsiddec.cc:
18584 * ext/speex/gstspeexdec.c:
18585 * ext/speex/gstspeexenc.c:
18586 * ext/xvid/gstxviddec.c:
18587 * ext/xvid/gstxvidenc.c:
18588 correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
18591 2004-05-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
18593 * ext/alsa/gstalsa.c: (device_list),
18594 (gst_alsa_class_probe_devices):
18595 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
18596 Fix alsa oddness in mixer after the combination of using mixer
18597 in source/sink elements and using hw:x,y instead of just hw:x.
18599 2004-05-09 Benjamin Otte <otte@gnome.org>
18601 * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
18602 (gst_wavparse_create_sourcepad):
18603 make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
18606 2004-05-09 Benjamin Otte <otte@gnome.org>
18608 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
18609 allow discont events before caps nego
18611 2004-05-08 Benjamin Otte <otte@gnome.org>
18613 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
18616 2004-05-08 Benjamin Otte <otte@gnome.org>
18618 * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
18619 (gst_level_change_state), (gst_level_init):
18620 * gst/level/gstlevel.h:
18621 figure out if we're initialized directly instead of keeping a
18622 variable that's wrong in 90% of cases
18623 don't initialize pads and then leak them and use a new unitialized
18624 pad. (fixes #142084)
18625 these were bugs so n00bish I didn't find them for an hour :/
18627 2004-05-08 Iain <iain@prettypeople.org>
18629 * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
18630 * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
18631 (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
18632 return the length that was read.
18633 (gst_riff_read_strf_auds): Allow fmt tags as well.
18635 2004-05-07 David Schleef <ds@schleef.org>
18637 * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
18638 signed char assumption in faad.h.
18640 2004-05-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
18642 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
18643 Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
18645 2004-05-07 Colin Walters <walters@redhat.com>
18647 * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
18648 * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
18650 * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
18651 Add dispose function.
18653 2004-05-08 Jan Schmidt <thaytan@mad.scientist.com>
18654 * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
18655 Fix caps nego and pad templates. RGB mode caps should
18657 * ext/dvdnav/gst-dvd:
18658 Move mpeg2dec inside the thread because otherwise the
18659 queue rejects cap changes mid-stream
18660 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
18661 (gst_mpeg2dec_flush_decoder):
18662 For mpeg2dec > 0.4.0, call the flush function instead of
18663 manually extracting all in-flight frames.
18664 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
18665 (gst_dv1394src_init), (gst_dv1394src_iso_receive):
18666 Change mime type video/dv go video/x-dv to match the
18667 rest of gst-plugins
18669 2004-05-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
18671 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
18672 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
18673 (gst_alsa_sink_class_init):
18674 * ext/alsa/gstalsasink.h:
18675 * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
18676 (gst_alsa_src_class_init):
18677 * ext/alsa/gstalsasrc.h:
18678 Make alsasink/src a subclass of alsamixer so that mixer stuff
18679 shows up in gst-rec. Needs some finetuning.
18681 2004-05-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
18683 * ext/lame/gstlame.c: (gst_lame_chain):
18685 * ext/mad/gstmad.c: (gst_mad_handle_event):
18687 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
18688 be able to detect mp3 files < 4096 bytes
18690 2004-05-06 Wim Taymans <wim@fluendo.com>
18692 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
18693 (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
18694 (theora_enc_set_property), (theora_enc_get_property):
18695 Also encode the first frame, cleanup some code.
18697 2004-05-06 Wim Taymans <wim@fluendo.com>
18699 * ext/mpeg2enc/gstmpeg2enc.cc:
18700 Forward events first before deciding that negotiation was
18703 2004-05-06 Wim Taymans <wim@fluendo.com>
18705 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
18706 First process the events before deciding that negotiation
18709 2004-05-06 Wim Taymans <wim@fluendo.com>
18711 * ext/theora/Makefile.am:
18712 * ext/theora/theora.c: (plugin_init):
18713 * ext/theora/theoradec.c: (theora_dec_change_state):
18714 * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
18715 (gst_theora_enc_class_init), (gst_theora_enc_init),
18716 (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
18717 (theora_enc_chain), (theora_enc_change_state),
18718 (theora_enc_set_property), (theora_enc_get_property):
18719 Added a theora encoder, grouped the encoder and decoder into the
18722 2004-05-05 Thomas Vander Stichele <thomas at apestaart dot org>
18724 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
18725 (gst_jpegenc_chain):
18726 fix DURATION on outgoing buffers
18727 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
18728 debug using time formats
18729 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
18730 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
18731 (gst_xvimagesink_sink_link):
18732 windows with width/height 0 generate X errors, so don't allow them
18734 2004-05-05 Wim Taymans <wim@fluendo.com>
18736 * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
18737 (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
18738 (gst_mpeg2dec_negotiate_format):
18739 * ext/mpeg2dec/gstmpeg2dec.h:
18740 removed the static pad template so that we can add the
18741 more accurate framerate value to the caps.
18744 2004-05-04 Benjamin Otte <otte@gnome.org>
18747 check for kdemacros.h, too (should fix #141821)
18748 * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
18749 don't crash if no header was sent, but nicely error out (fixes part
18752 2004-05-04 Wim Taymans <wim@fluendo.com>
18754 * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
18755 parent dispose function to avoid segfault on destroy.
18757 2004-05-04 Thomas Vander Stichele <thomas at apestaart dot org>
18759 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
18761 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
18762 (gst_xvimagesink_sink_link):
18763 clean up debugging caps
18764 also recreate xvimage when format has changed
18766 2004-05-04 Benjamin Otte <otte@gnome.org>
18768 * ext/libvisual/Makefile.am:
18769 * ext/libvisual/visual.c: (gst_visual_class_init),
18770 (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
18771 (gst_visual_srclink), (gst_visual_chain),
18772 (gst_visual_change_state), (plugin_init):
18773 use a GstAdapter to correctly adapt buffer sizes - allows using a
18776 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
18778 * sys/v4l/gstv4lelement.h:
18779 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
18780 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
18781 (gst_v4lsrc_buffer_free):
18782 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
18783 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
18784 (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
18785 (gst_v4lsrc_requeue_frame):
18786 move some debugging categories around
18787 query for fps index and set accordingly if found
18789 2004-05-03 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18791 * ext/lame/gstlame.c:
18792 correct defaults that lame_init puts out of range
18794 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
18796 * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
18797 (gst_divxenc_class_init):
18798 fix range since -1 is the default
18799 * gst/mpeg1sys/gstmpeg1systemencode.c:
18800 (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
18801 * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
18802 (gst_rtjpegdec_chain):
18803 * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
18804 (gst_rtjpegenc_chain):
18805 * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
18806 (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
18807 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
18808 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
18809 * sys/v4l/gstv4lsrc.c:
18810 * sys/v4l/v4l_calls.c: (gst_v4l_open):
18811 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
18812 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
18813 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
18814 * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
18815 remove gst_info calls
18817 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
18826 Updated translations
18828 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
18830 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
18831 refactor/comment code
18833 2004-05-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
18835 * gst/asfdemux/Makefile.am:
18836 * gst/asfdemux/asfheaders.c:
18837 * gst/asfdemux/asfheaders.h:
18838 * gst/asfdemux/gstasf.c: (plugin_init):
18839 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
18840 (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
18841 (gst_asf_demux_setup_pad):
18842 * gst/asfdemux/gstasfdemux.h:
18843 * gst/asfdemux/gstasfmux.c:
18844 * gst/asfdemux/gstasfmux.h:
18845 Add tagging support to demuxer, split out registration in its own
18846 file instead of in demux (hacky), and prevent having some tables
18847 in our memory multiple times (in asfheaders.h).
18849 2004-05-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
18851 * gst/matroska/matroska-demux.c:
18852 (gst_matroska_demux_parse_metadata):
18853 * gst/matroska/matroska-ids.h:
18854 Basic tag reading support.
18856 2004-04-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
18858 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
18859 Really detect ac-3 audio.
18860 * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
18861 really detect matroska files (off-by-1).
18863 2004-04-30 David Schleef <ds@schleef.org>
18865 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
18866 (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
18867 (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
18868 (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
18869 (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
18870 hackage -- parse a lot more atoms, extract a few tags. One might even
18871 mistake this for tag support. Maybe it is.
18872 * gst/qtdemux/qtdemux.h:
18874 2004-04-30 Colin Walters <walters@verbum.org>
18876 * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
18878 2004-04-30 Thomas Vander Stichele <thomas at apestaart dot org>
18880 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18881 (gst_ffmpegcolorspace_getcaps):
18882 remove broken nego fix
18884 2004-04-30 Benjamin Otte <otte@gnome.org>
18888 * ext/libvisual/Makefile.am:
18889 * ext/libvisual/visual.c:
18890 add initial support for libvisual (http://libvisual.sourceforge.net)
18891 libvisual is still quite alpha, so expect crashes in there :)
18893 2004-04-29 David Schleef <ds@schleef.org>
18895 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
18896 (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
18897 up qtdemux to make it spit out codec_data. Do _not_ look at this
18898 code; you will no longer respect me.
18900 2004-04-29 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18902 * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
18903 * ext/alsa/gstalsa.h :
18904 change alsa pcm device discovery to find more than 1 device
18905 per card. code review by Ronald.
18907 2004-04-29 David Schleef <ds@schleef.org>
18909 * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
18910 Add a check for a driver bug on FreeBSD. (bug #140565)
18912 2004-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
18914 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
18915 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
18916 (gst_jpegenc_getcaps):
18917 move format setting to inner loop
18918 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18919 (gst_ffmpegcolorspace_getcaps):
18920 use GST_PAD_CAPS if available so that we use already negotiated
18922 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
18923 (qtdemux_parse_moov), (qtdemux_parse):
18925 * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
18926 * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
18927 move hardcoded path to DEFINE
18929 2004-04-28 David Schleef <ds@schleef.org>
18931 * gst/speed/gstspeed.c: (speed_parse_caps): Fix caps parsing.
18934 2004-04-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
18936 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
18937 Don't probe for playback device if we're a source element. Fixes
18940 2004-04-29 Benjamin Otte <otte@gnome.org>
18942 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
18943 (gst_id3_tag_chain):
18944 rewrite buffer offset
18946 2004-04-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
18950 * ext/dts/Makefile.am:
18951 * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
18952 (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
18953 (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
18954 (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
18955 (gst_dtsdec_loop), (gst_dtsdec_change_state),
18956 (gst_dtsdec_set_property), (gst_dtsdec_get_property),
18958 * ext/dts/gstdtsdec.h:
18960 * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
18961 (gst_faad_srcconnect):
18962 Add ESDS atom handling (.m4a).
18964 2004-04-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
18966 * ext/divx/gstdivxdec.c: (plugin_init):
18967 Remove comment that makes no sense.
18968 * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
18969 Fix for obvious typo that resulted in warnings during gst-register.
18970 * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
18971 (gst_xviddec_sink_link):
18972 Fix caps negotiation a bit better.
18973 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
18974 We call this 'codec_data', not 'esds'.
18976 2004-04-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
18978 * gst/monoscope/gstmonoscope.c:
18979 make sure we only provide 256x128
18980 * gst/monoscope/monoscope.c: (monoscope_init):
18981 assert size of 256x128
18983 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
18986 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
18987 (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
18988 fixate to max width and height of device
18990 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
18993 * sys/v4l/gstv4l.c:
18994 * sys/v4l/gstv4lsrc.c:
18995 * sys/v4l/v4l_calls.c:
18996 * sys/v4l/v4lsrc_calls.c:
18997 fix for qc-usb driver which fakes having more than one buffer
18998 by handing the same buffer twice, which confused GStreamer's/v4lsrc
18999 buffer_free override
19002 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
19005 * gst/videotestsrc/gstvideotestsrc.c:
19006 (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
19007 (gst_videotestsrc_init), (gst_videotestsrc_get),
19008 (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
19009 * gst/videotestsrc/gstvideotestsrc.h:
19010 add num-buffers property
19012 2004-04-26 Benjamin Otte <otte@gnome.org>
19014 * ext/mad/gstid3tag.c: (plugin_init):
19015 set id3mux rank to NONE so it doesn't confuse spider
19016 require audio/mpeg,mpegversion=1 in id3mux
19018 2004-04-26 Benjamin Otte <otte@gnome.org>
19021 detect faad correctly as non-working if it's indeed non-working
19023 2004-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
19026 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
19027 (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
19028 fix _getcaps so it only negotiates to its supported format
19030 2004-04-25 Benjamin Otte <otte@gnome.org>
19032 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
19035 2004-04-23 Benjamin Otte <otte@gnome.org>
19037 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
19038 audio/x-raw-int with height rules! not. Now it's depth.
19040 2004-04-22 Ronald Bultje <rbultje@ronald.bitfreak.net>
19042 * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
19043 (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
19044 (gst_wavparse_loop):
19045 Missing variable initialization. Add handling of DVI ADPCM. Fix
19046 mis-parsing of LIST chunks. This works around a bug where we mis-
19047 parse non-aligning LIST chunks (so LIST chunks where the contents
19048 don't align with the actual LIST size). The correct fix is to use
19049 rifflib, I'm not going to fix wavparse - too much work. All this
19052 2004-04-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19054 reviewed by Benjamin Otte <otte@gnome.org>
19056 * ext/shout/gstshout.c: (gst_icecastsend_change_state):
19057 fix shoutcast not working (fixes #140844)
19059 2004-04-22 Benjamin Otte <otte@gnome.org>
19061 * ext/hermes/gsthermescolorspace.c:
19062 (gst_hermes_colorspace_caps_remove_format_info):
19063 * gst/colorspace/gstcolorspace.c:
19064 (gst_colorspace_caps_remove_format_info):
19065 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19066 (gst_ffmpegcolorspace_caps_remove_format_info):
19067 s/gst_caps_simplify/gst_caps_do_simplify/
19069 2004-04-22 Benjamin Otte <otte@gnome.org>
19071 * gst-libs/gst/riff/riff-media.c:
19072 (gst_riff_create_video_caps_with_data):
19073 mpegversion is an int
19074 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
19075 don't try to create pad templates with NULL caps, use any caps
19078 2004-04-20 David Schleef <ds@schleef.org>
19080 * ext/sdl/Makefile.am: Link against libgstinterfaces, not
19081 libgstxoverlay. jmmv@menta.net (Julio M. Merino Vidal)
19084 2004-04-20 Daniel Gazard <daniel.gazard@epita.fr>
19086 reviewed by David Schleef
19088 * ext/mad/gstid3tag.c: Add stdlib.h
19089 * gst/rtp/gstrtpgsmenc.c: same
19090 * gst/tags/gstid3tag.c: same
19091 * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
19092 * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
19093 GST_DISABLE_LOADSAVE use.
19094 * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
19095 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
19096 * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
19098 * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
19099 * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
19101 * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
19102 * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
19104 * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
19107 2004-04-20 David Schleef <ds@schleef.org>
19109 * gst/realmedia/rmdemux.c: This was supposed to part of the
19110 last checkin. Same idea.
19112 2004-04-20 Daniel Gazard <daniel.gazard@epita.fr>
19114 reviewed by David Schleef
19116 * configure.ac: bump required gstreamer version to 0.8.1.1
19117 because of following changes [--ds]
19119 * gst-libs/gst/riff/riff-read.c: Include gst/gstutils.h.
19120 (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
19121 (gst_riff_read_header): Use GST_READ_UINT*
19122 macros to access possibly unaligned memory.
19124 * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
19125 (mp3_type_find): Use GST_READ_UINT*
19126 macros to access possibly unaligned memory.
19127 (mp3_type_find, mpeg1_parse_header, qt_type_find)
19128 (speex_type_find): Likewise
19130 * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
19132 * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
19133 (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
19134 (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
19135 (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
19136 (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
19137 (qtdemux_tree_get_sibling_by_type): Use GST_READ_UINT*
19138 macros to access possibly unaligned memory.
19140 * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
19143 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
19144 (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
19146 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
19149 * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
19150 (gst_mpeg2subt_chain_subtitle): Likewise.
19152 * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
19153 (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
19156 * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
19159 * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
19162 * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
19165 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
19168 update required version of GStreamer because of GST_TIME_FORMAT
19170 2004-04-20 Benjamin Otte <in7y118@public.uni-hamburg.de>
19172 * ext/mad/gstid3tag.c: (gst_id3_tag_init):
19173 remove leftover g_print
19174 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
19175 don't try setting only a subset of the caps. We don't want to kill
19176 autoplugging on purpose
19178 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
19180 * sys/ximage/ximagesink.c: (plugin_init):
19181 * sys/xvimage/xvimagesink.c: (plugin_init):
19182 add debugging categories
19184 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
19188 Adding en_GB translation (Gareth Owen)
19190 2004-04-20 David Schleef <ds@schleef.org>
19192 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
19193 (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
19194 (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
19195 (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
19196 A number of new features and hacks to extract the esds atom and
19197 put it into the caps. (bug #137724)
19199 2004-04-19 David Schleef <ds@schleef.org>
19201 * gconf/Makefile.am: Fix for non-GNU make
19202 * gst-libs/gst/Makefile.am: Change directory order to handle
19203 GstPlay linking with gstinterfaces
19204 * gst-libs/gst/audio/make_filter: make use of tr portable
19205 * gst-libs/gst/play/Makefile.am: Add intended \
19206 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
19207 (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
19208 function prototype instead of void *.
19209 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
19211 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19212 (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
19213 * gst/videofilter/make_filter: make use of tr portable
19214 * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
19216 2004-04-19 Thomas Vander Stichele <thomas at apestaart dot org>
19220 Added Ukrainian translation (Maxim V. Dziumanenko)
19222 2004-04-18 Ronald Bultje <rbultje@ronald.bitfreak.net>
19224 * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
19225 (gst_gsmdec_link), (gst_gsmdec_chain):
19226 Fix capsnego, simplify chain function slightly.
19227 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
19230 2004-04-18 Ronald Bultje <rbultje@ronald.bitfreak.net>
19232 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
19233 (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
19234 (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
19235 Hack to make wavparse work with spider (always -> sometimes pad).
19236 Fixes #135862 && #140411.
19238 2004-04-18 Benjamin Otte <otte@gnome.org>
19240 * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
19241 (gst_osselement_rate_probe_check),
19242 (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
19243 get rid of \n in debug output
19245 2004-04-17 Iain <iain@prettypeople.org>
19247 * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
19250 2004-04-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
19252 * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
19253 (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
19254 (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
19255 (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
19256 (gst_id3_tag_src_link), (gst_id3_tag_chain),
19257 (gst_id3_tag_change_state), (plugin_init):
19258 deprecate id3tag element and replace with id3demux/id3mux.
19259 great side effect: this ugly file is now even uglier, yay!
19260 * ext/mad/gstmad.h:
19261 remove non-available function
19262 update for new get_type
19264 2004-04-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
19267 require mpeg2dec >= 0.4.0
19269 2004-04-17 Benjamin Otte <otte@gnome.org>
19271 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
19272 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
19273 (gst_xvimagesink_set_xwindow_id):
19274 call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
19275 assorted cleanup fixes.
19277 2004-04-16 David Schleef <ds@schleef.org>
19279 * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
19280 * sys/xvimage/xvimagesink.h: same
19282 2004-04-16 Thomas Vander Stichele <thomas at apestaart dot org>
19284 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
19285 Fix GST_ELEMENT_ERROR with (NULL)
19287 2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
19289 * gst-libs/gst/riff/riff-media.c:
19290 (gst_riff_create_video_caps_with_data):
19291 Add div[3456] as fourccs for DivX 3 (fixes #140137).
19293 2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
19295 * gst-libs/gst/riff/riff-media.c:
19296 (gst_riff_create_video_caps_with_data),
19297 (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
19298 (gst_riff_create_video_template_caps),
19299 (gst_riff_create_audio_template_caps):
19300 * gst-libs/gst/riff/riff-media.h:
19301 * gst-libs/gst/riff/riff-read.c:
19302 (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
19303 * gst-libs/gst/riff/riff-read.h:
19304 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
19305 Add MS RLE support. I added some functions to read out strf chunks
19306 into strf chunks and the data behind it. This is usually color
19307 palettes (as in RLE, but also in 8-bit RGB). Also use those during
19308 caps creation. Lastly, add ADPCM (similar to wavparse - which
19309 should eventually be rifflib based).
19310 * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
19311 (gst_matroska_demux_init), (gst_matroska_demux_reset):
19312 * gst/matroska/matroska-demux.h:
19313 Remove placeholders for some prehistoric tagging system. Didn't add
19314 support for any tag system really anyway.
19315 * gst/qtdemux/qtdemux.c:
19316 Add support for audio/x-m4a (MPEG-4) through spider.
19317 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
19318 (gst_wavparse_loop):
19319 ADPCM support (#135862). Increase max. buffer size because we
19320 cannot split buffers for ADPCM (screws references) and I've seen
19321 files with 2048 byte chunks. 4096 seems safe for now.
19323 2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org>
19325 * configure.ac: bump nano to 1
19327 === release 0.8.1 ===
19329 2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org>
19331 * configure.ac: releasing 0.8.1, "Comforting Sounds"
19333 2004-04-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
19335 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
19336 Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
19339 2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
19341 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
19342 lower rank of dvddemux so that it's not used for mpeg playback.
19344 2004-04-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
19347 save libs correctly when checking mad
19349 2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
19351 * ext/mad/gstid3tag.c: (plugin_init):
19352 lower rank of id3tag as proposed by Benjamin. Fixes #139926.
19354 2004-04-13 David Schleef <ds@schleef.org>
19356 * common/m4/gst-feature.m4: Call -config scripts with
19357 --plugin-libs if it is supported.
19358 * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
19359 JPEG images are image/jpeg.
19360 * gst/debug/Makefile.am:
19361 * gst/debug/negotiation.c: (gst_negotiation_class_init),
19362 (gst_negotiation_getcaps), (gst_negotiation_pad_link),
19363 (gst_negotiation_update_caps), (gst_negotiation_get_property),
19364 (gst_negotiation_plugin_init): Add a property that acts like
19366 * testsuite/gst-lint: Move license checking to be a standard
19369 2004-04-13 David Schleef <ds@schleef.org>
19371 * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
19372 patch from Sebastien Cote (bug #139958)
19374 2004-04-13 Thomas Vander Stichele <thomas at apestaart dot org>
19376 * examples/gstplay/Makefile.am:
19377 * examples/gstplay/player.c: (main):
19378 make the commandline player example use gconf settings
19380 2004-04-13 Thomas Vander Stichele <thomas at apestaart dot org>
19382 * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
19383 (gst_cacasink_sinkconnect), (gst_cacasink_init),
19384 (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
19385 init/end library during state transition, not object
19386 creation/disposal. get rid of custom dispose handler.
19389 2004-04-12 Christian Schaller <Uraeus@gnome.org>
19391 * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
19394 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
19396 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
19397 Handle JUNK chunks inside data section. Prevents warnings.
19399 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
19401 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
19402 (gst_riff_create_video_template_caps):
19404 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
19405 (gst_avi_demux_stream_data):
19406 Add support for "rec-list" chunks.
19408 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
19410 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
19411 Fix another codecname mismatch.
19413 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
19415 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
19416 Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
19417 so that MJPEG plays back.
19419 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
19421 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
19422 (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
19423 * gst/mpeg1videoparse/gstmp1videoparse.h:
19424 Fix for some slight mis-cuts in buffer parsing, and for some
19425 potential overflows or faults-causers. Adds disconts. Also fixes
19426 #139105 while we're at it.
19428 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
19431 * sys/v4l2/gstv4l2element.h:
19432 Workaround for missing struct v4l2_buffer declaration in Suse 9
19433 and Mandrake 10 linux/videodev2.h header file (#135919).
19435 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
19437 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
19438 Bail out if no filename was given.
19440 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
19442 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
19443 (gst_v4l2_fourcc_from_structure):
19444 Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
19447 2004-04-09 Benjamin Otte <otte@gnome.org>
19449 * ext/gnomevfs/gstgnomevfssink.c:
19450 (_gst_boolean_allow_overwrite_accumulator),
19451 (gst_gnomevfssink_class_init):
19452 fix erase signal - if any handler returns false the file will not be
19453 overwritten. If no handler is connected, the file will not be
19454 overwritten either.
19455 renamed signal to "allow-overwrite"
19456 * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
19457 free string when adding it to ID3 failed
19458 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
19459 unref event when done
19460 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
19462 * gst/typefind/gsttypefindfunctions.c:
19463 (mpeg_video_stream_type_find):
19466 2004-04-08 David Schleef <ds@schleef.org>
19468 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19469 (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
19471 2004-04-08 David Schleef <ds@schleef.org>
19473 * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
19474 we don't support (bug #139532)
19476 2004-04-07 Thomas Vander Stichele <thomas at apestaart dot org>
19478 * ext/mad/gstmad.c: (gst_mad_handle_event),
19479 (gst_mad_check_caps_reset), (gst_mad_chain),
19480 (gst_mad_change_state):
19481 only set explicit caps if they haven't been set before for
19482 this stream. MPEG-audio sample rate/channels aren't allowed
19483 to change in-stream.
19486 2004-04-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
19488 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
19489 (_gst_boolean_did_something_accumulator),
19490 (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
19491 (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
19492 (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
19493 (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
19494 (gst_gnomevfssink_change_state):
19495 Fix erase signal. Don't erase by default. Remove handoff signal.
19496 Remove erase property. Don't segfault. General cleanup.
19498 2004-04-07 Benjamin Otte <otte@gnome.org>
19500 * gst-libs/gst/gconf/test-gconf.c: (main):
19501 add missing gst_init
19503 2004-04-07 Benjamin Otte <otte@gnome.org>
19505 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
19506 free the mutexes, too
19508 2004-04-07 Benjamin Otte <otte@gnome.org>
19510 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
19511 actually free the URI string
19512 * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
19513 compute offset correctly when passing discont events
19514 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
19515 don't leak discont events
19516 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
19517 add some missing breaks so caps aren't copied randomly
19518 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
19519 if we realloc memory, we better use it
19521 2004-04-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
19523 * ext/mad/gstmad.c: (normal_seek):
19524 fix GST_FORMAT_TIME usage
19526 2004-04-05 David Schleef <ds@schleef.org>
19528 * ext/kio/kiosrc.cpp: Undefine KDE_DEPRECATED so we can use
19529 a deprecated function (hack!)
19531 2004-04-05 Benjamin Otte <otte@gnome.org>
19533 * ext/esd/esdmon.c: (gst_esdmon_get):
19534 fix nonterminated vararg and memleak
19536 2004-04-05 Benjamin Otte <otte@gnome.org>
19538 * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
19539 (gst_ladspa_init), (gst_ladspa_force_src_caps),
19540 (gst_ladspa_set_property), (gst_ladspa_get_property),
19541 (gst_ladspa_instantiate), (gst_ladspa_activate),
19542 (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
19545 2004-04-05 Stefan Kost <kost@imn.htwk-leipzig.de>
19547 reviewed by Benjamin Otte <otte@gnome.org>
19549 * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
19550 check for broken LADSPA parameters (fixes #138635)
19552 2004-04-05 Benjamin Otte <otte@gnome.org>
19554 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
19555 advertise buffer-frames correctly on sinkpads
19557 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
19559 * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
19560 (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
19561 (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
19562 (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
19563 (gst_mad_check_caps_reset), (gst_mad_chain):
19564 add more debugging, only reset caps when we're not in error state
19566 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
19568 * ext/mad/gstmad.c: add debugging category, comment + cleanups
19570 2004-04-05 Julio M. Merino Vidal <jmmv@menta.net>
19572 reviewed by Benjamin Otte <otte@gnome.org>
19575 fix == in test(1) operator
19577 2004-04-05 Julio M. Merino Vidal <jmmv@menta.net>
19579 reviewed by Benjamin Otte <otte@gnome.org>
19582 fix --export-symblos-regex to a working regex.
19584 2004-04-04 Benjamin Otte <otte@gnome.org>
19586 * sys/oss/.cvsignore:
19589 2004-04-03 Tim-Phillip M??ller <t.i.m@zen.co.uk>
19591 reviewed by Benjamin Otte <otte@gnome.org>
19593 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
19594 add missing 'new_media' argument (fixes #138168)
19595 * gst/matroska/matroska-demux.c:
19596 (gst_matroska_demux_handle_seek_event):
19597 add vararg terminator (fixes #138169)
19599 2004-04-02 David Schleef <ds@schleef.org>
19601 * ext/gdk_pixbuf/Makefile.am: Make sure gstgdkanimation.h is
19602 disted (bug #138914)
19604 2004-04-01 Benjamin Otte <otte@gnome.org>
19606 * ext/alsa/gstalsa.c: (gst_alsa_change_state),
19607 (gst_alsa_close_audio):
19608 handle case better where a soundcard can't pause
19609 * ext/ogg/gstoggdemux.c:
19610 don't crash when we get events but don't have pads yet
19612 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
19614 * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
19615 throw an error if we couldn't probe any caps.
19617 2004-04-01 Jan Schmidt <thaytan@mad.scientist.com>
19619 * ext/dvdnav/gst-dvd:
19620 Add a really simple sample DVD player
19622 2004-04-01 Jan Schmidt <thaytan@mad.scientist.com>
19624 * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
19625 (gst_a52dec_push), (gst_a52dec_handle_event),
19626 (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
19627 (gst_a52dec_change_state):
19628 * ext/a52dec/gsta52dec.h:
19629 Use a debug category, Output timestamps correctly
19630 Emit tag info, Handle events, tell liba52dec about cpu
19631 capabilities so it can use MMX etc.
19632 * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
19633 Fix a crasher accessing invalid memory
19634 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
19635 (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
19636 (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
19637 (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
19639 Some support for byte-format seeking.
19640 Small fixes for still frames and menu button overlays
19641 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
19642 (gst_mpeg2dec_alloc_buffer):
19643 Use a debug category. Adjust the report level of several items to
19644 LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
19645 so it doesn't lose the GstBuffer pointer
19646 * gst/debug/Makefile.am:
19647 * gst/debug/gstdebug.c: (plugin_init):
19648 * gst/debug/gstnavseek.c: (gst_navseek_get_type),
19649 (gst_navseek_base_init), (gst_navseek_class_init),
19650 (gst_navseek_init), (gst_navseek_seek),
19651 (gst_navseek_handle_src_event), (gst_navseek_set_property),
19652 (gst_navseek_get_property), (gst_navseek_chain),
19653 (gst_navseek_plugin_init):
19654 * gst/debug/gstnavseek.h:
19655 Add the navseek debug element for seeking back and forth in a
19656 video stream using arrow keys.
19657 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
19658 (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
19659 (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
19660 (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
19661 (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
19662 (gst_mpeg2subt_parse_header), (gst_get_nibble),
19663 (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
19664 (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
19665 (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
19666 (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
19667 * gst/mpeg2sub/gstmpeg2subt.h:
19668 Pretty much a complete rewrite. Now a loopbased element. May still
19669 require work to properly synchronise subtitle buffers.
19670 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
19671 (gst_dvd_demux_send_subbuffer):
19672 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
19673 Don't attempt to create subbuffers of size 0
19674 Reduce a couple of error outputs to warnings.
19675 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
19676 (gst_y4mencode_chain):
19677 Output the y4m frame header correctly.
19679 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
19681 * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
19682 throw errors instead of allowing SIGFPE
19684 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
19686 * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
19687 (gst_gconf_render_bin_from_key):
19688 leak plugging and style fixing
19690 2004-03-31 David Schleef <ds@schleef.org>
19692 * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
19693 (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
19695 * gst/debug/Makefile.am:
19696 * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
19697 * gst/debug/gstdebug.c: (plugin_init): Merge elements into one
19699 * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
19700 (gst_negotiation_base_init), (gst_negotiation_class_init),
19701 (gst_negotiation_init), (gst_negotiation_getcaps),
19702 (gst_negotiation_pad_link), (gst_negotiation_chain),
19703 (gst_negotiation_set_property), (gst_negotiation_get_property),
19704 (gst_negotiation_plugin_init): New element to talk about random
19705 negotiation things happening in a pipeline.
19707 2004-03-31 Thomas Vander Stichele <thomas at apestaart dot org>
19709 * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
19710 fix integer addition with help of Stefan Kost
19712 2004-03-31 Thomas Vander Stichele <thomas at apestaart dot org>
19714 * po/nl.po: updated Dutch translation (Elros Cyriatan)
19716 2004-03-30 David Schleef <ds@schleef.org>
19718 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
19719 (gst_mpeg2dec_negotiate_format): Handle Y42B-format MPEG
19720 video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
19722 * ext/mpeg2dec/gstmpeg2dec.h:
19724 2004-03-30 David Schleef <ds@schleef.org>
19726 * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
19728 2004-03-30 David Schleef <ds@schleef.org>
19730 * tools/gst-launch-ext-m.m: Applied patch from gnome@flyn.org (W.
19731 Michael Petullo) to handle .mov
19733 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
19735 * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
19736 (gst_osselement_rate_check_rate):
19737 probe caps correctly for sound cards that only support one format
19739 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
19741 * ext/kio/kiosrc.cpp: (process_events):
19742 update handling event processing if inside KDE - untested
19744 2004-03-29 David Schleef <ds@schleef.org>
19746 * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
19747 by 2 to not interfere with other colorspaces.
19748 * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
19749 * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
19750 one to not interfere with ffmpeg_colorspace.
19752 2004-03-29 David Schleef <ds@schleef.org>
19754 * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
19755 aren't in the caps.
19756 * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
19757 * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
19759 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
19761 * gst-libs/gst/riff/riff-media.c:
19762 fail on error, don't try to set stuff on NULL caps
19764 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
19768 * ext/kio/Makefile.am:
19769 * ext/kio/kioreceiver.cpp:
19770 * ext/kio/kioreceiver.h:
19771 * ext/kio/kiosrc.cpp:
19772 * ext/kio/kiosrc.h:
19773 add experimental kiosrc plugin
19774 * ext/alsa/gstalsaplugin.c: (plugin_init):
19775 initialize debugging category only when we're sure registering the
19778 2004-03-29 Thomas Vander Stichele <thomas at apestaart dot org>
19780 * examples/gstplay/player.c: (main):
19781 * gst-libs/gst/play/play.c: (gst_play_class_init),
19782 (gst_play_set_location), (gst_play_set_data_src),
19783 (gst_play_set_video_sink), (gst_play_set_audio_sink),
19784 (gst_play_set_visualization), (gst_play_connect_visualization):
19785 check return values of element_set_state and return FALSE where
19788 2004-03-29 Benjamin Otte <otte@gnome.org>
19790 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
19791 try harder to check if an event is really a discont
19793 2004-03-29 Thomas Vander Stichele <thomas at apestaart dot org>
19795 * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
19798 2004-03-28 Benjamin Otte <otte@gnome.org>
19800 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
19801 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
19802 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
19803 get rid of non-standard "..." ranges in case statements.
19805 2004-03-27 Martin Soto <martinsoto@users.sourceforge.net>
19807 * gst/mpegstream/gstmpegdemux.c:
19808 * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
19809 specific functionality split to the new dvddemux element.
19810 * gst/mpegstream/gstdvddemux.c:
19811 * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
19812 streams, derived from mpegdemux.
19813 * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
19814 up. SCR based timestamp rewriting can be turned off (will probably
19815 completely disappear soon).
19816 * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
19817 hacking. General cleanup. All printf statements replaced by
19818 debugging messages. Almost complete libdvdnav support.
19819 (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
19820 by events. New properties for audio and subpicture languages.
19821 (dvdnavsrc_update_highlight): Now uses events.
19822 (dvdnavsrc_user_op): Cleaned up.
19823 (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
19824 based). Lots of cleanup, and propper support for most libdvdnav
19826 (dvdnavsrc_make_dvd_event): New function.
19827 (dvdnavsrc_make_dvd_nav_packet_event): New function.
19828 (dvdnavsrc_make_clut_change_event): New function.
19830 2004-03-26 Benjamin Otte <otte@gnome.org>
19832 * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
19833 fix bug where typefinding would claim it's theora whenever less then
19834 7 bytes of data were available
19836 2004-03-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
19838 * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
19839 (gst_alawdec_base_init), (gst_alawdec_class_init),
19840 (gst_alawdec_init), (gst_alawdec_chain):
19841 * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
19842 (gst_alawenc_base_init), (gst_alawenc_class_init),
19843 (gst_alawenc_init), (gst_alawenc_chain):
19844 * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
19845 (gst_mulawdec_base_init), (gst_mulawdec_class_init),
19846 (gst_mulawdec_init), (gst_mulawdec_chain):
19847 * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
19848 (gst_mulawenc_base_init), (gst_mulawenc_class_init),
19849 (gst_mulawenc_init), (gst_mulawenc_chain):
19850 Fix capsnego in all four, remove the unused property functions and
19851 simplify the chain functions slightly. I guess we could use macros
19852 or something similar for those, since the code is so similar, but
19853 I'm currently too lazy...
19855 2004-03-24 David Schleef <ds@schleef.org>
19857 * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
19858 (gst_osselement_close_audio), (gst_osselement_probe_caps),
19859 (gst_osselement_get_format_structure),
19860 (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
19861 (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
19862 (gst_osselement_rate_int_compare): Add code to handle rate probing
19864 * sys/oss/gstosselement.h: same
19865 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
19866 Use rate probing provided by osselement.
19867 * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
19869 2004-03-24 Ronald Bultje <rbultje@ronald.bitfreak.net>
19871 * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
19872 (gst_xvidenc_get_property):
19875 2004-03-24 David Schleef <ds@schleef.org>
19877 * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
19878 (gst_speexdec_init):
19879 * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
19880 (gst_speexenc_init): Create the pad template correctly (from
19881 the static pad template, not a NULL pointer.)
19883 2004-03-25 Benjamin Otte <otte@gnome.org>
19885 * gst/debug/Makefile.am:
19886 * gst/debug/breakmydata.c:
19887 add element that quasi-randomly changes bytes in the stream.
19888 Intended use is robustness checking of demuxers and decoders in
19891 2004-03-24 Benjamin Otte <otte@gnome.org>
19893 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
19894 (gst_alsa_probe_hw_params):
19895 * ext/alsa/gstalsa.h:
19896 debugging output fixes
19898 2004-03-24 Benjamin Otte <otte@gnome.org>
19900 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
19901 don't g_return_if_fail if element is PLAYING, fail silently as every
19903 * gst/effectv/gstquark.c: (gst_quarktv_chain):
19904 only fix needed for cast lvalue issues in gst-plugins
19905 * gst/volenv/gstvolenv.c: (gst_volenv_init):
19908 2004-03-24 Benjamin Otte <otte@gnome.org>
19910 * gst/level/gstlevel.c: (gst_level_init):
19911 add proxying getcaps function, so level doesn't advertise impossible
19914 2004-03-24 David Schleef <ds@schleef.org>
19916 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
19917 (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
19918 (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
19919 (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
19920 (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
19921 (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
19922 (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
19923 (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
19924 (qtdemux_parse_tree), (qtdemux_parse_trak): Fix debugging
19925 messages. Divide the chunk size by the compression ratio
19926 (needed for MACE audio)
19928 2004-03-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
19930 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
19931 Fix buffer overflow read error.
19933 2004-03-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
19935 * ext/alsa/gstalsa.h:
19936 Remove unused entry.
19937 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
19939 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
19940 (gst_videodrop_link), (gst_videodrop_chain):
19941 Fix, sort of. Was horribly broken with new capsnego. Bah...
19943 2004-03-23 Jeremy Simon <jesimon@libertysurf.fr>
19945 * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
19947 Add a monkeysaudio typefind function
19949 2004-03-23 Johan Dahlin <johan@gnome.org>
19951 * gst-libs/gst/play/play.c (gst_play_audio_fixate)
19952 (gst_play_video_fixate): Check so the structure has the field
19953 before trying to fixate them, this makes it possible to have
19954 fakesinks for video and audio output without printing errors on
19955 the output console.
19957 2004-03-22 David Schleef <ds@schleef.org>
19959 * sys/oss/Makefile.am:
19960 * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
19961 (check_rate), (add_rate): Rate probing test app.
19963 2004-03-21 Benjamin Otte <otte@gnome.org>
19965 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
19966 (_fixate_caps_to_int), (gst_audio_convert_fixate):
19967 add a fixation function that pretty much does the right thing (fixes
19970 2004-03-20 David I. Lehn <dlehn@users.sourceforge.net>
19972 * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
19974 2004-03-20 Tim-Phillip M??ller <t.i.m@zen.co.uk>
19976 reviewed by: Benjamin Otte <otte@gnome.org>
19978 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19979 terminate gst_event_new_discontinuous correctly (fixes parts of
19982 2004-03-19 David Schleef <ds@schleef.org>
19984 * gst-libs/gst/Makefile.am: Enable xoverlay unconditionally,
19985 since it doesn't depend on X, and it's part of our ABI.
19987 2004-03-19 Iain <iain@prettypeople.org>
19989 * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
19990 is_int in the structure, not the local variable.
19992 2004-03-19 David Schleef <ds@schleef.org>
19994 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
19995 (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
19996 (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
19997 Improvements in caps negotiation.
19999 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
20003 adding Afrikaans (Petri Jooste)
20005 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
20007 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20008 (gst_ffmpegcolorspace_chain):
20009 throw error instead of g_critical (#137588)
20011 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
20015 dist common and m4 correctly
20018 2004-03-17 David Schleef <ds@schleef.org>
20020 * pkgconfig/gstreamer-media-info.pc.in: Add Version.
20023 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
20027 adding Swedish translation (Christian Rose)
20029 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
20031 * Makefile.am: use release.mak
20033 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
20035 * common/ChangeLog:
20036 * common/gst-autogen.sh:
20037 add some explanation about the version detection
20041 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
20043 * configure.ac: bump nano to 1
20045 === release 0.8.0 ===
20047 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
20049 * configure.ac: release 0.8.0, "Pharmaceutical Itch"
20051 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
20054 update libtool version
20055 * gst-libs/gst/media-info/Makefile.am:
20056 actually use libtool version
20058 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
20060 * configure.ac: fix speex detection to work with 1.0 but not 1.1
20062 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
20065 * gst-plugins.spec.in:
20066 * pkgconfig/Makefile.am:
20067 * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
20068 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
20069 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
20070 * pkgconfig/gstreamer-libs.pc.in:
20071 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
20072 * pkgconfig/gstreamer-play-uninstalled.pc.in:
20073 * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
20074 * pkgconfig/gstreamer-plugins.pc.in:
20075 remove @VERSION@ from some of the pc files since core and plugins
20077 created gstreamer-plugins.pc as it's a better name, but keeping
20078 -libs around for now to get fixes upstream done first.
20080 2004-03-15 Julien MOUTTE <julien@moutte.net>
20082 * gst-libs/gst/play/play.c: (gst_play_get_framerate),
20083 (gst_play_get_sink_element): First draft of gst_play_get_framerate.
20084 * gst-libs/gst/play/play.h:
20086 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
20088 * *.c, *.cc: don't mix tabs and spaces
20090 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
20092 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
20093 use the new ffmpegcolorspace
20094 * gst-plugins.spec.in:
20095 package new colorspace and media-info
20097 * pkgconfig/Makefile.am:
20098 fix some more disting issues
20099 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
20100 * pkgconfig/gstreamer-media-info.pc.in:
20101 generate media-info pc files
20103 2004-03-15 Johan Dahlin <johan@gnome.org>
20105 * *.h: Revert indenting
20107 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
20110 adding ffmpegcolorspace element
20111 * gst/ffmpegcolorspace/Makefile.am:
20112 * gst/ffmpegcolorspace/avcodec.h:
20113 * gst/ffmpegcolorspace/common.h:
20114 * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
20115 * gst/ffmpegcolorspace/dsputil.h:
20116 * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
20117 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
20118 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
20119 (gst_ffmpeg_caps_to_pix_fmt):
20120 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
20121 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20122 (gst_ffmpegcolorspace_caps_remove_format_info),
20123 (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
20124 (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
20125 (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
20126 (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
20127 (gst_ffmpegcolorspace_set_property),
20128 (gst_ffmpegcolorspace_get_property),
20129 (gst_ffmpegcolorspace_register):
20130 * gst/ffmpegcolorspace/imgconvert.c:
20131 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
20132 (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
20133 (avpicture_get_size), (avcodec_get_pix_fmt_loss),
20134 (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
20135 (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
20136 (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
20137 (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
20138 (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
20139 (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
20140 (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
20141 (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
20142 (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
20143 (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
20144 (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
20145 (img_get_alpha_info), (deinterlace_line),
20146 (deinterlace_line_inplace), (deinterlace_bottom_field),
20147 (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
20148 * gst/ffmpegcolorspace/imgconvert_template.h:
20149 * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
20150 * gst/ffmpegcolorspace/mmx.h:
20151 * gst/ffmpegcolorspace/utils.c: (avcodec_init):
20152 adding ffmpegcolorspace element supplied by Ronald after cleaning
20153 up and pulling in the right bits of upstream source.
20154 I'm sure a better C/compiler wizard could do some cleaning up (for
20155 example use GLIB's malloc stuff), but as a first pass this
20158 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
20160 * ext/alsa/gstalsa.h:
20161 I assume Ronald forgot to commit the change to have cardname
20162 as a struct member. Expect some public spanking at the next
20165 2004-03-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
20167 * ext/alsa/gstalsa.c: (gst_alsa_get_property),
20168 (gst_alsa_open_audio), (gst_alsa_close_audio):
20169 * ext/alsa/gstalsa.c:
20170 Don't open the device if we're a mixer (= padless).
20171 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
20172 (gst_alsa_mixer_init), (gst_alsa_mixer_open),
20173 (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
20174 Open mixer during state change rather than during object
20175 initialization. Also, get a device name. Currently in a somewhat
20176 hackish fashion, but I didn't really find something better.
20178 2004-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
20180 * *.c, *.h: run gst-indent
20182 2004-03-14 Benjamin Otte <otte@gnome.org>
20184 * gst/modplug/gstmodplug.cc:
20185 * gst/modplug/gstmodplug.h:
20186 set correct timestamps on outgoing buffers
20188 2004-03-14 Benjamin Otte <otte@gnome.org>
20190 * gst/modplug/gstmodplug.cc:
20191 handle events - don't do crap when a discont arrives that's not
20193 This allows correct loading and playback of mods in Rhythmbox
20195 2004-03-14 Benjamin Otte <otte@gnome.org>
20198 * gst-libs/gst/gconf/Makefile.am:
20199 * pkgconfig/Makefile.am:
20200 move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
20201 they get rebuilt properly
20203 when checking for vorbis, try pkgconfig first.
20204 * gst/modplug/gstmodplug.cc:
20205 add fixate function
20207 2004-03-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
20209 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
20210 Fix for obvious mistake, where we first shift the offset and then
20211 read a samplesize element assuming the old offset. Note that this
20212 part still has something weird, i.e. my movies containing those
20213 don't actually play well, but at least there's something that looks
20216 2004-03-14 Jan Schmidt <thaytan@mad.scientist.com>
20217 * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
20219 Add a typefind function for speex format
20221 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
20223 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
20224 (gst_asf_demux_setup_pad):
20225 Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
20226 instead of 0. Reason is simple: some elements have a fps range
20227 of 1-max instead of 0-max. So now ASF video actually works.
20229 2004-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
20233 adding serbian as a language
20235 2004-03-13 Benjamin Otte <otte@gnome.org>
20237 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
20238 return taglist correctly from _get function, don't gst_pad_push it.
20241 2004-03-13 Jan Schmidt <thaytan@mad.scientist.com>
20242 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
20244 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
20246 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
20247 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
20248 (gst_alsa_mixer_track_new):
20249 * ext/alsa/gstalsamixertrack.h:
20250 Fix ancient leftovers... MixerTrack is a GObject.
20252 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
20254 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
20255 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
20256 Don't block during probing...
20258 2004-03-12 Ronald Bultje <rbultje@ronald.bitfreak.net>
20260 * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
20261 (gst_alsa_get_property), (gst_alsa_probe_get_properties),
20262 (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
20263 (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
20264 (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
20265 (gst_alsa_open_audio), (gst_alsa_close_audio):
20266 * ext/alsa/gstalsa.h:
20267 Add propertyprobe interface implementation, add some device-name
20268 property, all this so that it looks good in gnome-volume-control.
20270 2004-03-12 David Schleef <ds@schleef.org>
20272 * configure.ac: the Hermes library controls hermescolorspace, not
20274 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
20275 (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
20277 * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
20278 * ext/sdl/sdlvideosink.h: ditto.
20279 * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
20281 2004-03-12 Benjamin Otte <otte@gnome.org>
20283 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
20284 (gst_x_overlay_got_xwindow_id):
20285 * gst-libs/gst/xoverlay/xoverlay.h:
20286 replace XID with unsigned long to get rid of the xlibs dependency in
20287 XOverlay (fixes #137004)
20289 2004-03-13 Jan Schmidt <thaytan@mad.scientist.com>
20290 * gst/effectv/gstaging.c: (gst_agingtv_base_init),
20291 (gst_agingtv_setup):
20292 * gst/effectv/gstdice.c: (gst_dicetv_get_type),
20293 (gst_dicetv_base_init), (gst_dicetv_class_init),
20294 (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
20295 * gst/effectv/gstedge.c: (gst_edgetv_get_type),
20296 (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
20297 (gst_edgetv_setup), (gst_edgetv_rgb32):
20298 * gst/effectv/gsteffectv.c:
20299 * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
20300 (gst_quarktv_set_property):
20301 * gst/effectv/gstrev.c: (gst_revtv_get_type),
20302 (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
20303 (gst_revtv_setup), (gst_revtv_rgb32):
20304 * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
20305 (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
20306 (gst_shagadelictv_init), (gst_shagadelictv_setup),
20307 (gst_shagadelictv_rgb32):
20308 * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
20309 (gst_vertigotv_base_init), (gst_vertigotv_class_init),
20310 (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
20311 * gst/effectv/gstwarp.c:
20312 Port everything that can be ported to videofilter and fix up the caps.
20313 Can someone with a big-endian machine please check these?
20315 2004-03-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
20317 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
20318 (gst_osssink_chain), (gst_osssink_change_state):
20319 Latest fixes for A/V sync, audio playback and such. This is about
20320 all... MPEG playback issues are mostly related to the async build-
20321 up of MPEG files, I cannot fix that. Use basicgthread to solve it.
20323 2004-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
20325 patch from: Stephane Loeuillet
20328 use pkg-config for some libraries, falling back to the old .m4 way
20333 2004-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
20336 * tools/Makefile.am:
20337 * tools/Makefile.in:
20338 * tools/gst-launch-ext-m.m:
20339 * tools/gst-launch-ext.1.in:
20340 * tools/gst-visualise-m.m:
20341 * tools/gst-visualise.1:
20342 * tools/gst-visualise.1.in:
20343 reorganizing generation of script tools
20345 2004-03-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
20347 * ext/divx/gstdivxdec.c:
20348 Downgrade priority. We prefer ffdec_mpeg4.
20349 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
20350 (gst_faad_chain), (gst_faad_change_state):
20351 Fix capsnego. Doesn't work for some sounds because we don't have
20352 a 5:1 to stereo element.
20353 * ext/xvid/gstxvid.c: (plugin_init):
20355 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
20356 (gst_osssink_change_state):
20357 Add discont handling.
20359 2004-03-09 Colin Walters <walters@verbum.org>
20361 * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
20364 2004-03-09 Benjamin Otte <otte@gnome.org>
20366 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
20367 the signals take 2 arguments
20369 2004-03-09 David Schleef <ds@schleef.org>
20371 * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
20372 (gst_alsa_fixate): Add fixate function. (bug #136686)
20373 * ext/alsa/gstalsa.h:
20374 * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
20376 2004-03-09 Benjamin Otte <otte@gnome.org>
20378 * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
20379 (gst_mikmod_change_state):
20380 * ext/mikmod/gstmikmod.h:
20381 make mikmod's loop function not loop infinitely and call
20382 gst_element_yield anymore
20383 * gst/modplug/gstmodplug.cc:
20384 fix pad negotiation (fixes #136590)
20386 2004-03-09 David Schleef <ds@schleef.org>
20388 * ext/lcs/Makefile.am: Fix so that the lcs colorspace plugin
20389 doesn't conflict with the internal colorspace plugin.
20390 * gst-libs/gst/audio/make_filter: Use `` instead of $() to
20391 satisfy the crappy-ass shell shipped by a certain vendor.
20392 * gst/videofilter/make_filter: same (bug #135299)
20394 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
20396 * configure.ac: bump nano to 1
20398 === release 0.7.6 ===
20400 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
20402 * configure.in: releasing 0.7.6, "There"
20404 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
20406 * pkgconfig/gstreamer-play-uninstalled.pc.in:
20407 * pkgconfig/gstreamer-play.pc.in:
20408 synchronize the two
20410 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
20412 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
20413 (cdparanoia_open), (cdparanoia_event):
20414 fix/add error handling
20416 add cdparanoia source
20417 * tools/Makefile.am:
20418 make scripts executable
20420 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
20423 * ext/vorbis/Makefile.am:
20425 remove id3types, vorbisfile and xvideosink from the build (#133783)
20427 2004-03-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
20429 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
20430 Fix metadata read crash (#136537).
20432 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
20434 * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
20435 * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
20436 adding mime types, fixing the one-stop function
20438 2004-03-08 Christian Schaller <Uraeus@gnome.org>
20440 * ext/nas/nassink.c and /ext/nas/nassink.h:
20441 More NAS love from Arwed von Merkatz
20442 So lets all sing 'Can you feel the NAS tonight'
20444 2004-03-08 Christian Schaller <Uraeus@gnome.org>
20446 * tools/gst-launch-ext.in:
20447 Replace vorbisfile with oggdemux/vorbisdec/audioconvert
20449 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
20451 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
20452 (gst_mpeg2dec_init):
20453 remove the user_data pad for now, because it is being used in
20454 fixating causing MPEG playback to fixate on 1000 Hz for playback.
20455 If someone knows how to fix this properly, please do.
20457 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
20459 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
20460 (gst_osssink_get_time):
20461 add a warning, IMO this won't get triggered anymore, remove later
20463 2004-03-07 David Schleef <ds@schleef.org>
20465 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Added Cinepak
20466 format (bug #136470)
20468 2004-03-07 Thomas Vander Stichele <thomas at apestaart dot org>
20470 * gst-libs/Makefile.am:
20471 * gst-libs/gst/media-info/Makefile.am:
20472 * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
20473 (error_callback), (gst_media_info_error_create),
20474 (gst_media_info_error_element), (gmip_init), (gmip_reset),
20475 (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
20476 * gst-libs/gst/media-info/media-info-priv.h:
20477 * gst-libs/gst/media-info/media-info-test.c: (main):
20478 * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
20479 (gst_media_info_class_init), (gst_media_info_instance_init),
20480 (gst_media_info_set_source), (gst_media_info_read_with_idler),
20481 (gst_media_info_read_idler), (gst_media_info_read):
20482 * gst-libs/gst/media-info/media-info.h:
20483 fixed, should work now
20485 2004-03-07 Christian Schaller <Uraeus@gnome.org>
20487 * ext/nas/nassink.c:
20488 A bunch of NAS fixes from Arwed von Merkatz
20490 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
20492 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
20493 (qtdemux_parse_trak):
20494 Fix crash (j might be greater than n_samples, in which case we're
20495 writing outside the allocated space for the array) and memleak.
20497 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
20499 * sys/oss/gstosssink.c: (gst_osssink_chain):
20500 And another caller that couldn't handle delay < 0 (unsigned
20501 integer overflow). Video now continues playing on an audio
20502 buffer underrun, and the clock continues working. Audio still
20505 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
20507 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
20508 (gst_osssink_get_time):
20509 get_delay() may return values lower than 0. In those cases, we
20510 should not actually cast to *unsigned* int64, that will break
20511 stuff horribly. In my case, it screwed up A/V sync in movies
20512 in totem rather badly.
20514 2004-03-06 Christophe Fergeau <teuf@gnome.org>
20516 * ext/faac/gstfaac.c: (gst_faac_chain):
20517 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
20518 * ext/libpng/gstpngenc.c: (user_write_data):
20519 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
20520 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
20521 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
20522 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
20523 Fix several misuse of gst_buffer_merge (it doesn't take ownership
20524 of any buffer), should fix some leaks. I hope I didn't unref buffers
20525 that shouldn't be...
20527 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
20529 * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
20530 (deep_notify_callback), (tag_flag_score), (found_tag_callback),
20531 (error_callback), (gmi_reset), (gmi_seek_to_track),
20532 (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
20533 (gmip_find_type_post), (gmip_find_stream_post),
20534 (gmip_find_track_streaminfo_post):
20535 * gst-libs/gst/media-info/media-info-priv.h:
20536 * gst-libs/gst/media-info/media-info-test.c: (print_tag),
20537 (info_print), (main):
20538 * gst-libs/gst/media-info/media-info.c:
20539 (gst_media_info_error_create), (gst_media_info_error_element),
20540 (gst_media_info_instance_init), (gst_media_info_get_property),
20541 (gst_media_info_new), (gst_media_info_set_source),
20542 (gst_media_info_read_idler), (gst_media_info_read):
20543 * gst-libs/gst/media-info/media-info.h:
20544 first pass at making this work again. This seems to work on
20545 tagged ogg/vorbis and mp3 files.
20547 2004-03-06 Benjamin Otte <otte@gnome.org>
20549 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
20550 fix huge leak: gst_buffer_merge doesn't unref the first argument
20553 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
20555 * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
20556 report layer/mode/emphasis
20558 2004-03-06 Christophe Fergeau <teuf@gnome.org>
20560 * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
20562 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
20564 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
20567 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
20569 * ext/vorbis/vorbis.c: (plugin_init):
20570 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
20571 (gst_vorbis_dec_init), (vorbis_dec_event):
20573 make vorbisdec handle _BYTE and _TIME queries
20575 2004-03-06 Christophe Fergeau <teuf@gnome.org>
20577 * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
20578 from the xing header
20580 2004-03-06 Benjamin Otte <otte@gnome.org>
20582 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
20583 (gst_audio_convert_link), (gst_audio_convert_change_state),
20584 (gst_audio_convert_buffer_from_default_format):
20585 do conversions from/to float correctly, fix some caps nego errors,
20586 export correct supported caps in template and getcaps, use correct
20587 caps in try_set_caps functions
20589 2004-03-06 Christophe Fergeau <teuf@gnome.org>
20591 For some reason, I only committed a ChangeLog entry yesterday and
20592 not the corresponding code...
20593 * ext/mad/gstmad.c: Fix detection of Xing headers
20594 * gst/tags/gstid3tag.c: Changes to support TLEN tags
20596 2004-03-06 Benjamin Otte <otte@gnome.org>
20598 * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
20599 (gst_ogg_demux_src_query):
20600 make sure to handle the case where there's no current chain
20603 2004-03-05 David Schleef <ds@schleef.org>
20605 * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
20606 Add fixate function. (bug #131128)
20607 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
20608 (gst_sdlvideosink_fixate): Add fixate function.
20609 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
20610 Fix attempt to print a non-pointer using GST_PTR_FORMAT.
20611 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
20612 Fix missing break that was causing ulaw to be interpreted as
20615 2004-03-05 David Schleef <ds@schleef.org>
20617 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
20618 Fix code that ignores return value of gst_buffer_merge().
20620 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
20621 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
20622 * testsuite/gst-lint: Check for above.
20624 2004-03-05 David Schleef <ds@schleef.org>
20626 * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Check for unfixed
20627 caps and throw an element error. (bug #136334)
20629 2004-03-05 David Schleef <ds@schleef.org>
20631 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
20632 (gst_faad_chain): Fix negotiation.
20633 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
20634 key and button events.
20635 * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
20637 * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
20639 * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
20640 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
20641 (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
20642 function to encourage better negotiation, particularly between
20643 audioconvert and osssink.
20644 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
20645 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak): Make some debugging
20647 * gst/typefind/gsttypefindfunctions.c: Fix mistake in flash
20649 * gst/vbidec/vbiscreen.c: Add glib header
20650 * pkgconfig/gstreamer-play.pc.in: Depends on gst-interfaces.
20652 2004-03-06 Christophe Fergeau <teuf@users.sourceforge.net>
20654 * ext/mad/gstmad.c: Fix detection of Xing headers
20655 * gst/tags/gstid3tag.c: Changes to support TLEN tags
20657 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
20659 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
20660 (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
20663 2004-03-06 Christophe Fergeau <teuf@gnome.org>
20665 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
20666 * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
20667 (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
20668 files, and report the parsed length as a GST_TAG_DURATION tag.
20669 * gst/tags/gstid3tag.c: support TLEN (duration) tag
20671 2004-03-05 Benjamin Otte <otte@gnome.org>
20673 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
20674 convert channels correctly. convert correctly to unsigned.
20676 2004-03-05 Julien MOUTTE <julien@moutte.net>
20678 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
20679 we have a window before clearing it.
20681 2004-03-05 Julien MOUTTE <julien@moutte.net>
20683 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
20684 have a window before clearing it.
20686 2004-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
20688 * gconf/gstreamer.schemas.in:
20689 * gst-libs/gst/gconf/Makefile.am:
20690 version installation path the same way as for 0.6
20691 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
20692 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
20693 * pkgconfig/gstreamer-play-uninstalled.pc.in:
20694 remove comment that was fixed
20696 2004-03-05 David Schleef <ds@schleef.org>
20698 * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
20699 (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
20700 (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
20701 (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
20702 Add prototype code for handling seeking and querying.
20704 2004-03-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
20706 * examples/gstplay/player.c: (main):
20707 Initialize variables to NULL. Prevents a segfault because the
20708 (uninitialized) variable is not NULL, resulting in a crash on
20709 trying to reach error->message.
20711 2004-03-05 Benjamin Otte <otte@gnome.org>
20713 * gst/audioconvert/gstaudioconvert.c:
20714 (gst_audio_convert_buffer_to_default_format):
20715 make float=>int conversion work correctly even in cornercases.
20717 2004-03-04 David I. Lehn <dlehn@users.sourceforge.net>
20719 * debian/README.Debian:
20720 * debian/build-deps:
20721 * debian/changelog:
20723 * debian/control.in:
20724 * debian/copyright:
20725 * debian/gstreamer-a52dec.files:
20726 * debian/gstreamer-aa.files:
20727 * debian/gstreamer-alsa.files:
20728 * debian/gstreamer-alsa.manpages:
20729 * debian/gstreamer-arts.files:
20730 * debian/gstreamer-artsd.files:
20731 * debian/gstreamer-audiofile.files:
20732 * debian/gstreamer-avifile.files:
20733 * debian/gstreamer-cdparanoia.files:
20734 * debian/gstreamer-colorspace.files:
20735 * debian/gstreamer-doc.files:
20736 * debian/gstreamer-dv.files:
20737 * debian/gstreamer-dvd.files:
20738 * debian/gstreamer-esd.files:
20739 * debian/gstreamer-festival.files:
20740 * debian/gstreamer-flac.files:
20741 * debian/gstreamer-gconf.conffiles:
20742 * debian/gstreamer-gconf.files:
20743 * debian/gstreamer-gconf.postinst:
20744 * debian/gstreamer-gnomevfs.files:
20745 * debian/gstreamer-gsm.files:
20746 * debian/gstreamer-http.files:
20747 * debian/gstreamer-jack.files:
20748 * debian/gstreamer-jpeg.files:
20749 * debian/gstreamer-mad.files:
20750 * debian/gstreamer-mikmod.files:
20751 * debian/gstreamer-misc.files:
20752 * debian/gstreamer-mpeg2dec.files:
20753 * debian/gstreamer-oss.files:
20754 * debian/gstreamer-plugin-apps.files:
20755 * debian/gstreamer-plugin-apps.manpages:
20756 * debian/gstreamer-plugin-libs-dev.files:
20757 * debian/gstreamer-plugin-libs.files:
20758 * debian/gstreamer-plugin-template.postinst:
20759 * debian/gstreamer-plugin-template.postrm:
20760 * debian/gstreamer-sdl.files:
20761 * debian/gstreamer-sid.files:
20762 * debian/gstreamer-vorbis.files:
20763 * debian/gstreamer-x.files:
20764 * debian/mk.control:
20766 Debian package info not maintained here.
20768 2004-03-04 Thomas Vander Stichele <thomas at apestaart dot org>
20770 * ext/aalib/gstaasink.c: (gst_aasink_class_init):
20771 * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
20772 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
20773 * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
20774 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
20775 * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
20776 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
20777 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
20778 * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
20779 * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
20780 * gst-libs/gst/colorbalance/colorbalance.c:
20781 (gst_color_balance_class_init):
20782 * gst-libs/gst/colorbalance/colorbalancechannel.c:
20783 (gst_color_balance_channel_class_init):
20784 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
20785 * gst-libs/gst/play/play.c: (gst_play_class_init):
20786 * gst-libs/gst/propertyprobe/propertyprobe.c:
20787 (gst_property_probe_iface_init):
20788 * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
20789 * gst-libs/gst/tuner/tunerchannel.c:
20790 (gst_tuner_channel_class_init):
20791 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
20792 * gst/cutter/gstcutter.c: (gst_cutter_class_init):
20793 * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
20794 * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
20795 * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
20796 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
20797 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
20798 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
20799 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
20800 fix signals to use - instead of _
20801 * ext/libcaca/gstcacasink.h:
20802 * ext/sdl/sdlvideosink.h:
20805 2004-03-04 David Schleef <ds@schleef.org>
20807 * testsuite/gst-lint: Add a check for bad signal names.
20809 2004-03-04 <kost@imn.htwk-leipzig.de>
20811 reviewed by David Schleef
20813 * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
20814 modified the alpha channel and caused a warning. (bug #136192)
20816 2004-04-03 Christian Schaller <Uraeus@gnome.org>
20818 * gst-plugins.spec.in:
20819 Change names of plugins to actually be correct. Try to keep things
20820 alphabetical to avoid getting beat up by Thomas
20822 2004-03-03 Julien MOUTTE <julien@moutte.net>
20824 * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
20825 Using ximagesink as a default if no gconf key found. We should
20826 probably consider using alsasink instead of osssink for the audio
20829 2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
20832 fix --with-plugins, don't think it ever worked before
20833 * gst-plugins.spec.in:
20836 2004-03-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
20838 * ext/sdl/sdlvideosink.h:
20839 * sys/ximage/ximagesink.h:
20840 * sys/xvideo/xvideosink.h:
20841 * sys/xvimage/xvimagesink.h:
20842 Fix for move of gstvideosink.h -> videosink.h.
20844 2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
20846 * gst-libs/gst/xwindowlistener/Makefile.am:
20847 this is a plugin library, not a library
20849 2004-03-01 David Schleef <ds@schleef.org>
20851 * AUTHORS: Added some names. Add yourself if you're still
20854 2004-03-01 David Schleef <ds@schleef.org>
20858 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
20860 * gst-plugins.spec.in: clean up spec file
20862 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
20864 * gst-libs/gst/video/Makefile.am:
20865 * gst-libs/gst/video/gstvideosink.c:
20866 * gst-libs/gst/video/gstvideosink.h:
20867 rename gstvideosink.h to videosink.h to match other headers
20868 * gst/mixmatrix/Makefile.am:
20869 fix plugin filename
20870 * gst/tags/Makefile.am: fix plugin filename
20872 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
20874 * gst/tags/Makefile.am: fix plugin filename
20876 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
20878 * examples/gstplay/player.c: (got_time_tick), (main):
20880 display time_tick more readably
20881 * gst/mixmatrix/Makefile.am:
20882 fix plugin file name
20884 2004-02-29 Christophe Fergeau <teuf@gnome.org>
20886 * sys/oss/gstosselement.c: (gst_osselement_probe),
20887 (device_combination_append), (gst_osselement_class_probe_devices):
20888 * sys/oss/gstosselement.h:
20889 Reworked enumeration of oss dsps and mixers so that gst-mixer works
20890 on my system using alsa oss emulation, fixes bug #135597
20892 2004-02-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
20894 * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
20895 (gst_videodrop_chain), (gst_videodrop_change_state):
20896 * gst/videodrop/gstvideodrop.h:
20897 Work based on timestamp of input data, not based on the expected
20898 framerate from the input. The consequence is that this element now
20899 not only scales framerates, but also functions as a framerate
20900 corrector or framerate stabilizer/constantizer.
20902 2004-02-27 David Schleef <ds@schleef.org>
20904 patches from jmmv@menta.net (Julio M. Merino Vidal)
20906 * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
20907 GST_ELEMENT_ERROR call (bug #135634)
20908 * gst/interleave/interleave.c: (interleave_buffered_loop),
20909 (interleave_bytestream_loop): Don't use alloca() (bug #135640)
20910 * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
20911 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
20912 (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
20913 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
20914 (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
20915 (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
20916 Fix GST_ELEMENT_ERROR call.
20917 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
20918 GST_ELEMENT_ERROR call.
20920 2004-02-27 Benjamin Otte <otte@gnome.org>
20922 * gst-libs/gst/audio/audio.h:
20923 add macro to make sure header isn't included twice
20924 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
20925 don't use gst_buffer_free
20926 * gst/playondemand/filter.func:
20927 don't use gst_data_free. Free data only once.
20929 2004-02-26 David Schleef <ds@schleef.org>
20931 * gst-libs/gst/colorbalance/Makefile.am:
20932 * gst-libs/gst/mixer/Makefile.am:
20933 * gst-libs/gst/tuner/Makefile.am:
20934 * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
20935 should not be disted, -marshal.h files should not be installed,
20936 and -enum.h files _should_ be installed. Fix to make this the
20939 === release 0.7.5 ===
20941 2004-02-26 Thomas Vander Stichele <thomas at apestaart dot org>
20943 * configure.ac: release 0.7.5, "Under The Sea"
20945 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
20947 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
20948 (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
20949 * gst/videoscale/gstvideoscale.c:
20950 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
20951 assorted debug/warning fixes
20953 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
20955 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
20956 (gst_videoscale_init), (gst_videoscale_chain),
20957 (gst_videoscale_set_property), (plugin_init):
20958 * gst/videoscale/gstvideoscale.h:
20959 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
20960 (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
20961 (gst_videoscale_planar400), (gst_videoscale_packed422),
20962 (gst_videoscale_packed422rev), (gst_videoscale_32bit),
20963 (gst_videoscale_24bit), (gst_videoscale_16bit),
20964 (gst_videoscale_bilinear), (gst_videoscale_bicubic),
20965 (gst_videoscale_scale_plane_slow),
20966 (gst_videoscale_scale_point_sample),
20967 (gst_videoscale_scale_nearest),
20968 (gst_videoscale_scale_nearest_str2),
20969 (gst_videoscale_scale_nearest_str4),
20970 (gst_videoscale_scale_nearest_32bit),
20971 (gst_videoscale_scale_nearest_24bit),
20972 (gst_videoscale_scale_nearest_16bit):
20973 add debugging category and use it properly
20974 fix use of GST_PTR_FORMAT
20976 2004-02-25 Andy Wingo <wingo@pobox.com>
20978 * gst/interleave/interleave.c (interleave_buffered_loop): Always
20979 push only when channel->buffer is NULL. Prevents segfaults doing
20980 the state change after a nonlocal exit, like a scheme exception.
20982 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
20983 Handle the case where the intersected caps is empty.
20985 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
20987 * gst/law/mulaw-decode.c: (mulawdec_link):
20988 * gst/law/mulaw.c: (plugin_init):
20989 fix mulawdec so it actually works again
20991 2004-02-24 Arwed v. Merkatz <v.merkatz@gmx.net>
20993 reviewed by: David Schleef <ds@schleef.org>
20995 * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
20996 (gst_gamma_init), (gst_gamma_set_property),
20997 (gst_gamma_get_property), (gst_gamma_calculate_tables),
20998 (gst_gamma_rgb24), (gst_gamma_rgb32): Adds gamma correction
20999 for RGB, with separate r g and b correction factors. (#131167)
21001 2004-02-24 Thomas Vander Stichele <thomas at apestaart dot org>
21003 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
21004 only signal tags for bitrate if they're > 0 (#134894)
21006 2004-02-24 David Schleef <ds@schleef.org>
21008 * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
21009 (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
21010 (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
21011 (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
21012 (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
21013 (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
21014 (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
21015 (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
21016 Cleanups. Convert g_prints to GST_LOGs. Add qtdemux debug
21017 category. Attempt to fix timestamp calculation.
21019 2004-02-24 Johan Dahlin <johan@gnome.org>
21021 * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
21023 2004-02-23 Thomas Vander Stichele <thomas at apestaart dot org>
21026 * gconf/Makefile.am:
21027 * gconf/gstreamer.schemas:
21028 * gst-libs/gst/gconf/Makefile.am:
21029 * gst-libs/gst/gconf/gconf.c:
21030 version gconf schemas and install locations
21032 2004-02-23 Benjamin Otte <otte@gnome.org>
21034 * ext/xine/xineinput.c: (gst_xine_input_dispose):
21035 (gst_xine_input_subclass_init):
21036 call parent dispose.
21037 change pad template for CD reader correctly
21038 * ext/xine/Makefile.am:
21039 * ext/xine/gstxine.h:
21040 * ext/xine/xine.c: (plugin_init):
21041 * ext/xine/xineaudiosink.c:
21042 wrap audio sinks, too
21043 * gst-libs/gst/resample/private.h:
21044 * gst-libs/gst/resample/resample.c: (gst_resample_init),
21045 (gst_resample_reinit), (gst_resample_scale),
21046 (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
21047 (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
21048 (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
21049 (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
21050 (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
21051 * gst-libs/gst/resample/resample.h:
21052 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
21053 (gst_audioscale_class_init), (gst_audioscale_link),
21054 (gst_audioscale_get_buffer), (gst_audioscale_init),
21055 (gst_audioscale_chain), (gst_audioscale_set_property),
21056 (gst_audioscale_get_property):
21057 * gst/audioscale/gstaudioscale.h:
21058 s/resample_*/gst_resample_*/i to not clobber namespaces
21060 2004-02-23 Julien MOUTTE <julien@moutte.net>
21062 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
21063 (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
21064 (gst_riff_create_video_template_caps),
21065 (gst_riff_create_audio_template_caps),
21066 (gst_riff_create_iavs_template_caps):
21067 * gst-libs/gst/riff/riff-media.h:
21068 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
21069 (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
21070 (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
21071 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
21072 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
21073 (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
21074 (gst_matroska_demux_plugin_init): First batch implementing audio and
21075 video codec tags in demuxers.
21077 2004-02-22 Benjamin Otte <otte@gnome.org>
21079 * ext/xine/Makefile.am:
21080 * ext/xine/gstxine.h:
21081 * ext/xine/xine.c: (plugin_init):
21082 * ext/xine/xineinput.c:
21083 add input plugin wrapper. Playback from files, http, mms and cdda
21085 * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
21086 remove leftover G_GNUC_UNUSED
21087 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
21088 (gst_asf_demux_identify_guid):
21089 improve debugging output
21091 2004-02-22 Benjamin Otte <otte@gnome.org>
21093 reported by: Padraig O'Briain <padraig.obriain@sun.com>
21096 replace test -e with test -x for mkinstalldirs to be more portable.
21099 2004-02-22 Benjamin Otte <otte@gnome.org>
21101 reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
21103 * gst/audioconvert/gstaudioconvert.c: (plugin_init):
21104 set rank to PRIMARY
21105 * gst/volume/gstvolume.c: (plugin_init):
21109 2004-02-22 Julio M. Merino Vidal <jmmv@menta.net>
21111 reviewed by Benjamin Otte <otte@gnome.org>
21113 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
21114 escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
21116 2004-02-22 Benjamin Otte <otte@gnome.org>
21119 export [_]*{gst,Gst,GST}.* symbols from plugins
21121 2004-02-22 Christophe Fergeau <teuf@gnome.org>
21123 reviewed by: Benjamin Otte <otte@gnome.org>
21125 * ext/lame/gstlame.c: (add_one_tag):
21126 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
21127 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
21128 (gst_vorbisenc_metadata_set1):
21129 * gst/tags/gstid3tag.c:
21130 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
21131 apply fixes from bugs #135042 (lame can't write tags) and #133817
21132 (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
21134 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
21136 * configure.ac: Export only gst_plugin_desc from plugins.
21137 Note that this change only makes any effect with Linux using libtool
21138 1.5.2 or higher. Otherwise it is silently ignored, but it would build
21139 fine. And don't try to have several versions of libtool in different
21142 2004-02-20 Andy Wingo <wingo@pobox.com>
21144 * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
21145 interleave respectively.
21147 * gst/interleave/deinterleave.c: New plugin: deinterleave
21148 (replaces on oneton).
21149 * gst/interleave/interleave.c: New plugin: interleave.
21150 * gst/interleave/plugin.h: Support file.
21151 * gst/interleave/plugin.c: Support file.
21153 * configure.ac: Remove intfloat and oneton, add interleave.
21155 * ext/sndfile/gstsf.c: Handle events better.
21157 * gst/audioconvert/gstaudioconvert.c: Change to support int2float
21158 and float2int operation. int2float has scheduling problems as
21159 noted in in2float_chain.
21161 2004-02-20 Benjamin Otte <otte@gnome.org>
21163 * ext/xine/Makefile.am:
21164 * ext/xine/gstxine.h:
21166 * ext/xine/xineaudiodec.c:
21167 * ext/xine/xinecaps.c:
21168 add first version of xine plugin wrapper. Currently only wraps the
21169 QDM2 win32 DLL, and even that only in proof-of-concept quality.
21172 add xine plugin wrapper, disabled by default. Use --enable-xine to
21173 build. Note that it'll segfault on gst-register if you don't remove
21174 the goom and tvtime post plugins from xine.
21175 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
21176 (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
21177 add extradata parsing for QDM2.
21178 change around debugging prints.
21180 2004-02-19 Benjamin Otte <otte@gnome.org>
21182 * ext/lame/gstlame.c: (gst_lame_chain):
21183 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
21184 use gst_tag_list_insert when you want to insert tags
21186 2004-02-18 David Schleef <ds@schleef.org>
21188 * configure.ac: Move massink to gst-rotten
21190 * ext/mas/Makefile.am:
21191 * ext/mas/massink.c:
21192 * ext/mas/massink.h:
21194 2004-02-18 David Schleef <ds@schleef.org>
21196 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
21197 typefinding, since it seems to be worse than nothing.
21198 * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Add ftyp
21199 atom to recognize .mp4 and .m4a files as video/quicktime.
21201 2004-02-18 David Schleef <ds@schleef.org>
21203 * gst/sine/demo-dparams.c: (quit_live),
21204 (dynparm_log_value_changed), (dynparm_value_changed), (main):
21205 Use double dparams, not float.
21206 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
21207 (gst_sinesrc_init): Change sync default to FALSE, since multiple
21208 sync'd elements don't really work correctly.
21209 * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
21210 (volume_update_volume), (volume_get_property): Change dparam
21213 2004-02-18 Julien MOUTTE <julien@moutte.net>
21215 * sys/ximage/ximagesink.c:
21216 (gst_ximagesink_xwindow_update_geometry),
21217 (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
21218 (gst_ximagesink_change_state), (gst_ximagesink_expose),
21219 (gst_ximagesink_init): Rework the way software video scaling works. So
21220 now we check on each chain call if the video frames are feeling the
21221 window. If not we try to renegotiate caps. On failure we memorize that
21222 and we won't try again for that PLAYING sessions.
21223 * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
21225 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
21228 2004-02-18 Thomas Vander Stichele <thomas at apestaart dot org>
21230 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
21231 break up _link so we can give a better debug message for errors
21233 2004-02-18 Thomas Vander Stichele <thomas at apestaart dot org>
21235 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
21236 set up debug category
21238 2004-02-18 Julien MOUTTE <julien@moutte.net>
21240 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
21241 (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
21242 the way renegotiation work. The event handling function is not taking
21243 care of external windows and renegotiate method check for pad flags
21244 NEGOTIATING. Should fix : #133209
21246 2004-02-17 Julien MOUTTE <julien@moutte.net>
21248 * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
21249 pad is negotiating before trying renegotiation.
21251 2004-02-17 Thomas Vander Stichele <thomas at apestaart dot org>
21253 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
21254 pass on all possible mime types as typefind hints
21256 2004-02-17 Julien MOUTTE <julien@moutte.net>
21258 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
21259 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
21260 possible SHM leak if we crash. All other apps using XShm are doing
21263 2004-02-17 Julien MOUTTE <julien@moutte.net>
21265 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
21266 (gst_ximagesink_expose): Renegotiate size on expose.
21267 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
21270 2004-02-16 Benjamin Otte <in7y118@public.uni-hamburg.de>
21272 * testsuite/alsa/sinesrc.c:
21273 cosmetic fix to fix compile issue with gcc 2.95.4
21275 2004-02-16 Julien MOUTTE <julien@moutte.net>
21277 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
21278 (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
21279 failed opening the audio device.
21280 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
21281 (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
21282 (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
21283 (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
21284 (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
21285 (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
21286 (gst_ximagesink_change_state), (gst_ximagesink_chain),
21287 (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
21288 Removing some useless g_return_if_fail like wingo suggested.
21289 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
21290 (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
21291 (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
21292 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
21293 (gst_xvimagesink_update_colorbalance),
21294 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
21295 (gst_xvimagesink_xcontext_clear),
21296 (gst_xvimagesink_get_fourcc_from_caps),
21297 (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
21298 (gst_xvimagesink_set_xwindow_id),
21299 (gst_xvimagesink_colorbalance_list_channels),
21300 (gst_xvimagesink_colorbalance_set_value),
21301 (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
21302 PAUSED. Removing some useless g_return_if_fail like wingo suggested.
21304 2004-02-16 Thomas Vander Stichele <thomas at apestaart dot org>
21306 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
21307 throw error when not negotiated instead of asserting
21309 2004-02-15 Julien MOUTTE <julien@moutte.net>
21311 * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
21312 correct data refcounting.
21314 2004-02-15 Julien MOUTTE <julien@moutte.net>
21316 * gst/switch/gstswitch.c: (gst_switch_change_state),
21317 (gst_switch_class_init): Cleaning the sinkpads correctly on state
21318 change, mostly the EOS flag.
21320 2004-02-15 Julien MOUTTE <julien@moutte.net>
21322 * examples/gstplay/player.c: (got_eos), (main): Adding some
21323 output for debugging.
21324 * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
21325 timeouts if we go to any state different from PLAYING.
21326 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
21327 more EOS bugs in riff lib.
21329 2004-02-14 Julien MOUTTE <julien@moutte.net>
21331 * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
21332 visualization until i find a way to fix switch correctly.
21333 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
21335 * gst/switch/gstswitch.c: (gst_switch_release_pad),
21336 (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
21337 (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
21338 Reworked switch to get a more correct behaviour with events and refing
21339 of data stored in sinkpads.
21340 * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
21341 we don't pull from a pad in EOS.
21343 2004-02-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
21345 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
21346 remove v1 tag even if we can't read it (makes sure we don't detect
21349 2004-02-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
21351 * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
21352 (gst_alsa_xrun_recovery):
21353 * ext/alsa/gstalsa.h:
21354 try xrun recovery when wait failed. Make xrun recovery function
21355 return TRUE/FALSE to indicate success. (might fix #134354)
21357 2004-02-13 David Schleef <ds@schleef.org>
21359 * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
21360 (dynparm_value_changed), (main): Convert from float to double.
21361 * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
21363 2004-02-13 David Schleef <ds@schleef.org>
21365 * gst/silence/gstsilence.c: (gst_silence_class_init),
21366 (gst_silence_set_clock), (gst_silence_get),
21367 (gst_silence_set_property), (gst_silence_get_property):
21368 * gst/silence/gstsilence.h: Add sync property.
21369 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
21370 (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
21371 (gst_sinesrc_set_property), (gst_sinesrc_get_property):
21372 * gst/sine/gstsinesrc.h: Add sync property.
21374 2004-02-13 David Schleef <ds@schleef.org>
21376 * gst/intfloat/gstint2float.c: (conv_f32_s16),
21377 (gst_int2float_chain_gint16): Change stdint usage to glib types.
21379 2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
21383 * gst-libs/ext/Makefile.am:
21384 move ffmpeg plugin to gst-ffmpeg module
21386 2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
21388 * configure.ac: use GST_ARCH to detect architecture
21390 2004-02-12 Julien MOUTTE <julien@moutte.net>
21392 * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
21394 2004-02-12 Thomas Vander Stichele <thomas at apestaart dot org>
21396 * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
21397 classify LADSPA plugins based on number of src/sink pads
21398 (#133663, Stefan Kost)
21399 * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
21400 fix dparams registration
21401 (#133528, Stefan Kost)
21402 * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
21403 fix use of isprint and use g_ascii_isprint instead
21404 (#133316, Stefan Kost)
21406 2004-02-11 David Schleef <ds@schleef.org>
21408 Convert a few inner loops to use liboil. This is currently
21409 optional, and is only enabled if liboil is present (duh!).
21410 * configure.ac: Check for liboil-0.1
21411 * gst/intfloat/Makefile.am:
21412 * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
21413 (gst_int2float_chain_gint16):
21414 * gst/videofilter/Makefile.am:
21415 * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
21416 (tablelookup_u8), (gst_videobalance_planar411):
21417 * gst/videotestsrc/Makefile.am:
21418 * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
21419 * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
21420 (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
21421 (paint_hline_RGB565), (paint_hline_xRGB1555):
21423 2004-02-11 David Schleef <ds@schleef.org>
21425 * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
21426 (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
21427 (gst_colorspace_getcaps), (gst_colorspace_link),
21428 (gst_colorspace_base_init), (gst_colorspace_init),
21429 (gst_colorspace_chain), (gst_colorspace_change_state),
21430 (plugin_init): Merge Ronald's patch (bug #117897) and update
21431 for new caps and negotiation. Seems to work, although it
21432 shows off bugs in lcs.
21434 2004-02-11 David Schleef <ds@schleef.org>
21436 * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
21437 (bug #133886) Noticed by bugs@leroutier.net (Stephane LOEUILLET)
21439 2004-02-11 David Schleef <ds@schleef.org>
21441 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
21442 (gst_rfbsrc_change_state), (gst_rfbsrc_init),
21443 (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
21444 Add server and port properties
21446 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
21451 * m4/as-liblame.m4:
21452 * m4/as-slurp-ffmpeg.m4:
21453 * m4/check-libheader.m4:
21460 * m4/gst-ivorbis.m4:
21461 * m4/gst-matroska.m4:
21463 * m4/gst-shout2.m4:
21471 fix underquotedness of macros (#133800)
21472 * m4/as-avifile.m4:
21474 removed because no longer used
21476 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
21479 require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
21480 by autopoint (fixes #132996)
21482 2004-02-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
21484 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
21485 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
21486 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
21487 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
21490 2004-02-11 David Schleef <ds@schleef.org>
21492 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
21493 (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
21494 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
21495 (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
21496 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
21497 (gst_jpegenc_class_init), (gst_jpegenc_init),
21498 (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
21499 (gst_jpegenc_chain), (gst_jpegenc_set_property),
21500 (gst_jpegenc_get_property): Fix negotiation. Add some properties.
21501 * ext/jpeg/gstjpegenc.h: Fix negotiation.
21503 2004-02-10 Benjamin Otte <in7y118@public.uni-hamburg.de>
21505 * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
21506 (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
21507 * ext/mikmod/gstmikmod.h:
21508 fix caps negotiation in mikmod
21509 * ext/ogg/gstoggdemux.c: (gst_ogg_print):
21510 output debug information
21512 2004-02-08 Benjamin Otte <in7y118@public.uni-hamburg.de>
21514 * gst-libs/gst/colorbalance/Makefile.am:
21515 * gst-libs/gst/navigation/Makefile.am:
21516 * gst-libs/gst/xoverlay/Makefile.am:
21517 remove unused GST_OPT_CFLAGS from Makefiles
21518 include X_CFLAGS and X_LIBS in xoverlay. (#131948)
21520 2004-02-07 David Schleef <ds@schleef.org>
21522 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
21523 push events to pads that haven't been created (#133508)
21525 2004-02-07 Jan Schmidt <thaytan@mad.scientist.com>
21527 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
21528 (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
21529 (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
21530 (gst_dvdec_loop), (gst_dvdec_change_state):
21531 Second attempt at committing a working dvdec element.
21533 2004-02-06 David Schleef <ds@schleef.org>
21535 Build fixes for OS X: (see #129600)
21536 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
21537 (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
21538 (gst_riff_read_strf_iavs):
21539 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
21540 (gst_avi_demux_stream_odml):
21541 * gst/playondemand/Makefile.am:
21542 * gst/rtp/rtp-packet.c:
21544 2004-02-05 David Schleef <ds@schleef.org>
21546 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
21547 last change, because it Just Doesn't Compile.
21549 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
21551 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
21552 skip undecodable id3v2 tag instead of keeping it
21554 2004-02-05 David Schleef <ds@schleef.org>
21556 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
21557 Unref leaked buffer. (Noticed by Ronald)
21559 2004-02-05 David I. Lehn <dlehn@users.sourceforge.net>
21561 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
21562 Sync requires with other checks. >= vs =.
21564 2004-02-06 Jan Schmidt <thaytan@mad.scientist.com>
21566 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
21567 (gst_dvdec_video_link), (gst_dvdec_loop):
21568 * ext/dv/gstdvdec.h:
21569 rework the caps negotiation so that dvdec works again instead
21570 of just segfaulting.
21572 === release 0.7.4 ===
21574 2004-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
21576 * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
21577 * configure.ac: changed for release
21579 2004-02-05 Thomas Vander Stichele <thomas at apestaart dot org>
21581 * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
21582 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
21583 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
21584 * pkgconfig/gstreamer-play-uninstalled.pc.in:
21585 reworked patch by David Lehn to fix libdir and includedir for
21586 uninstalled libraries
21587 removed play and gconf from gstreamer-libs since they have their
21588 own pkgconfig files
21590 2004-02-04 David Schleef <ds@schleef.org>
21592 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
21595 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
21597 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
21598 use correct GST_TAG_ENCODER tag
21600 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
21602 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
21603 be sure to stop the clock when going to paused
21604 * sys/oss/gstosssink.c: (gst_osssink_change_state):
21605 reset number of transmitted when going to ready.
21608 2004-02-05 Charles Schmidt <cschmidt2@emich.edu>
21610 reviewed by Benjamin Otte
21612 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
21613 extract track count (fixes #133410)
21615 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
21617 * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
21618 that should be !=, not == (fixes #132519)
21620 2004-02-04 David Schleef <ds@schleef.org>
21622 Make sure set_explicit_caps() is called before adding pad.
21623 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
21624 * gst/id3/gstid3types.c: (gst_id3types_loop):
21625 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
21626 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
21628 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
21631 bump nano to 2, first prerelease
21632 put back AM_PROG_LIBTOOL
21634 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
21636 * testsuite/alsa/Makefile.am:
21637 these are user test apps, not automatic testsuite tests
21639 2004-02-04 David Schleef <ds@schleef.org>
21641 Convert GST_DEBUG_CAPS() to GST_DEBUG():
21642 * gst/mpeg1videoparse/gstmp1videoparse.c:
21643 (mp1videoparse_parse_seq):
21644 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
21645 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
21646 * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
21647 * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
21648 (gst_xvideosink_getcaps):
21649 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
21650 * testsuite/gst-lint: more tests
21652 2004-02-04 David Schleef <ds@schleef.org>
21654 Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
21655 with the code that they would expand to.
21656 * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
21657 (gst_flacdec_get_src_query_types),
21658 (gst_flacdec_get_src_event_masks):
21659 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
21660 (gst_gnomevfssrc_get_query_types),
21661 (gst_gnomevfssrc_get_event_mask):
21663 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
21665 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
21666 (gst_sinesrc_dispose):
21667 fix memleak by properly disposing sinesrc
21669 2004-02-04 Julien MOUTTE <julien@moutte.net>
21671 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
21672 * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
21673 an overlay to redraw the image because it has been exposed.
21674 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
21675 (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
21676 (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
21677 * sys/ximage/ximagesink.h: Implement expose method from XOverlay
21679 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
21680 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
21681 (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
21682 * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
21685 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
21687 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
21688 more memleak fixage
21690 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
21692 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
21693 * gst/typefind/gsttypefindfunctions.c:
21694 fix memleaks shown by gst-typefind
21696 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
21698 * common/glib-gen.mak:
21699 add hack rule to touch .Plo files
21700 * gst-libs/gst/colorbalance/Makefile.am:
21701 * gst-libs/gst/mixer/Makefile.am:
21702 * gst-libs/gst/play/Makefile.am:
21703 * gst-libs/gst/tuner/Makefile.am:
21704 remove glib_root variable
21706 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
21708 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
21709 set explicit caps before adding the element, so the autopluggers can
21711 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
21712 (mpeg2_sys_type_find), (mpeg1_sys_type_find),
21713 (mpeg_video_type_find), (mpeg_video_stream_type_find),
21715 fix memleaks in typefind functions. gst_type_find_suggest takes a const
21718 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
21720 * gst-libs/gst/colorbalance/Makefile.am:
21721 * gst-libs/gst/colorbalance/colorbalance-marshal.list:
21722 * gst-libs/gst/colorbalance/colorbalance.c:
21723 * gst-libs/gst/colorbalance/colorbalance.h:
21724 * gst-libs/gst/colorbalance/colorbalancemarshal.list:
21725 * gst-libs/gst/mixer/Makefile.am:
21726 * gst-libs/gst/mixer/mixer-marshal.list:
21727 * gst-libs/gst/mixer/mixer.c:
21728 * gst-libs/gst/mixer/mixer.h:
21729 * gst-libs/gst/mixer/mixermarshal.list:
21730 * gst-libs/gst/play/Makefile.am:
21731 * gst-libs/gst/play/play.h:
21732 * gst-libs/gst/tuner/Makefile.am:
21733 * gst-libs/gst/tuner/tuner-marshal.list:
21734 * gst-libs/gst/tuner/tuner.c:
21735 * gst-libs/gst/tuner/tuner.h:
21736 * gst-libs/gst/tuner/tunermarshal.list:
21737 use new glib-gen.mak snippet to clean up Makefile.am
21738 fix various bugs in Makefile.am's
21740 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
21742 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
21743 handle chain parsing correctly in the multichain case
21744 * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
21745 (theora_dec_from_granulepos), (theora_dec_to_granulepos),
21746 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
21747 (theora_dec_chain):
21748 handle events and queries correctly
21750 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
21753 Ignore generated file _stdint.h.
21755 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
21757 * gst-libs/gst/colorbalance/Makefile.am:
21758 * gst-libs/gst/colorbalance/colorbalance.h:
21759 * gst-libs/gst/mixer/Makefile.am:
21760 * gst-libs/gst/mixer/mixer.h:
21761 * gst-libs/gst/play/Makefile.am:
21762 * gst-libs/gst/play/play.h:
21763 * gst-libs/gst/tuner/Makefile.am:
21764 * gst-libs/gst/tuner/tuner.h:
21765 Generate enum type code with glib-mkenums.
21766 * gst-libs/gst/colorbalance/.cvsignore:
21767 * gst-libs/gst/mixer/.cvsignore:
21768 * gst-libs/gst/play/.cvsignore:
21769 * gst-libs/gst/tuner/.cvsignore:
21770 Ignore generated files.
21772 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
21774 * gst-libs/gst/audio/.cvsignore:
21775 Ignore generated file.
21776 * gst-libs/gst/audio/Makefile.am:
21777 Do not install example filter.
21779 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
21781 * examples/switch/.cvsignore:
21782 Ignore generated file.
21784 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
21786 * common/m4/ax_create_stdint_h.m4:
21788 add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
21791 remove generated _stdint.h in DISTCLEANFILES
21792 * ext/a52dec/gsta52dec.c:
21793 include _stdint.h for a52dec. (should fix #133064)
21795 2004-02-02 Jeremy Simon <jesimon@libertysurf.fr>
21797 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
21798 (gst_tag_to_vorbis_comments):
21799 Add replaygain support to vorbistag
21801 2004-02-02 Jeremy Simon <jesimon@libertysurf.fr>
21802 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
21803 (gst_ffmpeg_caps_to_extradata):
21804 Fix SVQ3 caps flag properties
21805 Use glib macro for bytes swap
21807 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
21809 * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
21810 * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
21811 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
21812 * ext/sndfile/gstsf.c: (plugin_init):
21813 * gst/avi/gstavi.c: (plugin_init):
21814 * sys/dxr3/dxr3init.c: (plugin_init):
21815 * sys/oss/gstossaudio.c: (plugin_init):
21816 * sys/v4l/gstv4l.c: (plugin_init):
21817 * sys/v4l2/gstv4l2.c: (plugin_init):
21818 remove textdomain calls
21820 update Dutch translation
21822 2004-02-02 Julien MOUTTE <julien@moutte.net>
21824 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
21825 (gst_play_set_audio_sink): Moving volume in the audio thread for
21826 instantaneous volume change. Maybe i will add another volume in front
21827 of visualization later, not sure yet though.
21829 2004-02-02 Julien MOUTTE <julien@moutte.net>
21831 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
21832 (gst_ximagesink_handle_xevents): Better X events handling, only take
21833 the latest events for configure and motion.
21834 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
21836 2004-02-02 Jon Trowbridge <trow@gnu.org>
21838 reviewed by: David Schleef <ds@schleef.org>
21841 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
21842 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
21844 2004-02-02 David Schleef <ds@schleef.org>
21846 code cleanup. Change bzero() to memset(). Remove duplicate ; at ends
21848 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
21849 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
21850 * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
21851 * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
21852 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
21853 * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
21854 * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
21855 * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
21856 (gst_float2_2_int_link):
21857 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
21858 * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
21859 * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
21860 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
21861 * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
21862 * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
21863 * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
21864 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
21865 * testsuite/gst-lint: Add tests for bzero and ;;
21867 2004-02-02 David Schleef <ds@schleef.org>
21869 * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
21871 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
21873 * ext/aalib/gstaasink.c: (gst_aasink_open):
21874 * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
21875 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
21876 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
21877 * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
21878 (gst_afsink_close_file):
21879 * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
21880 (gst_afsrc_close_file):
21881 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
21882 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
21883 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
21884 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
21885 * ext/esd/esdmon.c: (gst_esdmon_get):
21886 * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
21887 * ext/faac/gstfaac.c: (gst_faac_chain):
21888 * ext/faad/gstfaad.c: (gst_faad_chain):
21889 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
21890 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
21891 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
21892 * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
21893 (gst_flacdec_loop):
21894 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
21895 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
21896 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
21897 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
21898 (gst_gnomevfssink_close_file):
21899 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
21900 (gst_gnomevfssrc_open_file):
21901 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
21902 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
21903 * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
21904 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
21905 (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
21906 * ext/mad/gstmad.c: (gst_mad_chain):
21907 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
21908 * ext/mpeg2dec/gstmpeg2dec.c:
21909 * ext/mpeg2enc/gstmpeg2enc.cc:
21910 * ext/mplex/gstmplex.cc:
21911 * ext/mplex/gstmplexibitstream.cc:
21912 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
21913 (gst_ogg_demux_push):
21914 * ext/raw1394/gstdv1394src.c:
21915 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
21916 (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
21917 * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
21919 * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
21920 * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
21921 * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
21922 * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
21923 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
21924 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
21925 * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
21926 * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
21927 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
21928 (gst_riff_read_element_data), (gst_riff_read_seek),
21929 (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
21930 * gst/adder/gstadder.c: (gst_adder_loop):
21931 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
21932 (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
21933 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
21934 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
21935 * gst/avi/gstavimux.c: (gst_avimux_stop_file):
21936 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
21937 * gst/goom/gstgoom.c: (gst_goom_chain):
21938 * gst/id3/gstid3types.c: (gst_id3types_loop):
21939 * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
21940 * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
21941 * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
21942 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
21943 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
21944 (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
21945 (gst_ebml_read_float), (gst_ebml_read_header):
21946 * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
21947 (gst_matroska_demux_parse_blockgroup):
21948 * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
21949 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
21950 * gst/oneton/gstoneton.c: (gst_oneton_chain):
21951 * gst/silence/gstsilence.c: (gst_silence_get):
21952 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
21953 * gst/smpte/gstsmpte.c: (gst_smpte_loop):
21954 * gst/speed/gstspeed.c: (speed_loop):
21955 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
21956 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
21957 * gst/volenv/gstvolenv.c: (gst_volenv_chain):
21958 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
21959 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
21960 (gst_wavparse_loop):
21961 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
21962 (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
21963 (dxr3audiosink_close):
21964 * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
21965 * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
21966 (dxr3videosink_close), (dxr3videosink_write_data):
21967 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
21968 * sys/oss/gstosssink.c: (gst_osssink_chain):
21969 * sys/oss/gstosssrc.c: (gst_osssrc_get):
21970 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
21971 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
21972 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
21973 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
21974 (gst_v4l_set_window), (gst_v4l_enable_overlay):
21975 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
21976 (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
21977 (gst_v4l_get_frequency), (gst_v4l_set_frequency),
21978 (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
21979 (gst_v4l_set_audio):
21980 * sys/v4l/v4l_calls.h:
21981 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
21982 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
21983 (gst_v4lmjpegsink_playback_init),
21984 (gst_v4lmjpegsink_playback_start):
21985 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
21986 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
21987 (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
21988 (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
21989 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
21990 * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
21991 (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
21992 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
21993 (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
21994 (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
21995 (gst_v4l2_get_output), (gst_v4l2_set_output),
21996 (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
21997 (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
21998 (gst_v4l2_set_attribute):
21999 * sys/v4l2/v4l2_calls.h:
22000 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
22001 (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
22002 (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
22003 (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
22004 (gst_v4l2src_capture_stop):
22005 * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
22006 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
22007 (gst_ximagesink_chain):
22008 * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
22009 (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
22010 (gst_xvideosink_xwindow_new):
22011 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
22012 (gst_xvimagesink_chain):
22014 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
22016 * gst/volume/gstvolume.c: (gst_volume_set_volume),
22017 (gst_volume_get_volume), (volume_class_init), (volume_init),
22018 (volume_chain_int16), (volume_update_volume):
22019 * gst/volume/gstvolume.h:
22020 make code more readable by removing magic numbers
22021 make mixer interface export 0-100 range
22022 make it internally map to 0.0-1.0 range so users don't distort
22023 output by putting the sliders at full volume
22025 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
22027 * gst-libs/gst/play/play.c: (gst_play_tick_callback),
22028 (gst_play_state_change), (gst_play_seek_to_time):
22029 block the tick callback for 0.5 secs after doing a seek
22031 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
22033 * gst-libs/gst/play/play.c: (gst_play_new):
22036 2004-02-01 Julien MOUTTE <julien@moutte.net>
22038 * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
22039 (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
22040 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
22041 (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
22042 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
22043 (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
22045 2004-02-01 Thomas Vander Stichele <thomas at apestaart dot org>
22048 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
22049 check for a function added in vorbis 1.1
22051 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
22053 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
22054 (gst_alsa_drain_audio), (gst_alsa_stop_audio):
22055 really start/stop clock only on PLAYING <=> PAUSED
22056 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
22057 remove \n from debugging lines
22058 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
22059 make it work when seeking does not
22060 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
22063 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
22065 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
22066 start clock on PAUSED=>PLAYING, not later
22067 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
22068 extract correct time for different discont formats
22069 (gst_alsa_sink_get_time):
22070 don't segfault when no format is negotiated yet, just return 0
22071 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
22072 (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
22073 (gst_ogg_pad_push):
22074 handle flush and discont events correctly
22075 * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
22076 handle discont events correctly
22078 2004-01-31 Thomas Vander Stichele <thomas at apestaart dot org>
22080 * gst-libs/gst/play/play.c: (gst_play_error_quark),
22081 (gst_play_error_create), (gst_play_error_plugin),
22082 (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
22083 * gst-libs/gst/play/play.h:
22084 add error handling during creation
22085 * examples/gstplay/player.c: (main):
22086 use new gst_play_new
22089 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
22091 * ext/theora/theoradec.c: (theora_dec_chain):
22093 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
22094 (vorbis_dec_src_event), (vorbis_dec_chain):
22095 add encoder tag, fix tag reading to be more error tolerant, change
22096 BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
22097 gst_pad_event_default.
22098 * gst/tags/gstvorbistag.c:
22099 (gst_tag_list_from_vorbiscomment_buffer):
22100 undefine function specific define at end of function
22102 2004-01-31 Jeremy Simon <jesimon@libertysurf.fr>
22104 * ext/flac/gstflac.c: (plugin_init):
22105 * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
22106 * ext/flac/gstflacdec.h:
22107 * ext/flac/gstflacenc.h:
22110 2004-01-30 David I. Lehn <dlehn@users.sourceforge.net>
22112 * examples/gstplay/player.c: s/gstplay.h/play.h/
22114 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
22116 * gst-libs/gst/play/Makefile.am:
22117 * gst-libs/gst/play/gstplay.c:
22118 * gst-libs/gst/play/gstplay.h:
22119 * gst-libs/gst/play/play.c:
22120 more surgery, operation complete
22122 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
22124 * gst-libs/gst/play/play.old.c:
22125 * gst-libs/gst/play/play.old.h:
22126 after CVS surgery by moving, remove
22127 * gst-libs/gst/play/playpipelines.c:
22130 * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
22131 add negotiation error
22133 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
22135 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
22136 (gst_ogg_demux_push):
22137 add some seeking debug info
22138 send a flush when seeking
22140 2004-01-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
22146 * ext/theora/Makefile.am:
22147 * ext/theora/theoradec.c:
22148 add theora video decoder. Does just do simple decoding for now and
22149 has been tested against Theora cvs only. It only works when theora
22150 is compiled with --enable-static.
22151 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
22152 always reset packetno on DISCONT
22154 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
22156 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
22159 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
22161 * gst/mpegaudioparse/gstmpegaudioparse.c:
22162 (mp3_type_frame_length_from_header):
22163 Fix header parsing - stolen from ffmpeg (thank you! :) ).
22165 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
22167 * ext/esd/esdsink.c: (gst_esdsink_init):
22168 Since we have static pad template caps, we don't need to negotiate;
22169 either the core errors out or we know the format.
22171 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
22173 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
22174 (gst_riff_read_seek):
22175 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
22176 (gst_ebml_read_seek):
22177 Fix event handling.
22179 2004-01-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
22181 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
22182 removee video/x-theora from vp3 decoder, it doesn't handle raw
22184 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
22185 fix bug with finalizing element that never went to PAUSED
22186 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
22187 length and position queries were swapped
22188 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
22189 (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
22190 (vorbis_dec_src_event):
22191 implement querying time and bytes
22193 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
22195 * just about every source file:
22196 gst_element_error -> GST_ELEMENT_ERROR
22198 2004-01-29 Julien MOUTTE <julien@moutte.net>
22200 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
22201 emiting FLUSH and even before DISCONT.
22202 * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
22203 get the best instant seeking as possible yay!
22205 2004-01-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
22207 * gst/mpeg1videoparse/gstmp1videoparse.c:
22208 (gst_mp1videoparse_real_chain):
22209 Committed wrong version last week... Grr... Didn't notice until now.
22211 2004-01-29 Julien MOUTTE <julien@moutte.net>
22213 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
22214 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
22215 have_xwindow_id signal in xwindow_create.
22217 2004-01-29 Benjamin Otte <in7y118@public.uni-hamburg.de>
22219 * ext/ogg/gstoggdemux.c:
22220 lots of changes - mainly support for chained bitstreams, seeking,
22221 querying and bugfixes of course
22222 * ext/vorbis/Makefile.am:
22223 * ext/vorbis/vorbisdec.c:
22224 * ext/vorbis/vorbisdec.h:
22225 add vorbisdec raw vorbis decoder
22226 * ext/vorbis/vorbis.c: (plugin_init):
22227 register vorbisdec as PRIMARY, vorbisfile as SECONDARY
22228 * gst/intfloat/Makefile.am:
22229 * gst/intfloat/float22int.c:
22230 * gst/intfloat/float22int.h:
22231 * gst/intfloat/gstintfloatconvert.c: (plugin_init):
22232 add float2intnew plugin. It converts multichannel interleaved float to
22233 multichannel interleaved int. The name should probably be changed.
22234 * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
22236 add typefinding for raw theora video so oggdemux can detect it.
22238 2004-01-28 Julien MOUTTE <julien@moutte.net>
22240 * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
22241 sink element first.
22242 * gst/videoscale/gstvideoscale.c:
22243 (gst_videoscale_handle_src_event): Fixing src event handler.
22245 2004-01-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
22247 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
22248 (gst_v4lsrc_open), (gst_v4lsrc_close),
22249 (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
22250 (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
22251 * sys/v4l/gstv4lsrc.h:
22252 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
22253 (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
22254 Implement resizing... Hack. But that's why v4l is b0rked...
22256 2004-01-28 Julien MOUTTE <julien@moutte.net>
22258 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22259 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
22260 (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
22261 (gst_ximagesink_xwindow_destroy):
22262 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22263 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
22264 (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
22265 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
22266 (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
22267 correctly cleaning the image created to check xshm calls on succes,
22268 added a lot of XSync calls in X11 functions, and fixed a segfault when
22269 no image format was defined before negotiation happened.
22271 2004-01-28 Benjamin Otte <in7y118@public.uni-hamburg.de>
22273 * ext/alsa/gstalsa.c: (gst_alsa_query_func):
22274 use gst_element_get_time to get correct time
22276 2004-01-28 Julien MOUTTE <julien@moutte.net>
22278 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
22279 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
22280 (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
22281 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
22282 (gst_xvimagesink_check_xshm_calls),
22283 (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
22284 X plugins are now able to detect that XShm calls will fail even if the
22285 server claims that it has XShm support (remote displays most of the
22286 time). We then log the error as a GST_DEBUG and set use_shm to FALSE
22287 so that we use non XShm functions. This feature is almost useless for
22288 xvimagesink as Xv is not supported on remote displays anyway, but
22289 it might happen than even on the local display XShm calls fail.
22291 2004-01-27 David Schleef <ds@schleef.org>
22293 * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
22294 (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
22295 (gst_esdsink_change_state): Fix sync issues in esdsink. Also
22296 changed esdsink to only use 44100,16,2, since esd sucks at rate
22297 conversion and esdsink has had difficulty negotiating.
22299 2004-01-27 Julien MOUTTE <julien@moutte.net>
22301 * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
22302 (gst_play_seek_to_time): Fixing the way to get current position.
22304 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
22306 * sys/oss/gstosssink.c: (gst_osssink_sink_query):
22307 use gst_element_get_time to get correct time
22309 2004-01-27 Julien MOUTTE <julien@moutte.net>
22311 * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
22312 fix ever... Inverting 2 lines of code make spider autoplug correctly
22315 2004-01-27 David Schleef <ds@schleef.org>
22317 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
22318 Use gst_pad_try_set_caps_nonfixed().
22320 2004-01-27 David Schleef <ds@schleef.org>
22322 * gst/ac3parse/gstac3parse.c: update to checklist 5
22323 * gst/adder/gstadder.c: rewrite negotiation. update to checklist 5
22324 * gst/audioconvert/gstaudioconvert.c: update to checklist 5
22325 * gst/audioscale/gstaudioscale.c: same
22326 * gst/auparse/gstauparse.c: same
22327 * gst/avi/gstavidemux.c: same
22329 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
22331 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
22332 stop processing after EOS
22334 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
22336 * gst/asfdemux/asfheaders.h:
22337 * gst/asfdemux/gstasfdemux.c:
22338 * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
22339 (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
22340 (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
22341 lot's of fixes to make data extraction simpler and get the code
22342 architecture and compiler independant. Add debugging category
22343 * gst/goom/gstgoom.c: (gst_goom_change_state):
22344 reset channel count on PAUSED=>READY, not READY=>PAUSED
22346 2004-01-26 Colin Walters <walters@verbum.org>
22348 * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
22349 code to pull a bigger buffer in iradio mode. This as a side effect
22350 makes typefinding work.
22352 2004-01-26 Jeremy Simon <jesimon@libertysurf.fr>
22354 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
22355 Fix SVQ3 decoding on PPC
22357 2004-01-26 Julien MOUTTE <julien@moutte.net>
22359 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
22360 that one managed to stay there... Fixed.
22362 2004-01-26 Jeremy Simon <jesimon@libertysurf.fr>
22364 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
22365 (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
22366 * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
22367 (qtdemux_video_caps):
22368 * gst/qtdemux/qtdemux.h:
22369 Add SVQ3 specific flags to qtdemux and ffmpeg
22371 2004-01-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
22373 * gst-libs/gst/audio/audio.h:
22374 remove buffer-frames from audio caps
22375 * gst/audioconvert/gstaudioconvert.c:
22376 fix plugin to really work.
22378 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
22380 * gst-libs/gst/mixer/mixer.c:
22381 * gst-libs/gst/propertyprobe/propertyprobe.c:
22382 * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
22383 (gst_tuner_find_channel_by_name):
22384 * gst-libs/gst/tuner/tuner.h:
22385 Add gtk-doc style comments. Also fix a function name.
22387 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
22389 * ext/divx/gstdivxdec.c: (gst_divxdec_init),
22390 (gst_divxdec_negotiate):
22391 Fix for new capsnego - also fixes gst-player with divxdec.
22393 2004-01-25 Julien MOUTTE <julien@moutte.net>
22395 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
22396 (gst_play_identity_handoff), (gst_play_set_location),
22397 (gst_play_set_visualization), (gst_play_connect_visualization): Another
22398 try in visualization implementation. Still have an issue with switch
22399 blocking when pulling from video_queue and only audio comes out of
22401 * gst/switch/gstswitch.c: (gst_switch_release_pad),
22402 (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
22403 release method. And check if the pad is usable before pulling.
22405 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
22407 * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
22408 (gst_videobalance_init),
22409 (gst_videobalance_colorbalance_list_channels),
22410 (gst_videobalance_colorbalance_set_value),
22411 (gst_videobalance_colorbalance_get_value),
22412 (gst_videobalance_update_properties),
22413 (gst_videobalance_update_tables_planar411),
22414 (gst_videobalance_planar411):
22415 * gst/videofilter/gstvideobalance.h:
22416 Implement lookup-tables. +/- 10x faster.
22418 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
22420 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
22421 (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
22422 The index reading was broken. The rest worked fine, but the whole
22423 goal of my rewrite was to make avidemux readable, and this was
22424 not at all readable. Please use typed variables.
22426 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
22428 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
22429 Additional pad usability check.
22430 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
22431 (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
22432 (gst_mp1videoparse_real_chain):
22433 Fix MPEG video stream parsing. The original plugin had several
22434 issues, including not timestamping streams where the source was
22435 not timestamped (this happens with PTS values in mpeg system
22436 streams, but MPEG video is also a valid stream on its own so
22437 that needs timestamps too). We use the display time code for that
22438 for now. Also, if one incoming buffer contains multiple valid
22439 frames, we push them all on correctly now, including proper EOS
22440 handling. Lastly, several potential segfaults were fixed, and we
22441 properly sync on new sequence/gop headers to include them in next,
22442 not previous frames (since they're header for the next frame, not
22443 the previous). Also see #119206.
22444 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
22446 Move caps setting so we only do it after finding several valid
22447 MPEG-1 fraes sequentially, not right after the first one (which
22448 might be coincidental).
22449 * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
22450 (mpeg_video_type_find), (mpeg_video_stream_type_find),
22452 Add unsynced MPEG video stream typefinding, and change some
22453 probability values so we detect streams rightly. The idea is as
22454 follows: I can have an unsynced system stream which contains
22455 video. In the current code, I would randomly get a type for either
22456 system or video stream type found, because the probabilities are
22457 being calculated rather randomly. I now use fixed values, so we
22458 always prefer system stream if that was found (and that is how it
22459 should be). If no system stream was found, we can still identity the stream as video-only.
22461 2004-01-23 Benjamin Otte <in7y118@public.uni-hamburg.de>
22463 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
22464 (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
22465 don't write to buffer. Extract data without the need of
22466 __attribute__ ((packed))
22468 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
22470 * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
22471 (mpeg1_sys_type_find):
22472 Fix MPEG-1 stream typefinding.
22474 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
22476 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
22477 Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
22479 2004-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
22481 * ext/esd/esdsink.c: (gst_esdsink_open_audio):
22482 * ext/esd/gstesd.c: (plugin_init):
22483 private debugging, better error reporting
22485 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
22487 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
22488 (gst_riff_read_init), (gst_riff_read_change_state):
22489 * gst-libs/gst/riff/riff-read.h:
22490 Remove stuff fromold metadata system.
22492 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
22494 * ext/ogg/gstoggdemux.c:
22495 Fix wrong file comment.
22496 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
22497 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
22498 Add metadata reading properly.
22500 2004-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
22503 Fix nas DIST_SUBDIRS
22505 Fix bug where make distcheck doesn't get run on adding stuff to
22508 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
22510 * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
22511 * ext/divx/gstdivxdec.h:
22512 Fix divx3 ("msmpeg4") playback using divxdec.
22514 2004-01-23 Benjamin Otte <in7y118@public.uni-hamburg.de>
22516 * gst/typefind/gsttypefindfunctions.c:
22517 (mp3_type_frame_length_from_header): fix bug in length computation
22518 (mp3_type_find): improve debugging output
22520 2004-01-23 Julien MOUTTE <julien@moutte.net>
22522 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
22523 (gst_play_set_location), (gst_play_seek_to_time),
22524 (gst_play_set_audio_sink), (gst_play_set_visualization),
22525 (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
22526 the pipeline from scratch. Visualization is back and switch went out as
22527 i realized it was not possible to use the way i wanted.
22528 * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
22529 (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
22530 clearing in state change from READY to NULL. So that one can clean the
22531 X ressources keeping the element.
22532 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
22533 (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
22534 (gst_xvimagesink_colorbalance_set_value),
22535 (gst_xvimagesink_colorbalance_get_value),
22536 (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
22537 (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
22538 change from READY to NULL and fixed some stupid bugs in colorbalance
22539 get/set values. Also added the following feature : when nobody tries to
22540 set some values to the colorbalance levels before the xcontext is
22541 grabbed, then when creating channels list from Xv attributes we set the
22542 internal values to the Xv defaults. This way we handle buggy Xv drivers
22543 that set default hue values far from the middle of the range (Thanks
22544 to Jon Trowbridge for pointing that issue).
22545 * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
22546 colorbalance levels have been set before xcontext is grabbed.
22548 2004-01-22 Ronald Bultje <rbultje@ronald.bitfreak.net>
22550 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
22551 Fix the ossmixer case where we shouldn't open /dev/dsp* because
22552 it might block operations (which is bad for a mixer).
22554 2004-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
22556 * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
22557 (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
22558 (gmip_find_type_pre):
22559 * gst-libs/gst/media-info/media-info-priv.h:
22560 * gst-libs/gst/media-info/media-info.c:
22561 (gst_media_info_instance_init), (gst_media_info_read_idler):
22562 add fakesink to get caps on decoder src pad again
22563 fix callback prototype to match new have_type signal signature
22565 2004-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
22567 * gst/adder/gstadder.c: (gst_adder_link):
22568 fix non-compile and cut-n-paste code
22570 2004-01-21 David Schleef <ds@schleef.org>
22572 * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
22573 (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
22574 (gst_swfdec_init), (gst_swfdec_change_state):
22575 * ext/swfdec/gstswfdec.h:
22577 * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
22578 (gst_adder_request_new_pad): Fix negotiation.
22579 * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
22580 Add a fixate function.
22581 * gst/intfloat/gstfloat2int.c:
22582 * gst/intfloat/gstfloat2int.h:
22583 * gst/intfloat/gstint2float.c:
22584 * gst/intfloat/gstint2float.h:
22585 Completely rewrite the negotiation. Doesn't quite work yet,
22586 due to some buffer-frames problem.
22588 2004-01-21 Thomas Vander Stichele <thomas at apestaart dot org>
22590 * ext/gnomevfs/gstgnomevfssrc.c:
22591 * sys/v4l2/v4l2_calls.h:
22592 fix includes for distcheck
22594 2004-01-21 Christian Schaller <uraeus@gnome.org>
22597 Add libnas (network audio system) plugin, patch from Arwed von Merkatz
22598 based on earlier patch from Laurent Vivier
22600 2004-01-20 Jeremy Simon <jesimon@libertysurf.fr>
22602 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
22603 Fix wma caps property
22604 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
22605 Fix typo (flags1 and flags2)
22607 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
22609 * gst-libs/gst/media-info/media-info-priv.c:
22610 (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
22611 (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
22612 (gmip_find_stream), (gmip_find_track_metadata),
22613 (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
22614 (gmip_find_track_format):
22615 * gst-libs/gst/media-info/media-info-priv.h:
22616 * gst-libs/gst/media-info/media-info-test.c: (main):
22617 * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
22618 (gst_media_info_read_idler), (gst_media_info_read):
22619 * gst-libs/gst/media-info/media-info.h:
22620 register debugging category and use it for debugging
22622 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
22624 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
22625 (gst_vorbisfile_new_link):
22626 signal streaminfo through tags
22628 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
22630 * ext/mplex/gstmplex.cc:
22631 * ext/mplex/gstmplexibitstream.cc:
22632 g++ doesn't like NULL in our i18n/error macros, should be
22633 either (NULL) or ("").
22635 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
22637 * sys/dxr3/dxr3audiosink.c:
22638 * sys/dxr3/dxr3init.c:
22639 * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
22640 * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
22641 Fix more error error error errors (missing includes here).
22643 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
22645 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
22646 fix thomas' error errors.
22648 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
22650 * ext/mpeg2enc/gstmpeg2enc.cc:
22653 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
22655 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
22656 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
22657 Fix for new error system.
22659 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
22661 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
22662 fix for new error reporting
22664 2004-01-20 David Schleef <ds@schleef.org>
22666 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
22667 (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
22668 (gst_ximagesink_set_xwindow_id): Change to using a framerate
22669 of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
22670 and neither is 100+, most likely.
22671 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
22672 (gst_xvimagesink_getcaps): same
22674 2004-01-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
22677 Up version requirement to 2.0.3 (not yet released) to avoid symbol
22678 clashes with ffmpeg.
22680 2004-01-20 Julien MOUTTE <julien@moutte.net>
22682 * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
22683 (gst_switch_init): Fixed switch element : proxying link and setting
22684 caps from src to sink on request.
22686 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
22688 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
22689 * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
22690 (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
22693 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
22695 * sys/v4l/v4l_calls.h:
22696 * sys/v4l2/v4l2_calls.h:
22697 element_error fixes
22699 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
22701 * gst-libs/gst/gst-i18n-plugin.h:
22703 remove config.h inclusion
22705 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
22708 adding autopoint invocation
22711 * gst-libs/gst/gettext.h:
22712 adding gettext bits
22713 * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
22714 * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
22715 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
22716 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
22717 (gst_gnomevfssink_close_file):
22718 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
22719 * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
22720 * gst-libs/gst/gst-i18n-plugin.h:
22721 * gst/avi/gstavi.c: (plugin_init):
22722 * sys/dxr3/dxr3init.c: (plugin_init):
22723 * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
22724 * sys/oss/gstossaudio.c: (plugin_init):
22725 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
22726 * sys/v4l/gstv4l.c: (plugin_init):
22727 * sys/v4l/v4l_calls.c: (gst_v4l_open):
22728 * sys/v4l2/gstv4l2.c: (plugin_init):
22729 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
22730 (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
22731 (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
22732 (gst_v4l2_set_output), (gst_v4l2_get_frequency),
22733 (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
22734 (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
22735 make sure locale and translation domain are set
22736 fix translated strings
22742 put translation files into place
22743 * sys/xvideo/imagetest.c: (main):
22744 * ext/dv/demo-play.c: (main):
22745 fix unnecessary translations
22747 2004-01-19 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
22749 * ext/sndfile/gstsf.c:
22750 * gst/avi/gstavimux.c:
22751 * ext/audiofile/gstafsink.c:
22752 * ext/audiofile/gstafsrc.c:
22753 * ext/gnomevfs/gstgnomevfssink.c:
22754 * ext/gnomevfs/gstgnomevfssrc.c:
22755 * sys/oss/gstosselement.c:
22756 * sys/v4l/v4l_calls.h:
22759 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
22761 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
22762 (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
22763 (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
22764 (gst_v4l2_get_output), (gst_v4l2_set_output),
22765 (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
22766 (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
22767 (gst_v4l2_set_attribute):
22768 update to new error handling
22770 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
22772 * ext/sidplay/gstsiddec.cc:
22773 * gst/modplug/gstmodplug.cc:
22774 parenthese NULL because C++ seems angry about it
22776 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
22778 * gst-libs/gst/gst-i18n-plugin.h:
22779 add skeleton i18n stuff, but needs to be further implemented
22781 2004-01-18 Thomas Vander Stichele <thomas at apestaart dot org>
22783 * examples/gstplay/player.c: (main):
22784 * ext/aalib/gstaasink.c: (gst_aasink_open):
22785 * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
22786 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
22787 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
22788 * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
22789 (gst_afsink_close_file):
22790 * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
22791 (gst_afsrc_close_file):
22792 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
22793 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
22794 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
22795 * ext/esd/esdmon.c: (gst_esdmon_get):
22796 * ext/esd/esdsink.c: (gst_esdsink_chain):
22797 * ext/faac/gstfaac.c: (gst_faac_chain):
22798 * ext/faad/gstfaad.c: (gst_faad_chain):
22799 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
22800 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
22801 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
22802 * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
22803 (gst_flacdec_loop):
22804 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
22805 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
22806 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
22807 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
22808 (gst_gnomevfssink_close_file):
22809 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
22810 (gst_gnomevfssrc_open_file):
22811 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
22812 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
22813 * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
22814 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
22815 (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
22816 * ext/mad/gstmad.c: (gst_mad_chain):
22817 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
22818 * ext/mpeg2dec/gstmpeg2dec.c:
22819 * ext/mpeg2enc/gstmpeg2enc.cc:
22820 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
22821 * ext/mplex/gstmplex.cc:
22822 * ext/mplex/gstmplexibitstream.cc:
22823 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
22824 (gst_ogg_demux_push), (gst_ogg_pad_push):
22825 * ext/raw1394/gstdv1394src.c:
22826 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
22827 (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
22828 * ext/sidplay/gstsiddec.cc:
22829 * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
22831 * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
22832 * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
22833 * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
22834 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
22835 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
22836 * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
22837 * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
22838 * gst-libs/gst/Makefile.am:
22839 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
22840 (gst_riff_read_element_data), (gst_riff_read_seek),
22841 (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
22842 * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
22843 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
22844 (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
22845 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
22846 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
22847 * gst/avi/gstavimux.c: (gst_avimux_stop_file):
22848 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
22849 * gst/goom/gstgoom.c: (gst_goom_chain):
22850 * gst/id3/gstid3types.c: (gst_id3types_loop):
22851 * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
22852 * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
22853 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
22854 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
22855 (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
22856 (gst_ebml_read_float), (gst_ebml_read_header):
22857 * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
22858 (gst_matroska_demux_parse_blockgroup):
22859 * gst/modplug/gstmodplug.cc:
22860 * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
22861 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
22862 * gst/oneton/gstoneton.c: (gst_oneton_chain):
22863 * gst/silence/gstsilence.c: (gst_silence_get):
22864 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
22865 * gst/smpte/gstsmpte.c: (gst_smpte_loop):
22866 * gst/speed/gstspeed.c: (speed_loop):
22867 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
22868 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
22869 * gst/volenv/gstvolenv.c: (gst_volenv_chain):
22870 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
22871 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
22872 (gst_wavparse_loop):
22873 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
22874 (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
22875 (dxr3audiosink_close):
22876 * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
22877 * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
22878 (dxr3videosink_close), (dxr3videosink_write_data):
22879 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
22880 * sys/oss/gstosselement.h:
22881 * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
22882 (gst_osssink_chain):
22883 * sys/oss/gstosssrc.c: (gst_osssrc_get):
22884 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
22885 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
22886 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
22887 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
22888 (gst_v4l_enable_overlay):
22889 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
22890 (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
22891 (gst_v4l_get_frequency), (gst_v4l_set_frequency),
22892 (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
22893 (gst_v4l_set_audio):
22894 * sys/v4l/v4l_calls.h:
22895 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
22896 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
22897 (gst_v4lmjpegsink_playback_init),
22898 (gst_v4lmjpegsink_playback_start):
22899 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
22900 (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
22901 (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
22902 (gst_v4lmjpegsrc_requeue_frame):
22903 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
22904 (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
22905 (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
22906 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
22907 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
22908 (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
22909 (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
22910 (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
22911 (gst_v4l2src_capture_stop):
22912 * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
22913 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
22914 (gst_ximagesink_chain):
22915 * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
22916 (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
22917 (gst_xvideosink_xwindow_new):
22918 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
22919 (gst_xvimagesink_chain):
22920 use new error signal, function and categories
22922 2004-01-18 Jeremy Simon <jesimon@libertysurf.fr>
22926 * ext/musicbrainz/gsttrm.c:
22927 * ext/musicbrainz/gsttrm.h:
22928 * ext/musicbrainz/Makefile.am:
22931 2004-01-18 Julien MOUTTE <julien@moutte.net>
22933 * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
22934 (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
22935 synchronous property for debugging.
22936 * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
22937 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
22938 (gst_xvimagesink_set_property): Moving a pointer declaration to a
22939 smaller block, fixing indent.
22941 2004-01-16 David Schleef <ds@schleef.org>
22943 * gst/videofilter/gstvideobalance.c: Fix regression; changing a
22944 property affects the video stream.
22945 * sys/xvimage/xvimagesink.c:
22946 * sys/xvimage/xvimagesink.h:
22947 Add synchronous property for debugging. Should probably be
22948 disabled in non-CVS builds. Make sure that the Xv attribute
22949 exists before we set it (crash!). Fix a silly float bug that
22950 caused colorbalance to just not work.
22952 2004-01-17 Christian Schaller <Uraeus@gnome.org>
22954 * tools/gst-launch-ext.in - update for new plugins
22956 2004-01-16 David Schleef <ds@schleef.org>
22958 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
22959 already-freed caps.
22961 2994-01-16 Christian Schaller <Uraeus@gnome.org>
22963 * Update spec for new colorspace plugin and libcaca plugin
22964 * Fix compilation of libcaca plugin (clock -> id)
22966 2004-01-16 Julien MOUTTE <julien@moutte.net>
22968 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
22969 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
22970 (gst_xvimagesink_set_xwindow_id),
22971 (gst_xvimagesink_colorbalance_set_value),
22972 (gst_xvimagesink_colorbalance_get_value),
22973 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22974 (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
22975 correct colorbalance properties. They can now be set when the element
22976 is still in NULL state. The values will be committed to the Xv Port
22977 when xcontext is initialized.
22978 * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
22979 brightness int values in the GstXvImagesink structure.
22981 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
22983 * gst-libs/gst/Makefile.am:
22984 restructure so having local patches works easier.
22986 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
22988 * ext/mpeg2enc/Makefile.am:
22989 * ext/mpeg2enc/gstmpeg2enc.cc:
22990 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
22991 Bugfix with respect to EOS handling.
22993 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
22995 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
22996 Link with right caps (else, it segfaults).
22997 * ext/mplex/gstmplexjob.cc:
22998 Fix for slight API change in 1.6.1.93 release of mjpegtools.
23000 2004-01-15 David Schleef <ds@schleef.org>
23002 * gst-libs/gst/audio/Makefile.am:
23003 Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
23005 * gst-libs/gst/audio/gstaudiofilter.c:
23006 * gst-libs/gst/audio/gstaudiofilter.h:
23007 Add bytes_per_sample and size and n_samples calculation.
23008 * gst-libs/gst/audio/gstaudiofilterexample.c:
23009 Remove, now autogenerated.
23010 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
23011 Moved from gstaudiofilterexample, object name changed, code added
23012 so that it actually works.
23013 * gst-libs/gst/audio/make_filter:
23014 Script to build an audiofilter subclass from the template.
23015 * gst/colorspace/Makefile.am:
23016 * gst/colorspace/yuv2yuv.c:
23017 Remove file, since it's GPL, and we don't use it.
23019 2004-01-15 Julien MOUTTE <julien@moutte.net>
23021 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
23022 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
23023 them use the buffer free function to test how the buffer was allocated.
23025 2004-01-15 David Schleef <ds@schleef.org>
23027 * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
23028 that handles osssink fallback.
23029 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
23030 (gst_audio_convert_getcaps):
23031 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
23032 Add audio/x-qdm2 for QDM2 audio.
23033 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
23034 * gst/sine/gstsinesrc.h: Add example of how to implement tags.
23035 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
23036 Decrease minimum size to 16x16.
23037 * gst/wavparse/gstwavparse.c:
23038 Convert disabled pad template caps to new caps.
23039 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
23040 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
23041 (gst_xvimagesink_chain): Throw element error when display cannot
23042 be opened. Increase minimum framerate to 1.0. Check the data
23043 free function on a buffer to make sure it is the type we expect
23044 before manipulating it.
23046 2004-01-15 Julien MOUTTE <julien@moutte.net>
23048 * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
23049 (gst_videobalance_colorbalance_set_value): Implement passthru if
23050 settings are in the middle.
23051 * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
23053 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
23055 * gst/videofilter/Makefile.am:
23056 * gst/volume/Makefile.am:
23057 Since we use videofilter symbols, link to it.
23059 2004-01-15 Julien MOUTTE <julien@moutte.net>
23061 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
23062 mixer interface type to HARDWARE.
23063 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
23065 * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
23066 * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
23067 * gst/volume/gstvolume.c: (gst_volume_interface_supported),
23068 (gst_volume_interface_init), (gst_volume_list_tracks),
23069 (gst_volume_set_volume), (gst_volume_get_volume),
23070 (gst_volume_set_mute), (gst_volume_mixer_init),
23071 (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
23072 (volume_init): Implementing mixer interface.
23073 * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
23074 * sys/oss/gstosselement.c: (gst_osselement_get_type),
23075 (gst_osselement_change_state): Removing some trailing commas in
23077 * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
23078 interface type to HARDWARE.
23079 * sys/v4l/gstv4lcolorbalance.c:
23080 (gst_v4l_color_balance_interface_init): Setting colorbalance interface
23082 * sys/v4l2/gstv4l2colorbalance.c:
23083 (gst_v4l2_color_balance_interface_init): Setting colorbalance
23084 interface type to HARDWARE.
23085 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
23086 same code than ximagesink for event handling.
23088 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
23090 * ext/snapshot/Makefile.am:
23091 * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
23092 (gst_snapshot_chain):
23093 * ext/snapshot/gstsnapshot.h:
23094 This has to be a joke... Snapshot should be connected to a tee,
23095 colorspace element before it and EOS after that, where the other
23096 src of the tee receives normal data.
23097 The current way is *wrong*.
23099 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
23101 * ext/hermes/gsthermescolorspace.c:
23102 Fix another compile error. Same as below.
23104 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
23106 * gst/colorspace/gstcolorspace.c:
23107 * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
23108 (gst_colorspace_i420_to_yv12):
23109 Fix compiling... Didn't test if it actually works.
23111 2004-01-15 David Schleef <ds@schleef.org>
23114 * gst/colorspace/Makefile.am:
23115 * gst/colorspace/gstcolorspace.c:
23116 * gst/colorspace/gstcolorspace.h:
23117 * gst/colorspace/yuv2rgb.c:
23118 * gst/colorspace/yuv2rgb.h:
23119 Duplicate the ext/hermes colorspace plugin, and remove Hermes
23120 code and GPL code. Fix for new caps negotiation. Rewrite
23121 much of the format handling code, and some of the conversion
23122 code. Basically, rewrote almost everything. This element
23123 handles I420, YV12 to RGB conversions.
23124 * ext/hermes/Makefile.am:
23125 * ext/hermes/gsthermescolorspace.c:
23126 Rename colorspace to hermescolorspace. Fix negotiation issues.
23127 Remove non-Hermes related code. This element handles lots of
23128 RGB to RGB conversions, but no YUV.
23129 * ext/hermes/gstcolorspace.c:
23130 * ext/hermes/gstcolorspace.h:
23131 * ext/hermes/rgb2yuv.c:
23132 * ext/hermes/yuv2rgb.c:
23133 * ext/hermes/yuv2rgb.h:
23134 * ext/hermes/yuv2rgb_mmx16.s:
23135 * ext/hermes/yuv2yuv.c:
23136 * ext/hermes/yuv2yuv.h:
23139 2004-01-14 Colin Walters <walters@verbum.org>
23141 * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
23142 they've already been.
23144 2004-01-15 Benjamin Otte <in7y118@public.uni-hamburg.de>
23146 * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
23147 assume tag mode when pad is not connected
23149 2004-01-15 Benjamin Otte <in7y118@public.uni-hamburg.de>
23151 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23152 Don't update the time of the clock
23153 (gst_alsa_sink_loop):
23154 sync to the clock given to alsasink, not the own clock
23155 * sys/oss/gstosssink.c: (gst_osssink_chain):
23157 (gst_osssink_change_state):
23159 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
23160 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
23161 remove bogus code that made DISCONT events unhandled
23162 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
23163 explicitly case to double in _set_simple. (fixes 2nd warning in bug
23165 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
23166 (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
23167 (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
23168 convert g_warning because of wrong asf data to GST_WARNINGs (fixes
23169 2nd warning in bug #131502)
23171 2004-01-14 Julien MOUTTE <julien@moutte.net>
23173 * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
23174 (gst_videobalance_colorbalance_set_value),
23175 (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
23176 for colorbalance interface implementation.
23177 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
23178 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
23179 (gst_ximagesink_dispose), (gst_ximagesink_init),
23180 (gst_ximagesink_class_init): Adding DISPLAY property.
23181 * sys/ximage/ximagesink.h: Adding display_name to store display.
23182 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
23183 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
23184 (gst_xvimagesink_dispose), (gst_xvimagesink_init),
23185 (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
23186 properties (they still need polishing though for gst-launch use : no
23187 xcontext yet, i ll do that tomorrow).
23188 * sys/xvimage/xvimagesink.h: Adding display_name to store display.
23190 2004-01-14 Julien MOUTTE <julien@moutte.net>
23192 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
23193 (gst_play_set_location), (gst_play_set_visualization): Preparing
23194 switch integration, adding videobalance in the pipeline.
23196 2004-01-14 Julien MOUTTE <julien@moutte.net>
23198 * gst-libs/gst/colorbalance/colorbalance.c:
23199 (gst_color_balance_class_init): Adding a default type.
23200 * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
23202 * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
23203 (gst_videobalance_dispose), (gst_videobalance_class_init),
23204 (gst_videobalance_init), (gst_videobalance_interface_supported),
23205 (gst_videobalance_interface_init),
23206 (gst_videobalance_colorbalance_list_channels),
23207 (gst_videobalance_colorbalance_set_value),
23208 (gst_videobalance_colorbalance_get_value),
23209 (gst_videobalance_colorbalance_init): Implementing colorbalance
23211 * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
23213 * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
23214 bug which was triggering a BadAccess X error when setting an overlay
23215 before pad was really negotiated.
23216 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
23217 Using the colorbalance type macro.
23219 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
23221 * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
23222 (gst_flacenc_chain):
23223 handle tags correctly
23224 * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
23225 extract ID3v1 tags correctly
23227 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
23229 * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
23231 Improve matroska typefinding for odd-typed headers...
23233 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
23235 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
23236 Fix for using incremental number on padnames.
23238 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
23240 * ext/divx/gstdivxdec.c:
23241 * ext/divx/gstdivxenc.c:
23242 Set category to divx4linux instead of divx (too generic).
23243 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
23244 (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
23245 (gst_wavparse_loop), (gst_wavparse_change_state):
23246 * gst/wavparse/gstwavparse.h:
23247 fix parsing of WAV files with non-standard fmt-tag size and fix
23248 skipping of unrecognized chunks... Someone please fix this thing
23249 to use rifflib so all this is automated.
23250 * sys/v4l/Makefile.am:
23251 * sys/v4l2/Makefile.am:
23252 Add X_CFLAGS because we depend on X (for overlay).
23254 2004-01-14 Jan Schmidt <thaytan@mad.scientist.com>
23256 * ext/mpeg2dec/gstmpeg2dec.c:
23257 Don't issue a timestamp unless we tagged the frame
23260 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
23262 * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
23263 Query the audio element to get the time, not the clock. We're
23264 interested in the element's time here.
23266 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
23268 * ext/aalib/gstaasink.c: (gst_aasink_chain):
23269 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23270 * ext/esd/esdsink.c: (gst_esdsink_chain):
23271 * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
23272 * ext/mas/massink.c: (gst_massink_chain):
23273 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
23274 * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
23275 (gst_matroska_demux_parse_metadata):
23276 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
23277 (gst_mpeg_parse_release_locks):
23278 * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
23279 * gst/udp/gstudpsink.c: (gst_udpsink_chain):
23280 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
23281 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
23282 (gst_osssink_change_state):
23283 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
23284 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
23285 * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
23286 (gst_xvideosink_release_locks):
23287 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
23289 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
23290 (gst_alsa_clock_stop):
23291 * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
23292 (gst_audio_clock_get_internal_time):
23293 simplify for use with new clocking code.
23294 * testsuite/alsa/Makefile.am:
23295 * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
23296 fix testsuite for new caps system
23298 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
23300 * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
23301 * ext/flac/gstflacenc.c: (add_one_tag):
23302 length is already host endian, no need to convert. Fixes playback of
23303 tagged files on PPC. (bug #128384)
23305 2004-01-13 Julien MOUTTE <julien@moutte.net>
23307 * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
23308 colorbalance interface stating if it is hardware based or software
23310 * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
23311 Removing a trailing comma.
23312 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
23313 (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
23314 Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
23315 the documentation seems to be wrong on the -1000 to 1000 interval.
23317 2004-01-12 David Schleef <ds@schleef.org>
23319 * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
23320 (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
23321 (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
23322 Fix negotiation. Add a bufferalloc function for the sink pad,
23323 and generally clean up some of the code.
23325 2004-01-12 Julien MOUTTE <julien@moutte.net>
23327 * gst-libs/gst/colorbalance/colorbalancechannel.c:
23328 (gst_color_balance_channel_dispose): Adding safety check in dispose
23330 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
23331 (gst_xvimagesink_xcontext_clear),
23332 (gst_xvimagesink_interface_supported),
23333 (gst_xvimagesink_colorbalance_list_channels),
23334 (gst_xvimagesink_colorbalance_set_value),
23335 (gst_xvimagesink_colorbalance_get_value),
23336 (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
23337 Adding colorbalance interface support to set XV parameters such as
23338 HUE, BRIGHTNESS, CONTRAST, SATURATION.
23339 * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
23342 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
23344 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
23345 (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
23346 (gst_audio_convert_init), (gst_audio_convert_set_property),
23347 (gst_audio_convert_get_property), (gst_audio_convert_chain),
23348 (gst_audio_convert_link),
23349 (gst_audio_convert_buffer_to_default_format),
23350 (gst_audio_convert_buffer_from_default_format), (plugin_init):
23351 - implement _getcaps and use it
23353 - remove float caps since no float conversion is actually done
23354 - remove properties and arguments that were to be used for rate
23357 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
23359 * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
23360 (gst_audio_structure_set_int):
23361 * gst-libs/gst/audio/audio.h:
23362 add helper functions for _getcaps matching the standard audio
23365 2004-01-12 David Schleef <ds@schleef.org>
23367 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
23368 Test that pad is negotiated before getting its caps.
23370 2004-01-12 Julien MOUTTE <julien@moutte.net>
23372 * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
23373 analyzing the pads of an element the bin is mostly in READY state so
23374 no caps were negotiated. This helper function needs to work with
23375 _get_caps directly then. I was not freeing them though, added that to
23378 2004-01-12 Julien MOUTTE <julien@moutte.net>
23380 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
23381 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
23382 direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
23383 than the free_func.
23385 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
23387 * sys/oss/gstossaudio.c: (plugin_init):
23388 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
23389 * sys/oss/gstosselement.h:
23390 make an oss debugging category
23391 make failure more descriptive
23393 2004-01-11 David Schleef <ds@schleef.org>
23395 * ext/ffmpeg/gstffmpeg.c:
23396 * ext/ffmpeg/gstffmpegcodecmap.c:
23397 * ext/ffmpeg/gstffmpegdec.c:
23398 * ext/ffmpeg/gstffmpegenc.c:
23399 * ext/ffmpeg/gstffmpegprotocol.c:
23400 * ext/gdk_pixbuf/gstgdkanimation.c:
23401 * ext/jpeg/gstjpeg.c:
23402 * ext/libpng/gstpng.c:
23403 * ext/mpeg2dec/perftest.c:
23404 * ext/speex/gstspeex.c:
23405 * gst-libs/gst/resample/dtos.c:
23406 * gst/intfloat/gstintfloatconvert.c:
23407 * gst/oneton/gstoneton.c:
23408 * gst/rtjpeg/RTjpeg.c:
23409 * gst/rtp/gstrtp.c:
23410 * sys/dxr3/dxr3init.c:
23411 * sys/glsink/gstgl_nvimage.c:
23412 * sys/glsink/gstgl_pdrimage.c:
23413 * sys/glsink/gstglsink.c:
23414 * testsuite/gst-lint:
23415 Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
23417 2004-01-11 David Schleef <ds@schleef.org>
23419 * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
23420 * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
23421 * ext/gdk_pixbuf/gstgdkanimation.c:
23422 (gst_gdk_animation_iter_create_pixbuf):
23423 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
23424 (gst_gdk_pixbuf_chain):
23425 * ext/gdk_pixbuf/gstgdkpixbuf.h:
23426 * ext/jack/gstjack.c: (gst_jack_change_state):
23427 * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
23428 * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
23429 * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
23430 * gst/videofilter/gstvideofilter.c:
23431 (gst_videofilter_set_output_size):
23432 Remove all usage of gst_pad_get_caps(), and replace it with
23433 gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
23435 2004-01-11 David Schleef <ds@schleef.org>
23438 * ext/Makefile.am: Fixes to make ext/libcaca compile.
23439 * ext/divx/gstdivxdec.c:
23440 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
23441 (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
23442 handle images that span multiple buffers. Now work with both
23443 filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
23444 * ext/gdk_pixbuf/gstgdkpixbuf.h:
23445 * ext/libcaca/gstcacasink.h: Fixes needed due to recent
23446 video/video.h changes
23447 * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
23448 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
23449 (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
23450 of GstData free function.
23451 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
23454 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
23456 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
23457 (gst_v4l2element_dispose), (gst_v4l2element_set_property),
23458 (gst_v4l2element_get_property):
23459 * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
23460 add norm, channel and frequency properties.
23461 * sys/v4l2/gstv4l2tuner.c:
23462 fixes for tuner interface changes
23463 * sys/v4l2/gstv4l2element.h:
23464 * sys/v4l2/gstv4l2src.c:
23465 * sys/v4l2/gstv4l2src.h:
23466 * sys/v4l2/v4l2src_calls.c:
23467 * sys/v4l2/v4l2src_calls.h:
23468 rework v4l2src to work with saa1734 cards and allow mmaped buffers.
23470 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
23472 * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
23473 (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
23474 (gst_tuner_channel_changed), (gst_tuner_norm_changed),
23475 (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
23476 * gst-libs/gst/tuner/tuner.h:
23477 GObjects aren't const.
23478 Add find_by_name functions.
23479 Add checks to _changed functions.
23480 * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
23481 (gst_v4l_tuner_get_norm):
23484 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
23486 * gst-libs/gst/video/video.h:
23487 Fix caps template names to be understandable.
23488 Prefix everything with GST_VIDEO.
23489 * ext/aalib/gstaasink.c:
23490 * ext/divx/gstdivxdec.c:
23491 * ext/divx/gstdivxenc.c:
23492 * ext/gdk_pixbuf/gstgdkpixbuf.c:
23493 * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
23494 * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
23495 * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
23496 * ext/libcaca/gstcacasink.c:
23497 * ext/libpng/gstpngenc.c: (raw_caps_factory):
23498 * ext/snapshot/gstsnapshot.c:
23499 * ext/swfdec/gstswfdec.c:
23500 * ext/xvid/gstxviddec.c:
23501 * ext/xvid/gstxvidenc.c:
23502 * gst/chart/gstchart.c:
23503 * gst/deinterlace/gstdeinterlace.c:
23504 * gst/effectv/gsteffectv.c:
23505 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
23506 * gst/goom/gstgoom.c:
23507 * gst/median/gstmedian.c:
23508 * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
23509 (gst_monoscope_srcconnect), (gst_monoscope_chain):
23510 * gst/overlay/gstoverlay.c:
23511 * gst/smooth/gstsmooth.c:
23512 * gst/smpte/gstsmpte.c:
23513 * gst/synaesthesia/gstsynaesthesia.c:
23514 * gst/videocrop/gstvideocrop.c:
23515 * gst/videodrop/gstvideodrop.c:
23516 * gst/y4m/gsty4mencode.c:
23517 * sys/qcam/gstqcamsrc.c:
23518 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
23519 Make them work with new video.h file.
23520 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
23521 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
23522 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
23523 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
23524 Make it work with new buffer allocation system.
23526 2004-01-11 Julien MOUTTE <julien@moutte.net>
23528 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
23529 pad_alloc_buffer implementation to use ->srcpad
23530 * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
23531 pad_alloc_buffer implementation to use ->srcpad
23532 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Fixing the
23533 pad_alloc_buffer implementation to use ->srcpad
23534 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
23535 (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
23536 (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
23537 a reference to everything we need.
23538 * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
23539 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
23540 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
23541 (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
23542 a reference to everything we need.
23543 * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
23545 2004-01-11 David Schleef <ds@schleef.org>
23547 * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
23548 * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
23549 (gst_fenced_buffer_default_copy): Fix for rename of buffer private
23551 * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
23552 value during a resize/renegotiation.
23553 * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
23554 gst_pad_alloc_buffer();
23555 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
23556 (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
23558 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
23559 Fix for rename of buffer private structure members.
23560 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
23561 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
23562 Fix for rename of buffer private structure members.
23563 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
23564 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
23565 Fix for rename of buffer private structure members.
23567 2004-01-11 Arwed v. Merkatz <v.merkatz@gmx.net>
23569 reviewed by: David Schleef <ds@schleef.org>
23571 * gst/videofilter/Makefile.am:
23572 * gst/videofilter/gstgamma.c: Gamma correction filter. Modified
23573 from the patch by ds to fit in with recent make_filter changes.
23575 2004-01-11 Julien MOUTTE <julien@moutte.net>
23577 * configure.ac: Adding examples/switch/Makefile
23578 * examples/Makefile.am: Adding examples/switch
23579 * examples/switch/Makefile.am: Adding switcher example.
23580 * examples/switch/switcher.c: (got_eos), (idle_iterate),
23581 (switch_timer), (main): Adding an example demonstrating switch usage
23582 with 2 videotestsrc showing different patterns.
23583 * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
23584 (gst_switch_init): Fixing switch with the new caps system.
23586 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
23588 * gst-libs/gst/video/video.h:
23589 Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
23590 They should probably be like
23591 GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
23593 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
23595 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
23596 (qtdemux_parse_trak):
23597 fix audio chunk size/timestamp calculation
23599 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
23601 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
23604 2004-01-11 Steve Baker <steve@stevebaker.org>
23606 * gst/effectv/gstaging.c: (gst_agingtv_get_type),
23607 (gst_agingtv_base_init), (gst_agingtv_class_init),
23608 (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
23609 (gst_agingtv_set_property), (gst_agingtv_get_property):
23610 Port agingTV to videofilter
23612 2004-01-09 Julien MOUTTE <julien@moutte.net>
23614 * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
23615 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
23617 2004-01-09 Julien MOUTTE <julien@moutte.net>
23619 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
23620 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
23621 * gst-libs/gst/xoverlay/xoverlay.c:
23622 (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
23623 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
23624 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
23625 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
23626 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
23627 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
23628 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
23629 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
23630 the bufferalloc_function to replace bufferpools, fixing the XOverlay
23631 interface implementation to handle xid being 0 and fix some bugs
23632 triggered by Benjamin's testcase.
23633 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
23634 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
23635 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
23636 the bufferalloc_function to replace bufferpools, fixing the XOverlay
23637 interface implementation to handle xid being 0 and fix some bugs
23638 triggered by Benjamin's testcase.
23640 2004-01-09 David Schleef <ds@schleef.org>
23642 * ext/librfb/gstrfbsrc.c: Hacking. Added actual decoding and
23643 mouse pointer events. It works.
23645 2004-01-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
23647 * ext/divx/gstdivxenc.c: (gst_divxenc_init):
23648 Use explicit caps - fix capsnego.
23649 * ext/xvid/gstxviddec.c:
23650 * ext/xvid/gstxvidenc.c:
23651 Remove macro-inside-macro which caused compile errors.
23652 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
23653 Error out if it's not a RIFF file. Else we error out without
23654 gst_element_error() which is not good...
23656 2004-01-08 David Schleef <ds@schleef.org>
23658 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
23659 Fix pad_link function to handle formats that ffmpeg returns
23660 as multiple caps structures.
23661 * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
23662 Only complain if source buffer is _smaller_ than expected.
23663 * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
23664 (gst_videoscale_handle_src_event): Resize navigation events
23665 when passing them upstream.
23666 * gst/videotestsrc/gstvideotestsrc.c:
23667 * gst/videotestsrc/gstvideotestsrc.h:
23668 * gst/videotestsrc/videotestsrc.c:
23669 * gst/videotestsrc/videotestsrc.h:
23670 Rewrite many of the buffer painting functions to handle odd
23671 sizes (for many formats, size%4!=0 or size%8!=0). Most have
23672 been verified to work with my video card.
23673 * testsuite/gst-lint: Add check for elements calling
23674 gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
23676 2004-01-08 David Schleef <ds@schleef.org>
23678 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
23679 (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
23681 2004-01-08 Julien MOUTTE <julien@moutte.net>
23683 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
23684 configure event is not emiting the desired size signal. That fixes
23685 aspect ratio issues with gst-player.
23687 2004-01-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
23689 * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
23692 2004-01-08 Julien MOUTTE <julien@moutte.net>
23694 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
23695 public method to fire size signal.
23697 2004-01-07 Julien MOUTTE <julien@moutte.net>
23699 * examples/gstplay/Makefile.am: Adding the interface library.
23700 * gst-libs/gst/play/Makefile.am: Adding the interface library.
23701 * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to the XOverlay size signal instead of GstVideoSink.
23702 * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
23703 GST_IS_X_OVERLAY before signal connect.
23704 * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
23705 Removing the have_video_size signal.
23706 * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
23707 and associated public method.
23708 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
23709 (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
23711 * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
23712 (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
23714 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
23715 Using XOverlay public method to fire size signal.
23717 2004-01-07 David Schleef <ds@schleef.org>
23719 * gst/videofilter/Makefile.am:
23720 * gst/videofilter/gstvideotemplate.c:
23721 * gst/videofilter/make_filter:
23722 Create gstvideoexample.c in a srcdir!=builddir friendly way.
23723 Convert make_filter to /bin/sh script.
23725 2004-01-07 Thomas Vander Stichele <thomas at apestaart dot org>
23727 * gst/modplug/gstmodplug.cc: fix element description
23729 2004-01-07 Julien MOUTTE <julien@moutte.net>
23731 * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
23732 (got_video_size): Adding some new lines in g_print calls.
23733 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
23734 (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
23735 (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
23736 (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
23737 (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
23738 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
23739 Complete code review, reverting some stuff i disagree with, adding
23740 some fixes : time synchronization on invalid timestamps, renegotiation
23742 * sys/ximage/ximagesink.h:
23743 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
23744 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
23745 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
23746 (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
23747 (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
23748 (gst_xvimagesink_buffer_new),
23749 (gst_xvimagesink_navigation_send_event),
23750 (gst_xvimagesink_set_xwindow_id),
23751 (gst_xvimagesink_get_desired_size),
23752 (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
23753 stuff i disagree with, adding some fixes : Renegotiation of private
23754 window, implementing get_desired_size.
23756 2004-01-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
23758 * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
23759 (gst_afsink_handle_event):
23760 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
23761 * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
23762 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
23763 * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
23764 * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
23765 Fix for instantiate-test (see core). Also remove dead code from
23766 jpegenc (which still needs fixing, but that's lower on my TODO
23768 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
23769 Never return NULL as caps.
23771 2004-01-07 David Schleef <ds@schleef.org>
23775 * ext/librfb/Makefile.am:
23776 * ext/librfb/gstrfbsrc.c:
23777 New source plugin based on librfb-0.1. RFB (remote framebuffer)
23778 is the protocol used by VNC.
23780 2004-01-07 David Schleef <ds@schleef.org>
23782 * gst/videofilter/gstvideotemplate.c:
23783 * gst/videofilter/gstvideotemplate.h:
23784 * gst/videofilter/make_filter:
23785 Merge videotemplate header into source file.
23786 * gst/effectv/Makefile.am:
23787 * gst/effectv/gsteffectv.c: (plugin_init):
23788 * gst/effectv/gstwarp.c:
23789 Make warpTV a subclass of videofilter.
23791 2004-01-07 Benjamin Otte <in7y118@public.uni-hamburg.de>
23793 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
23794 Add guard against invalid utf-8 conversions in mad. Just in case.
23796 2004-01-07 Benjamin Otte <in7y118@public.uni-hamburg.de>
23798 * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
23799 Fix for bug shown by poisoning
23801 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
23803 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
23804 (gst_v4lmjpegsrc_buffer_free):
23805 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
23806 (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
23807 (gst_v4lsrc_buffer_free):
23808 Fix for removed bufferpools.
23810 2004-01-07 Jan Schmidt <thaytan@mad.scientist.com>
23812 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
23813 Fix caps negotiation.
23815 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
23816 (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
23817 (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
23819 * ext/mpeg2dec/gstmpeg2dec.c:
23820 * gst-libs/gst/navigation/navigation.c:
23821 (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
23822 * gst-libs/gst/navigation/navigation.h:
23823 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
23824 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
23825 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
23826 Super-simple first version of mouse and keyboard events. Clicking
23827 on a DVD menu now works, although it may not take you where you
23830 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
23831 * gst/videotestsrc/gstvideotestsrc.c:
23832 (gst_videotestsrc_src_fixate):
23833 These fixate functions were broken - they never actually
23836 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
23838 * ext/shout/gstshout.c: (gst_icecastsend_base_init),
23839 (gst_icecastsend_init):
23840 fix for new caps system.
23841 * gst-libs/gst/mixer/mixertrack.h:
23842 * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
23843 Add 'master track' flag (for tools like ACME that only want to
23844 change the main volume).
23846 2004-01-07 Jan Schmidt <thaytan@mad.scientist.com>
23848 * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
23849 (gst_xvid_csp_to_caps):
23850 * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
23851 * ext/xvid/gstxvidenc.c:
23852 ifdef out ARGB type when it isn't available
23853 in xvidcore 1.0.0beta2
23855 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
23857 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
23858 When we have received a new SCR right in the first buffer after
23859 a seek (so in the same cycle that handles the discont), we should
23860 handle the buffer instead of unreffing it, else we lose data.
23862 2004-01-06 Iain <iain@prettypeople.org>
23864 * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
23865 buffer-frames caps too.
23867 * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
23868 caps that we need, don't destroy them all and rebuild them. And when
23869 creating src pads, use the src pad template rather than the sink...
23871 2004-01-05 Ronald Bultje <rbultje@ronald.bitfreak.net>
23873 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
23874 Add pad to element *after* setting functions such as event handler.
23875 Without this, the scheduler (opt) will link pads, set the event
23876 handler from the default event function (dispatcher in gstpad.c)
23877 and *after* that, we will set our own event function, which will
23878 thus never be used (and thus mpegdemux doesn't handle events).
23880 2004-01-04 David Schleef <ds@schleef.org>
23882 Fix the fixate functions to handle new prototype:
23883 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
23884 * gst/videotestsrc/gstvideotestsrc.c:
23885 (gst_videotestsrc_src_fixate):
23886 * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
23887 * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
23888 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
23890 2004-01-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
23892 * sys/ximage/ximagesink.h:
23893 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
23894 (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
23895 (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
23896 (gst_ximagesink_xoverlay_init):
23897 assorted fixes to make (re)embedding work
23898 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
23899 (gst_ximagesink_get_desired_size):
23900 implement desired size additions to XOverlay
23902 2004-01-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
23904 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
23905 (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
23906 (gst_x_overlay_got_desired_size):
23907 * gst-libs/gst/xoverlay/xoverlay.h:
23908 Add optional "desired size" signal and querying.
23910 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
23912 * gst/matroska/matroska-demux.c:
23913 (gst_matroska_demux_parse_blockgroup):
23914 Fix EBML-laced block parsing. Diffs are relative to previous
23915 lace, not the first lace. Thanks to Mosu from the Matroska
23916 team for detecting this.
23917 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
23918 (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
23919 (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
23920 (gst_wavparse_change_state):
23921 * gst/wavparse/gstwavparse.h:
23922 Quickfix for capsnego.
23924 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
23926 * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
23927 Fix indenting, fix pad creation.
23929 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
23931 * ext/xvid/gstxviddec.c: (gst_xviddec_init),
23932 (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
23933 (gst_xviddec_sink_link):
23934 Implement src_getcaps() so proper size caps is negotiated.
23936 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
23938 * ext/flac/gstflacdec.c: (gst_flacdec_loop):
23939 Finish flac decoder on EOS. See #116178.
23941 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
23943 * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
23944 (gst_matroska_demux_add_stream):
23945 * gst/matroska/matroska-ids.h:
23946 Add getcaps() function to fix capsnego...
23948 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
23950 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
23951 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
23952 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
23953 Fix more integer overflows. Again, see #126967.
23955 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
23957 * ext/mpeg2dec/gstmpeg2dec.c:
23958 Add support for mpeg2dec-0.4.0 (released two weeks ago). See
23961 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
23964 * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
23965 (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
23966 * ext/xvid/gstxvid.h:
23967 * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
23968 (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
23969 (gst_xviddec_src_link), (gst_xviddec_sink_link),
23970 (gst_xviddec_change_state):
23971 * ext/xvid/gstxviddec.h:
23972 * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
23973 (gst_xvidenc_base_init), (gst_xvidenc_class_init),
23974 (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
23975 (gst_xvidenc_link), (gst_xvidenc_set_property),
23976 (gst_xvidenc_get_property), (gst_xvidenc_change_state):
23977 * ext/xvid/gstxvidenc.h:
23978 Update xvid plugin to latest xvid (1.0.0-beta3) API.
23980 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
23982 * gst/rtp/rtp-packet.c:
23983 Add sys/types.h include, since OS X doesn't define in_addr_t
23984 in netinet/in.h, like it does on Linux (see #129600).
23986 2004-01-03 Thomas Canty <tommydal@optushome.com.au>
23988 reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net>
23990 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
23991 Correct logic of dispose function (see #129306).
23993 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
23995 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
23996 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
23997 (gst_mpeg_parse_init):
23998 * gst/mpegstream/gstmpegparse.h:
23999 Remove clock (which was never provided, i.e. dead code), and
24000 also fix integer overflows at high PTS values (see #126967).
24002 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
24004 * ext/flac/gstflacdec.c:
24005 * ext/libpng/gstpngenc.h:
24006 * ext/mikmod/gstmikmod.h:
24007 OS X fixes (see #126628).
24009 2004-01-02 David Schleef <ds@schleef.org>
24011 * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
24012 (gst_alsa_src_base_init): Remove bogus "src" request pad.
24013 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
24014 (gst_mpeg_parse_class_init): Move pad template registration
24015 to class_init, since the derived class (mpegdemux) doesn't
24018 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
24020 * sys/ximage/Makefile.am:
24021 * sys/xvideo/Makefile.am:
24022 * sys/xvimage/Makefile.am:
24023 Move interface libs from LDFLAGS to LIBADD, fix relocation errors
24024 after installation (see #127664).
24026 2004-01-02 David Schleef <ds@schleef.org>
24028 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
24029 (gst_ffmpegenc_connect): Negotiation fixes.
24030 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
24031 Remove inappropriate gst_caps_free().
24032 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
24033 Reenable Ronald's internal resize code, since the core handles
24036 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
24038 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
24039 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
24040 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
24041 Fix pad template stuff.
24043 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
24045 * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
24046 * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
24047 fix signed integer reading/writing.
24049 2004-01-02 Benjamin Otte <in7y118@public.uni-hamburg.de>
24052 Remove outdated document
24054 2004-01-03 Jan Schmidt <thaytan@mad.scientist.com>
24056 * gst/cutter/gstcutter.c: (gst_cutter_init):
24057 src pad was being created twice - oops.
24059 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
24061 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
24062 Comment out internal resize. It doesn't handle the resulting
24063 XEvent internally, does another try_set_caps() which leads to
24064 a really nice loop.
24065 Real fix will come when Julien and Dave are awake. ;).
24067 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
24069 * ext/mpeg2enc/gstmpeg2enc.cc:
24070 fix const/nonconst compile issue.
24072 2004-01-02 David Schleef <ds@schleef.org>
24074 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
24075 (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
24076 Add fixate function and a check for bad formats.
24078 2004-01-01 David Schleef <ds@schleef.org>
24081 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
24082 (gst_audiofilter_init):
24083 * gst/debug/efence.c: (gst_efence_init):
24084 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
24085 (gst_deinterlace_init):
24086 * gst/volume/gstvolume.c: (volume_connect):
24088 2004-01-01 David Schleef <ds@schleef.org>
24090 Convert elements to use gst_pad_use_explicit_caps() where
24092 * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
24093 * ext/audiofile/gstafparse.c: (gst_afparse_init),
24094 (gst_afparse_open_file):
24095 * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
24096 (gst_afsrc_open_file):
24097 * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
24098 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
24099 (gst_ffmpegdec_chain):
24100 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
24101 * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
24102 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
24103 (gst_gdk_pixbuf_chain):
24104 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
24105 (gst_jpegdec_chain):
24106 * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
24107 * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
24108 (gst_mikmod_negotiate):
24109 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
24110 (gst_mpeg2dec_negotiate_format):
24111 * ext/mpeg2enc/gstmpeg2enc.cc:
24112 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
24113 * ext/speex/gstspeexdec.c: (gst_speexdec_init),
24114 (gst_speexdec_sinkconnect):
24115 * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
24116 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
24117 (gst_vorbisfile_new_link):
24118 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
24119 (gst_ac3parse_chain):
24120 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
24121 (gst_asf_demux_setup_pad):
24122 * gst/auparse/gstauparse.c: (gst_auparse_init),
24123 (gst_auparse_chain):
24124 * gst/id3/gstid3types.c: (gst_id3types_loop):
24125 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
24126 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
24127 (mp1videoparse_parse_seq):
24128 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
24130 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
24131 (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
24132 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
24133 (gst_mpeg_parse_send_data):
24134 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
24135 (gst_qtdemux_add_stream):
24136 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
24137 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
24138 (gst_wavparse_parse_fmt):
24140 2004-01-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
24143 Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
24144 1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
24145 it therefore uses the wrong include paths. Too bad... Note
24146 that 1.6.1.93 is not release yet. ;).
24147 Also add a check for mplex, which is now using the lib'ified
24148 mplex from mjpegtools, too.
24149 * ext/ffmpeg/gstffmpegcodecmap.c:
24150 Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
24151 issues. I don't think ffmpeg handles 3ivx correctly, so this
24152 probably won't work. But it won't hurt either.
24153 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
24154 (gst_ffmpegdec_chain):
24155 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
24156 (gst_ffmpegenc_chain_audio):
24157 Fix memleak in audio encoding. Close codec if open fails, this
24158 calls the cleanup routines so we can re-use the context.
24159 * ext/mpeg2enc/gstmpeg2enc.cc:
24160 Fix pad template names/types, fix memory issue with getcaps().
24161 * ext/mpeg2enc/gstmpeg2encoder.cc:
24162 * ext/mpeg2enc/gstmpeg2encoder.hh:
24163 Fix compile issue with new caps system (const thingy).
24164 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
24165 * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
24166 We read a first frame right on initing, so that we have a caps
24167 when we init the output. This caps is cached in padprivate and
24168 read as first frame.
24169 * ext/mplex/Makefile.am:
24170 * ext/mplex/gstmplex.cc:
24171 * ext/mplex/gstmplex.h:
24172 * ext/mplex/gstmplex.hh:
24173 * ext/mplex/gstmplexibitstream.cc:
24174 * ext/mplex/gstmplexibitstream.hh:
24175 * ext/mplex/gstmplexjob.cc:
24176 * ext/mplex/gstmplexjob.hh:
24177 * ext/mplex/gstmplexoutputstream.cc:
24178 * ext/mplex/gstmplexoutputstream.hh:
24179 We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
24180 had issues, didn't do capsnego, supported only a subset of the
24181 mplex features and required a mplex fork in our local CVS. Plus
24182 that it worked agaist a very old mplex version. Rewriting was
24183 faster than updating it.
24184 * gst-libs/ext/Makefile.am:
24185 * gst-libs/ext/mplex/INSTRUCT:
24186 * gst-libs/ext/mplex/Makefile.am:
24187 * gst-libs/ext/mplex/README:
24188 * gst-libs/ext/mplex/TODO:
24189 * gst-libs/ext/mplex/ac3strm_in.cc:
24190 * gst-libs/ext/mplex/audiostrm.hh:
24191 * gst-libs/ext/mplex/audiostrm_out.cc:
24192 * gst-libs/ext/mplex/aunit.hh:
24193 * gst-libs/ext/mplex/bits.cc:
24194 * gst-libs/ext/mplex/bits.hh:
24195 * gst-libs/ext/mplex/buffer.cc:
24196 * gst-libs/ext/mplex/buffer.hh:
24197 * gst-libs/ext/mplex/fastintfns.h:
24198 * gst-libs/ext/mplex/format_codes.h:
24199 * gst-libs/ext/mplex/inputstrm.cc:
24200 * gst-libs/ext/mplex/inputstrm.hh:
24201 * gst-libs/ext/mplex/lpcmstrm_in.cc:
24202 * gst-libs/ext/mplex/mjpeg_logging.cc:
24203 * gst-libs/ext/mplex/mjpeg_logging.h:
24204 * gst-libs/ext/mplex/mjpeg_types.h:
24205 * gst-libs/ext/mplex/mpastrm_in.cc:
24206 * gst-libs/ext/mplex/mpegconsts.cc:
24207 * gst-libs/ext/mplex/mpegconsts.h:
24208 * gst-libs/ext/mplex/mplexconsts.hh:
24209 * gst-libs/ext/mplex/multplex.cc:
24210 * gst-libs/ext/mplex/outputstream.hh:
24211 * gst-libs/ext/mplex/padstrm.cc:
24212 * gst-libs/ext/mplex/padstrm.hh:
24213 * gst-libs/ext/mplex/stillsstream.cc:
24214 * gst-libs/ext/mplex/stillsstream.hh:
24215 * gst-libs/ext/mplex/systems.cc:
24216 * gst-libs/ext/mplex/systems.hh:
24217 * gst-libs/ext/mplex/vector.cc:
24218 * gst-libs/ext/mplex/vector.hh:
24219 * gst-libs/ext/mplex/videostrm.hh:
24220 * gst-libs/ext/mplex/videostrm_in.cc:
24221 * gst-libs/ext/mplex/videostrm_out.cc:
24222 * gst-libs/ext/mplex/yuv4mpeg.cc:
24223 * gst-libs/ext/mplex/yuv4mpeg.h:
24224 * gst-libs/ext/mplex/yuv4mpeg_intern.h:
24225 * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
24226 We don't fork mjpegtools' mplex in our CVS anymore.
24227 * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
24228 (gst_avi_demux_add_stream):
24229 * gst/avi/gstavidemux.h:
24230 Add getcaps() function for proper caps nego. This makes some
24231 parts of AVI playback/reading work.
24232 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
24233 Resize window on new capsnego. This is probably wrong, but
24234 I'm still committing it because with current capsnego, the
24235 first successfull capsnego is auto-fixated, therefore rounded
24236 down to the lowest values in the caps. this results in a 16x16
24237 XWindow that is not reized when real capsnego finishes.
24238 Dave, I see more cases of this, do you know a proper solution?
24239 * tools/gst-launch-ext.in:
24240 Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
24242 2003-12-31 David Schleef <ds@schleef.org>
24244 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
24245 * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
24246 Change gst_pad_proxy_link() to gst_pad_try_set_caps()
24248 2003-12-30 David Schleef <ds@schleef.org>
24250 * ext/ffmpeg/gstffmpegcolorspace.c:
24251 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
24252 (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
24253 (gst_ffmpegcsp_chain): Negotiation fixes
24254 * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
24255 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24256 (gst_audio_convert_link), (gst_audio_convert_channels):
24257 * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
24258 (gst_audioscale_link), (gst_audioscale_get_buffer),
24259 (gst_audioscale_chain): Negotiation fixes
24260 * gst/audioscale/gstaudioscale.h:
24261 * gst/videofilter/gstvideofilter.c:
24262 (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
24263 (gst_videofilter_link), (gst_videofilter_init),
24264 (gst_videofilter_set_output_size), (gst_videofilter_setup),
24265 (gst_videofilter_find_format_by_structure):
24266 * gst/videofilter/gstvideofilter.h: Negotiation fixes
24267 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
24268 (gst_videoscale_link):
24269 * gst/videoscale/videoscale.c: (videoscale_get_structure),
24270 (videoscale_find_by_structure), (gst_videoscale_setup):
24271 * gst/videoscale/videoscale.h: Negotiation fixes
24272 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
24273 (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
24274 function, restrict resizing to a multiple of 4 (hack until
24275 everyone supports odd sizes correctly).
24277 2003-12-29 Colin Walters <walters@verbum.org>
24279 * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
24282 2003-12-30 Jan Schmidt <thaytan@mad.scientist.com>
24284 * ext/sndfile/gstsf.c: (gst_sf_loop):
24285 Fix warning about discarding const qualifier
24287 2003-12-27 Jeremy Simon <jesimon@libertysurf.fr>
24289 * gst/cutter/gstcutter.c:
24290 * gst/videoscale/gstvideoscale.c:
24291 * gst/volenv/gstvolenv.c:
24292 * gst-libs/gst/audio/audio.c:
24293 * gst-libs/gst/video/video.c:
24296 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
24298 * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
24299 Don't send ALSA debugging to stderr.
24300 * ext/alsa/gstalsa.h:
24301 Use GST_WARNING instead of g_warning when ALSA functions fail.
24303 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
24305 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
24306 Free XVAdapterInfo correctly.
24308 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
24310 * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
24311 (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
24312 Make id3tag use correct caps nego.
24314 2003-12-27 Amaury Jacquot <sxpert@esitcom.org>
24316 * ext/ivorbis/vorbis.c:
24317 * ext/ivorbis/vorbisenc.h:
24318 * ext/ivorbis/vorbisfile.c:
24319 Modify so that it uses the new caps things
24321 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
24323 * testsuite/spider/spider1.c: (main):
24324 * testsuite/spider/spider2.c: (main):
24325 * testsuite/spider/spider3.c: (main):
24326 Make tests compile again. They probably don't work.
24328 2003-12-24 Colin Walters <walters@verbum.org>
24330 * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
24331 we can't fixate the caps anymore.
24333 2003-12-23 David Schleef <ds@schleef.org>
24335 * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
24336 * sys/oss/gstosssink.c: (gst_osssink_init),
24337 (gst_osssink_sink_fixate): Add fixate function.
24339 2003-12-24 Ronald Bultje <rbultje@ronald.bitfreak.net>
24341 * ext/ffmpeg/gstffmpegcodecmap.c:
24342 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
24343 (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
24344 (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
24345 (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
24346 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
24347 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
24348 (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
24349 fix typo in RGB masks, and move back to "old" colorspace
24350 capsnego code until whoever wrote this new crap has actually
24351 tested it so that it works.
24352 And yes, this works, keep it that way please.
24354 2003-12-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
24356 * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
24357 (gst_divxdec_init), (gst_divxdec_negotiate):
24358 * ext/divx/gstdivxdec.h:
24359 * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
24360 (gst_divxenc_init):
24361 * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
24362 (gst_faac_sinkconnect), (gst_faac_srcconnect):
24363 * ext/mpeg2enc/gstmpeg2enc.cc:
24364 * ext/mpeg2enc/gstmpeg2encoder.cc:
24365 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
24366 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
24367 (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
24368 * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
24369 (dxr3spusink_init):
24370 * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
24371 (dxr3videosink_init):
24372 Fix caps breakage after Dave's caps branch merge.
24374 2003-12-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
24376 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
24377 Fix for 24bpp display.
24379 2003-12-23 Colin Walters <walters@verbum.org>
24381 * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
24382 a GnomeVFSHandle directly.
24384 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
24386 * gst/volume/Makefile.am:
24387 * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
24388 (volume_base_init), (volume_init):
24389 Reenable volume element and fix to work with new caps stuff.
24390 Rhythmbox needs this.
24392 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
24394 * gst/qtdemux/qtdemux.c: (plugin_init):
24395 qtdemux requires bytestream
24397 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
24399 * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
24400 Fix remaining caps handling errors due to CAPS merge.
24402 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
24404 * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
24405 (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
24406 (gst_faad_srcconnect):
24407 Port to new caps system.
24409 2003-12-21 Julien MOUTTE <julien@moutte.net>
24411 * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
24412 (got_video_size), (main): using g_print instead of g_message.
24413 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
24414 signal which was not emitted because of "switch" element added to the
24415 bin but not connected. (Removing from the bin temporarily)
24417 2003-12-21 Julien MOUTTE <julien@moutte.net>
24419 * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
24420 find X development files. I don't understand the previous tests and
24421 they fail on my debian/ppc unstable. This one works.
24422 * examples/gstplay/player.c: (main): Set the pipeline to READY before
24424 * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
24425 (gst_play_set_video_sink), (gst_play_set_audio_sink),
24426 (gst_play_set_visualization): Add some safety checks in set_ methods
24427 and state_change. This was throwing some ugly CRITICAL messages when
24428 pipeline was getting disposed and casts were failing.
24430 2003-12-21 Ronald Bultje <rbultje@ronald.bitfreak.net>
24433 Improve mpeg2enc detection. This is for distributions that do
24434 ship mjpegtools, but without mpeg2enc. Also does object check
24435 for might there ever be ABI incompatibility.
24436 * ext/mpeg2enc/gstmpeg2enc.cc:
24437 Add Andrew as second maintainer (he's helping me), and also add
24438 an error if no caps was set. This happens if I pull before capsnego
24439 and that's something I should solve sometime else.
24440 * gst/matroska/matroska-demux.c:
24441 (gst_matroska_demux_parse_blockgroup):
24443 * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
24444 (gst_matroska_mux_track_header):
24445 Add caps to templates.
24446 * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
24447 Add mpegversion=1 to prevent confusion with MPEG/AAC.
24448 * gst/mpegstream/gstmpegdemux.c:
24449 Remove layer since it causes warnings about unfixed caps.
24450 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
24451 Fix obvious typo (we error out if caps were set, we should of
24452 course error out if *no* caps were set).
24453 * sys/oss/gstosselement.c: (gst_osselement_convert):
24454 Fix format conversion, we confused bits/bytes.
24455 * sys/oss/gstosselement.h:
24456 Improve documentation for 'bps'.
24458 Remove stuff about plugins that need removing - this was done
24460 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
24461 (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
24462 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
24463 (gst_v4lsrc_src_query):
24464 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
24465 (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
24466 Add get_query_types(), get_formats() and query() functions.
24468 2003-12-21 Thomas Vander Stichele <thomas at apestaart dot org>
24470 * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
24471 * moved CVS to freedesktop.org