1 2007-03-27 Sebastian Dröge <slomo@circular-chaos.org>
3 * gst/audioconvert/audioconvert.c:
4 Add docs to the integer pack functions and implement proper
5 rounding. Before we had rounding towards negative infinity, i.e.
6 always the smaller number was taken. Now we use natural rounding,
7 i.e. rounding to the nearest integer and to the one with the largest
8 absolute value for X.5. The old rounding introduced some minor
9 distortions. Fixes #420079
10 * tests/check/elements/audioconvert.c: (GST_START_TEST):
11 Fix one unit test that assumed the old rounding and added unit tests
12 for checking signed/unsigned int16 <-> signed/unsigned int16 with
13 depth 8, one for signed int16 <-> unsigned int16 and one for the new
14 rounding from signed int32 to signed/unsigned int16.
16 2007-03-27 Michael Smith <msmith@fluendo.com>
18 * gst/audioconvert/gstaudioconvert.c: (strip_width_64),
19 (gst_audio_convert_transform_caps):
20 Fix typo in debug line introduced recently, as pointed out on irc.
22 2007-03-27 Tim-Philipp Müller <tim at centricular dot net>
24 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
25 * tests/check/libs/tag.c: (GST_START_TEST):
26 Make sure we parse floating-point numbers in vorbis comments
27 correctly with either '.' or ',' as separator, no matter what
28 the current locale is. Add unit test for this too.
30 2007-03-26 Tim-Philipp Müller <tim at centricular dot net>
32 Patch by: René Stadler <mail at renestadler de>
34 * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_to_vorbis_comments):
35 When writing out floating-point numbers to vorbis comment tags, always
36 use the same character as separator no matter what the current locale is
39 * tests/check/libs/tag.c: (GST_START_TEST):
40 Add unit tests for replaygain tags in vorbis comments (closes #423055).
42 2007-03-26 Thomas Vander Stichele <thomas at apestaart dot org>
44 * ext/vorbis/vorbisdec.c (vorbis_dec_push_forward,
45 vorbis_handle_data_packet):
46 Correctly set DURATION to generate a timestamp-continuous stream.
47 One bug left at the end; see
48 ihttp://bugzilla.gnome.org/show_bug.cgi?id=423086
49 * tests/check/Makefile.am:
50 * tests/check/pipelines/vorbisenc.c (GST_START_TEST):
51 Add a test to check this. Without the above patch this test fails.
53 2007-03-26 Jan Schmidt <thaytan@mad.scientist.com>
55 * gst-libs/gst/rtp/Makefile.am:
56 The base audio payloader uses GstAdapter - we need GST_BASE_LIBS.
58 2007-03-23 Michael Smith <msmith@fluendo.com>
60 * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
61 (gst_video_rate_reset), (gst_video_rate_chain):
62 If videorate changes caps, we can no longer use the old buffer
63 (which may have a different size, incompatible with our caps).
64 So don't do that; just duplicate the new frame more times.
66 2007-03-22 Jan Schmidt <thaytan@mad.scientist.com>
68 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
69 Remove playbin's override of the set_clock vmethod. It's irrelevant
70 after Wim's commit on the 19th.
72 2007-03-22 Wim Taymans <wim@fluendo.com>
74 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_size),
75 (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
76 * ext/gnomevfs/gstgnomevfssrc.h:
77 Don't cache file sizes. Fixes #341078.
79 2007-03-21 Tim-Philipp Müller <tim at centricular dot net>
81 * gst/playback/gstplaybin.c: (add_sink):
82 Use GST_PTR_FORMAT to log caps.
84 2007-03-21 Tim-Philipp Müller <tim at centricular dot net>
86 Patch by: Young-Ho Cha <ganadist at chollian net>
88 * gst/subparse/samiparse.c: (handle_start_font):
89 Special-case some more colour names that pango doesn't handle by
90 default. Fixes #420578.
92 2007-03-20 Michael Smith <msmith@fluendo.com>
94 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
95 If we get a zero-sized input buffer, don't pass it to libvorbis, as
96 that marks EOS internally. After that, libvorbis will buffer all
97 input data, and encode none of it, eventually leading to memory
100 2007-03-19 Wim Taymans <wim@fluendo.com>
102 * gst/playback/gstdecodebin.c: (remove_fakesink):
103 Don't post STATE_DIRTY anymore.
105 * gst/playback/gstplaybin.c: (add_sink), (gst_play_bin_send_event),
106 (gst_play_bin_change_state):
107 Remove stream_time reset in seek handling, core does that now.
108 Disable clocking for live pipelines by forcing a NULL clock to the
109 complete pipeline, core is too smart now for our previous hack.
110 We can always autoplug in PAUSED now.
112 2007-03-17 David Schleef <ds@schleef.org>
114 * REQUIREMENTS: Update this file, change the formatting to make
115 it more consistent, plus more machine readable.
117 2007-03-16 Michael Smith <msmith@fluendo.com>
119 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
120 (strip_width_64), (append_with_other_format):
121 Previous fix was too simplistic, and broke the tests. Use a better
122 approach; only strip 64 from widths for integer audio.
124 2007-03-16 Michael Smith <msmith@fluendo.com>
126 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
127 (gst_audio_convert_transform_caps):
128 We don't support 64 bit integer audio, so don't try to claim we can.
129 Stops us producing caps don't match our template caps.
132 2007-03-15 Michael Smith <msmith@fluendo.com>
134 * gst/audioresample/gstaudioresample.c:
135 (audioresample_check_discont), (audioresample_transform):
136 Don't trigger discontinuities for very small imperfections; a filter
137 flush will sound bad, and many plugins have rounding errors leading
140 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
142 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
143 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
144 Add min-ptime property to RTP base audio payloader. Patch by
145 olivier.crete@collabora.co.uk.
148 Indentation/whitespace/documentation fixes.
150 2007-03-14 Julien MOUTTE <julien@moutte.net>
152 * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
153 (audioresample_transform_size), (audioresample_do_output),
154 (audioresample_transform), (audioresample_pushthrough): Handle
155 discontinuous streams.
156 * gst/audioresample/gstaudioresample.h:
157 * tests/check/elements/audioresample.c:
158 (test_discont_stream_instance), (GST_START_TEST),
159 (audioresample_suite): Add a test for discontinuous streams.
160 * win32/common/config.h: Updated.
162 2007-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
177 Update translations from translation project.
179 2007-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
181 * gst/audioresample/debug.h:
182 * gst/audioresample/resample.c: (resample_init):
183 Since I really am not interested in a debug line for each sample
184 being processed, move the library's debugging to its own category,
187 2007-03-13 Michael Smith <msmith@fluendo.com>
189 * ext/theora/theoradec.c: (theora_handle_type_packet):
190 Since the plugin doesn't support anything other than 4:2:0 right
191 now, post an error and fail if we get something else. Won't matter
192 until libtheora supports the other pixel formats, but hopefully
195 2007-03-10 Sebastien Moutte <sebastien@moutte.net>
197 * gst-libs/gst/audio/gstbaseaudiosink.c:(gst_base_audio_sink_render):
198 Use gst_guint64_to_gdouble for conversion.
200 Add new files to the win32 MANIFEST.
201 * win32/common/libgstaudio.def:
202 * win32/common/libgstpbutils.def:
203 Add new exported functions.
204 * win32/vs6/gst_plugins_base.dsw:
205 * win32/vs6/libgstdecodebin.dsp:
206 * win32/vs6/libgstplaybin.dsp:
207 Change the link to libgstpbutils.lib.
208 * win32/vs6/libgstdecodebin2.dsp:
209 Add a new project for decodebin2.
210 * win32/vs6/libgstpbutils.dsp:
211 Add a new project for pbutils.
213 2007-03-10 Tim-Philipp Müller <tim at centricular dot net>
215 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
216 Also accept partial dates with only year and month,
217 like 1999-12-00 (fixes #410396 even more).
219 * tests/check/libs/tag.c: (GST_START_TEST):
220 Add unit test for the above.
222 2007-03-10 Tim-Philipp Müller <tim at centricular dot net>
224 * tests/check/elements/subparse.c: (GST_START_TEST),
226 Add unit test for MPL2 subtitle format (#413799).
228 2007-03-10 Tim-Philipp Müller <tim at centricular dot net>
230 Patch by: Kamil Pawlowski <kamilpe gmail com>
232 * gst/subparse/Makefile.am:
233 * gst/subparse/gstsubparse.c:
234 (gst_sub_parse_data_format_autodetect),
235 (gst_sub_parse_format_autodetect), (gst_sub_parse_sink_event),
236 (gst_subparse_type_find):
237 * gst/subparse/gstsubparse.h:
238 * gst/subparse/mpl2parse.c: (mpl2_parse_line), (parse_mpl2):
239 * gst/subparse/mpl2parse.h:
240 Add support for MPL2 subtitle format (#413799).
242 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
245 We require core CVS for the new buffer metadata copy functions.
247 2007-03-09 Wim Taymans <wim@fluendo.com>
249 * gst-libs/gst/tag/gstid3tag.c:
250 Add read support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
253 Patch by: Alex Lancaster <alexl at users sourceforge net>
255 2007-03-09 Wim Taymans <wim@fluendo.com>
257 * ext/libvisual/visual.c: (gst_visual_sink_setcaps),
258 (gst_vis_src_negotiate), (get_buffer), (gst_visual_chain):
259 Improve adapter usage and comments.
261 2007-03-09 Wim Taymans <wim@fluendo.com>
263 * ext/pango/gsttextrender.c: (gst_text_render_chain):
264 * ext/vorbis/vorbistag.c: (gst_vorbis_tag_parse_packet):
265 * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_copy):
266 Use new metadata copy function.
268 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
269 (gst_ffmpegcsp_transform):
270 * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
271 Basetransform copied the metadata for us.
273 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
275 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
276 (gst_text_overlay_video_event):
277 Some more logging. Only accept newsegment events in TIME format and
278 send a WARNING message if they are not in TIME format.
280 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
281 (gst_sub_parse_init), (gst_sub_parse_src_event), (handle_buffer),
282 (gst_sub_parse_chain), (gst_sub_parse_sink_event):
283 * gst/subparse/gstsubparse.h:
284 No need to allocate GstSegment structure dynamically, just put it
285 into the instance structure; ignore newsegment events in BYTE
286 format and in particular don't let it overwrite our saved TIME
287 segment from the last seek.
289 2007-03-09 Michael Smith <msmith@fluendo.com>
291 * gst/typefind/gsttypefindfunctions.c: (ac3_type_find):
292 Replace AC3 typefinder with one that isn't terrible, and actually
295 2007-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
297 * gst/audioconvert/gstaudioconvert.c:
298 (gst_audio_convert_transform):
299 fix error category and translatable string
302 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
304 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
305 * pkgconfig/gstreamer-plugins-base.pc.in:
306 Fix up utils => pbutils here too.
308 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
310 * gst/subparse/gstsubparse.c: (handle_buffer):
311 Break out of loop in chain function as soon as possible if we get
312 a non-OK flow return.
314 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
316 * tests/check/elements/alsa.c: (GST_START_TEST):
317 Unref the mixer if the state change fails too (if the
318 alsa devices are inaccessible, for example)
320 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
322 * tests/check/Makefile.am:
323 Don't test libvisual elements in the states check, because libvisual
324 seems to leak internally.
326 Re-enable the alsa and states tests now that there's new suppressions
329 * tests/check/elements/alsa.c: (GST_START_TEST):
330 Don't leak the alsamixer we instantiated.
332 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
334 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
335 (gst_ximagesink_change_state), (gst_ximagesink_reset),
336 (gst_ximagesink_finalize):
337 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
338 (gst_xvimagesink_reset), (gst_xvimagesink_finalize):
339 Move some cleanup stuff from the state change handler into a _reset()
340 function that can be called from _finalize(). This ensures that things
341 get freed even if (for some reason) the NULL->READY state transition
342 fails in the parent class.
343 Even if a parent state change fails, process our downward state change
344 logic instead of bailing out early.
345 Free the correct xcontext pointer in ximagesink's xcontext_clear.
347 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
349 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
352 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_init):
353 * ext/pango/gsttimeoverlay.c: (gst_time_overlay_init):
354 Use pango_font_description_set_family_static instead of
355 pango_font_description_set_family to save a string copy (it was
356 leaking due to the strdup anyway)
358 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_finalize):
359 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_finalize):
360 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_finalize):
361 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_finalize):
362 Chain up in finalize.
364 2007-03-07 Tim-Philipp Müller <tim at centricular dot net>
366 * gst-libs/gst/interfaces/mixertrack.c:
367 (gst_mixer_track_class_init), (gst_mixer_track_get_property),
368 (gst_mixer_track_set_property):
369 API: add "untranslated-label" property which should be set by
370 implementations at construct time (#414645).
372 * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
373 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
374 Set "untranslated-label" when constructing mixer track objects.
376 * tests/check/elements/alsa.c: (GST_START_TEST), (alsa_suite):
377 Unit test to check the above.
379 2007-03-07 Wim Taymans <wim@fluendo.com>
381 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
382 Fix confusing debug message.
384 2007-03-07 Jan Schmidt <thaytan@mad.scientist.com>
386 * gst-plugins-base.doap:
387 update doap file with new version
389 2007-03-07 Jan Schmidt <thaytan@mad.scientist.com>
394 === release 0.10.12 ===
396 2007-03-07 Jan Schmidt <thaytan@mad.scientist.com>
399 releasing 0.10.12, "Zombie Horde"
401 2007-03-06 Jan Schmidt <thaytan@mad.scientist.com>
404 Bump version to 0.10.11.4 pre-release
406 2007-03-06 Wim Taymans <wim@fluendo.com>
408 * gst-libs/gst/audio/gstbaseaudiosink.c:
409 (gst_base_audio_sink_async_play):
410 Fix regression that made GStreamer skip the first samples of audio.
413 2007-03-05 Jan Schmidt <thaytan@mad.scientist.com>
416 Bump version to 0.10.11.3 pre-release
418 2007-03-05 Sebastian Dröge <slomo@circular-chaos.org>
421 Update paths for the rename from utils to pbutils to fix the build.
423 2007-03-05 Tim-Philipp Müller <tim at centricular dot net>
425 * gst-libs/gst/pbutils/Makefile.am:
426 Change directory to install headers in from gst/utils to gst/pbutils
429 2007-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
432 * docs/libs/gst-plugins-base-libs-docs.sgml:
433 * docs/libs/gst-plugins-base-libs-sections.txt:
434 * gst-libs/gst/Makefile.am:
435 * gst-libs/gst/interfaces/mixer.c:
436 * gst-libs/gst/pbutils/Makefile.am:
437 * gst-libs/gst/pbutils/descriptions.c:
438 (gst_pb_utils_get_source_description),
439 (gst_pb_utils_get_sink_description),
440 (gst_pb_utils_get_decoder_description),
441 (gst_pb_utils_get_encoder_description),
442 (gst_pb_utils_get_element_description),
443 (gst_pb_utils_add_codec_description_to_tag_list),
444 (gst_pb_utils_get_codec_description), (gst_pb_utils_list_all):
445 * gst-libs/gst/pbutils/descriptions.h:
446 * gst-libs/gst/pbutils/install-plugins.c:
447 * gst-libs/gst/pbutils/install-plugins.h:
448 * gst-libs/gst/pbutils/missing-plugins.c:
449 (gst_missing_uri_source_message_new),
450 (gst_missing_uri_sink_message_new),
451 (gst_missing_element_message_new),
452 (gst_missing_decoder_message_new),
453 (gst_missing_encoder_message_new),
454 (gst_missing_plugin_message_get_description):
455 * gst-libs/gst/pbutils/missing-plugins.h:
456 * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
457 * gst-libs/gst/pbutils/pbutils.h:
458 * gst-libs/gst/utils/Makefile.am:
459 * gst-libs/gst/utils/base-utils.c:
460 * gst-libs/gst/utils/base-utils.h:
461 * gst-libs/gst/utils/descriptions.c:
462 * gst-libs/gst/utils/descriptions.h:
463 * gst-libs/gst/utils/install-plugins.c:
464 * gst-libs/gst/utils/install-plugins.h:
465 * gst-libs/gst/utils/missing-plugins.c:
466 * gst-libs/gst/utils/missing-plugins.h:
467 * gst-plugins-base.spec.in:
468 * gst/playback/Makefile.am:
469 * gst/playback/gstdecodebin.c:
470 * gst/playback/gstdecodebin2.c:
471 * gst/playback/gstplaybasebin.c: (setup_subtitle),
472 (gen_source_element):
473 * gst/playback/gstplaybin.c: (plugin_init):
474 * tests/check/Makefile.am:
475 * tests/check/libs/pbutils.c: (GST_START_TEST),
476 (test_pb_utils_install_plugins_do_callout), (libgstpbutils_suite):
477 * tests/check/libs/utils.c:
478 rename utils to pbutils
480 2007-03-02 Jan Schmidt <thaytan@mad.scientist.com>
482 * docs/plugins/Makefile.am:
483 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
484 * docs/plugins/gst-plugins-base-plugins-sections.txt:
485 * docs/plugins/inspect/plugin-decodebin2.xml:
486 * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
487 Add documentation for decodebin2 that indicates that the API
490 2007-03-01 Jan Schmidt <thaytan@mad.scientist.com>
493 Update to 0.10.11.2 (0.10.12 pre-release)
495 2007-03-01 Wim Taymans <wim@fluendo.com>
497 * gst-libs/gst/audio/gstbaseaudiosink.c:
498 (gst_base_audio_sink_async_play):
499 base time is irrelevant here.
501 2007-03-01 Wim Taymans <wim@fluendo.com>
503 * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
504 * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
507 * gst-libs/gst/audio/gstbaseaudiosink.c:
508 (gst_base_audio_sink_query), (gst_base_audio_sink_event),
509 (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
510 Improve latency and clock slaving calculations.
511 Improve slave clock calibration.
513 * gst-libs/gst/audio/gstringbuffer.c:
514 (gst_ring_buffer_commit_full):
515 When we are asked to render N sample to 0 bytes, return N.
517 2007-03-01 Wim Taymans <wim@fluendo.com>
519 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
520 (gst_alsasink_write), (gst_alsasink_reset):
521 * ext/alsa/gstalsasink.h:
522 Remove unused dispose function.
523 Rename lock to not interfere with alsasrc lock.
525 * ext/alsa/gstalsasrc.c: (gst_alsasrc_finalize),
526 (gst_alsasrc_class_init), (gst_alsasrc_init), (set_swparams),
527 (gst_alsasrc_read), (gst_alsasrc_reset):
528 * ext/alsa/gstalsasrc.h:
529 Implement finalize function.
530 Use lock to protect alsa access.
534 2007-02-28 Thomas Vander Stichele <thomas at apestaart dot org>
537 Convert to new AG_GST style.
539 2007-02-28 Wim Taymans <wim@fluendo.com>
541 Patch by: Ed Catmur <ed at catmur dot co dot uk>
543 * gst/playback/gstplaybin.c: (gst_play_bin_vis_unblocked),
544 (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
545 Fix race condition when rapidly switching visualisations in playbin.
548 2007-02-28 Jan Schmidt <thaytan@mad.scientist.com>
550 * tests/check/Makefile.am:
551 Include local stuff before system installed things in LDFLAGS and
554 2007-02-28 Wim Taymans <wim@fluendo.com>
556 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_activate):
559 2007-02-28 Wim Taymans <wim@fluendo.com>
561 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
562 (gst_v4lsrc_fixate), (gst_v4lsrc_query):
563 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
564 Fix duration and timestamping, taking latency into account.
565 Implement latency query.
567 2007-02-28 Wim Taymans <wim@fluendo.com>
569 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
570 (gst_audio_clock_new):
573 * gst-libs/gst/audio/gstbaseaudiosink.c:
574 (gst_base_audio_sink_init), (gst_base_audio_sink_query):
575 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
576 (gst_base_audio_src_query), (gst_base_audio_src_get_offset),
577 (gst_base_audio_src_create):
578 Improve latency query code.
579 Use proper clock names.
581 2007-02-28 Thomas Vander Stichele <thomas at apestaart dot org>
583 * tests/check/generic/states.c: (GST_START_TEST):
584 Copy the states.c test from core again
585 * tests/check/Makefile.am:
586 ignore cdio and cdparanoiasrc
588 2007-02-28 Stefan Kost <ensonic@users.sf.net>
590 * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
591 (double_hq), (audio_convert_get_func_index), (check_default),
592 (audio_convert_prepare_context), (audio_convert_convert):
593 Also make valgrind happy and avoid copying data in some cases.
595 2007-02-28 Stefan Kost <ensonic@users.sf.net>
597 * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
598 (double_hq), (audio_convert_get_func_index),
599 (audio_convert_prepare_context), (audio_convert_convert):
600 * gst/audioconvert/gstaudioconvert.c:
601 (gst_audio_convert_class_init), (gst_audio_convert_get_unit_size),
602 (gst_audio_convert_transform_caps):
603 * tests/check/elements/audioconvert.c: (GST_START_TEST),
604 (audioconvert_suite):
605 Don't run inplace if that overwrites source data as we go. Add more
606 tests. Fixes #339837 even more.
608 2007-02-27 Julien MOUTTE <julien@moutte.net>
610 * tests/examples/seek/seek.c: (do_seek), (set_update_scale),
611 (msg_segment_done): Fix various seeking bugs (Slider was not
612 updating when doing a non flushing seek, Reverse playback
613 on segment seek was wrong).
615 2007-02-26 Wim Taymans <wim@fluendo.com>
617 * tests/examples/seek/seek.c: (stop_seek):
618 When we stop scrubbing, don't leave the pipeline PLAYING when we
619 requested a PAUSED state.
621 2007-02-25 Tim-Philipp Müller <tim at centricular dot net>
623 Patch by: René Stadler <mail at renestadler de>
625 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
626 Parse date strings in vorbis comments that have an invalid (zero)
627 month or day (#410396).
629 * tests/check/libs/tag.c: (GST_START_TEST):
630 Test case for the above.
632 2007-02-24 Tim-Philipp Müller <tim at centricular dot net>
634 Patch by: Loïc Minier <lool+gnome at via ecp fr>
637 * ext/alsa/Makefile.am:
638 * gst/audiotestsrc/Makefile.am:
639 Fix compilation with LDFLAGS='-Wl,-z,defs' (#410963).
641 2007-02-23 Tim-Philipp Müller <tim at centricular dot net>
643 * gst/playback/gstplaybin.c:
644 Improve docs: point out that the application needs to assist playbin
647 2007-02-23 Tim-Philipp Müller <tim at centricular dot net>
649 * gst-libs/gst/utils/install-plugins.c:
650 * gst-libs/gst/utils/missing-plugins.c:
651 * tests/check/libs/utils.c: (missing_msg_check_getters):
652 Change GStreamer marker prefix in detail string from 'gstreamer.net'
653 to just 'gstreamer'. Document the caps string component of the
654 decoder/encoder detail a bit better, since not everyone will be
655 familiar with the GStreamer media type/caps system (but they better
656 enjoy nested itemized lists).
658 2007-02-22 Tim-Philipp Müller <tim at centricular dot net>
660 * gst-libs/gst/netbuffer/gstnetbuffer.c:
661 (notgst_buffer_copy_fields_in_place), (gst_netbuffer_copy):
662 Fix copying of GstNetBuffer (would crash before, or at least lead to
663 invalid memory access, #410772), for now by copying the GstBuffer copy
664 code from the core over here so we can copy the GstBuffer fields on a
665 provided buffer instance (of type GstNetBuffer in this case). Would be
666 better to fix this with some support by the core though (and in the long
667 run change the broken GstBuffer/GstMiniObject copy semantics, #393099).
669 * tests/check/Makefile.am:
670 Enable unit test for GstNetBuffer.
672 2007-02-22 Andy Wingo <wingo@pobox.com>
674 * gst-libs/gst/audio/gstbaseaudiosink.c
675 (gst_base_audio_sink_init): Disable pull-mode activation until we
676 figure out how to make audio sinks go to PLAYING.
678 2007-02-22 Stefan Kost <ensonic@users.sf.net>
680 * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
681 (double_hq), (audio_convert_get_func_index),
682 (audio_convert_prepare_context), (audio_convert_convert):
683 * gst/audioconvert/audioconvert.h:
684 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_setup_matrix),
685 (gst_channel_mix_mix_int), (gst_channel_mix_mix_float):
686 * gst/audioconvert/gstchannelmix.h:
687 * tests/check/elements/audioconvert.c: (GST_START_TEST):
688 Add float as an intermediate format, as well as float mixing. Enable
689 test that was failing before. Fixes #339837
691 2007-02-21 Jan Schmidt <thaytan@mad.scientist.com>
693 * tests/examples/seek/seek.c: (do_seek):
694 Undo the previous commit: -1 as a stop time implies that the stop
695 time is the end of file, clearing any previously configured segment.
697 2007-02-21 Jan Schmidt <thaytan@mad.scientist.com>
699 * tests/examples/seek/seek.c: (do_seek):
700 Don't SEEK_SET with a stop time of -1, use SEEK_NONE instead.
702 2007-02-21 Stefan Kost <ensonic@users.sf.net>
704 * gst/volume/gstvolume.c: (volume_process_int16),
705 (volume_process_int16_clamp), (volume_set_caps):
706 Unbreak volume, value remains gint.
708 2007-02-21 Stefan Kost <ensonic@users.sf.net>
710 * gst/volume/gstvolume.c: (volume_choose_func),
711 (volume_update_real_volume), (gst_volume_set_volume),
712 (gst_volume_init), (volume_process_double), (volume_process_float),
713 (volume_process_int16), (volume_process_int16_clamp),
714 (volume_set_caps), (volume_transform_ip), (volume_update_volume):
715 * gst/volume/gstvolume.h:
716 Extend float audio support (double) and some int->uint cleanups.
718 2007-02-20 Edward Hervey <edward@fluendo.com>
720 * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
721 (multi_queue_underrun_cb), (gst_decode_group_check_if_drained),
722 (sort_end_pads), (gst_decode_group_expose),
723 (gst_decode_group_hide):
724 Don't free groups from the streaming threads. Just put them aside and
725 free them in dispose.
727 2007-02-20 Edward Hervey <edward@fluendo.com>
729 * gst/playback/gstdecodebin2.c: (connect_element),
730 (pad_added_group_cb), (gst_decode_group_check_if_blocked),
731 (sort_end_pads), (gst_decode_group_expose):
732 Handle dynamic pads within groups.
733 Sort pads before exposing them in order to make playbin happy.
734 There still is a race with the multiqueue filling up. This should be
738 2007-02-16 Tim-Philipp Müller <tim at centricular dot net>
740 * gst-libs/gst/utils/base-utils.c:
741 * gst-libs/gst/utils/descriptions.c:
742 * gst-libs/gst/utils/install-plugins.c:
743 * gst-libs/gst/utils/missing-plugins.c:
744 Some more docs (and descriptions for two subtitle formats).
746 2007-02-16 Tim-Philipp Müller <tim at centricular dot net>
748 * gst-libs/gst/audio/audio.c:
751 2007-02-16 Tim-Philipp Müller <tim at centricular dot net>
753 Patch by: Yves Lefebvre <ivanohe abacom com>
755 * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps):
756 Don't leak caps. Fixes #408278.
758 2007-02-15 Stefan Kost <ensonic@users.sf.net>
760 * ext/cdparanoia/gstcdparanoiasrc.h:
761 * ext/ogg/gstoggdemux.h:
762 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
763 (gst_audio_frame_length), (gst_audio_duration_from_pad_buffer),
764 (gst_audio_is_buffer_framed), (gst_audio_structure_set_int):
765 * gst-libs/gst/audio/audio.h:
766 * gst-libs/gst/audio/gstaudiofilter.h:
767 * gst-libs/gst/interfaces/videoorientation.h:
768 * gst/adder/gstadder.h:
769 More docs coverage and some ChangeLog surgery (add missing names)
771 2007-02-15 Wim Taymans <wim@fluendo.com>
773 * sys/ximage/ximagesink.c:
774 (gst_ximagesink_calculate_pixel_aspect_ratio):
775 * sys/xvimage/xvimagesink.c:
776 (gst_xvimagesink_calculate_pixel_aspect_ratio):
777 Small constifications.
779 2007-02-15 Wim Taymans <wim@fluendo.com>
781 * gst-libs/gst/audio/gstbaseaudiosink.c:
782 (gst_base_audio_sink_class_init), (gst_base_audio_sink_query),
783 (gst_base_audio_sink_render), (gst_base_audio_sink_callback),
784 (gst_base_audio_sink_async_play),
785 (gst_base_audio_sink_change_state):
786 Answer latency query.
787 Use configured latency when syncing.
790 * gst-libs/gst/audio/gstbaseaudiosrc.c:
791 (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
792 (gst_base_audio_src_query), (gst_base_audio_src_change_state):
793 Fix possible memleak.
794 Implement latency query.
797 2007-02-15 Wim Taymans <wim@fluendo.com>
799 * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
800 Ignore errors in reset, these are not fatal. They also grab the element
801 lock which is already taking when this function is called. Fixes
804 2007-02-13 Stefan Kost <ensonic@users.sf.net>
807 Remove 'tests/examples/xerror/Makefile' from output files again.
809 2007-02-13 Stefan Kost <ensonic@users.sf.net>
812 * docs/plugins/Makefile.am:
813 Also crossref against gst-plugins-base-libs.
815 2007-02-12 Stefan Kost <ensonic@users.sf.net>
818 * docs/libs/Makefile.am:
819 * docs/plugins/Makefile.am:
820 Add crossreferences to glib/gobject/gstream docs.
822 * gst-libs/gst/audio/audio.h:
825 * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
826 Add own debug category.
828 2007-02-12 Tim-Philipp Müller <tim at centricular dot net>
830 Patch by: René Stadler <mail at renestadler de>
832 * gst-libs/gst/tag/gstvorbistag.c:
833 Add vorbis/FLAC-tag mapping for new GST_TAG_REFERENCE_LEVEL
836 2007-02-10 Tim-Philipp Müller <tim at centricular dot net>
838 * gst/playback/gstplaybasebin.c: (setup_source):
839 When we have external subtitles and wait for the subtitle decodebin
840 to get up and running, we set up a (sync) bus handler for the
841 subtitle decodebin, so we can stop waiting when it posts an error
842 message. However, we should do that before we set the subtitle
843 decodebin's state to playing, otherwise things are racy and we might
844 miss error messages posted before we had a chance to set up the bus.
845 This should finally fix totem hanging on .txt pseudo-subtitle files.
847 2007-02-10 Sébastien Moutte <sebastien at moutte dot net>
849 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:(gst_base_rtp_audio_payload_handle_frame_based_buffer):
850 Use gst_gdouble_to_guint64 for conversions.
851 * win32/common/config.h.in:
852 Add a define for GST_INSTALL_PLUGINS_HELPER
853 * win32/common/libgstaudio.def:
854 * win32/common/libgstcdda.def:
855 * win32/common/libgstnetbuffer.def:
856 * win32/common/libgstrtp.def:
857 * win32/common/libgutils.def:
858 Add new exported functions.
859 * win32/vs6/gst_plugins_base.dsw:
860 * win32/vs6/libgstdecodebin.dsp:
861 * win32/vs6/libgstnetbuffer.dsp:
862 * win32/vs6/libgstplaybin.dsp:
863 * win32/vs6/libgstrtp.dsp:
864 * win32/vs6/libgstvorbis.dsp:
865 * win32/vs6/libgstcdda.dsp:
866 * win32/vs6/libgstgdp.dsp:
867 * win32/vs6/libgstutils.dsp:
868 Update and add new project files.
870 2007-02-10 Tim-Philipp Müller <tim at centricular dot net>
872 * gst/subparse/gstsubparse.c: (subrip_remove_unhandled_tag),
873 (subrip_remove_unhandled_tags), (parse_subrip):
874 For SubRip (.srt) subtitles, ignore all markup tags we don't
875 handle (like font tags, for example).
877 * tests/check/elements/subparse.c:
880 2007-02-09 Tim-Philipp Müller <tim at centricular dot net>
882 * gst/playback/gstdecodebin.c: (add_fakesink),
883 (gst_decode_bin_change_state):
884 * gst/playback/gstdecodebin2.c: (add_fakesink),
885 (gst_decode_bin_change_state):
886 Don't error out if there is no fakesink in the NULL to READY state
887 change, since when decodebin is re-used, we're only adding the
888 fakesink element in READY to PAUSED.
890 * tests/check/elements/decodebin.c:
891 (new_decoded_pad_plug_fakesink_cb), (GST_START_TEST),
893 Minimal unit test to make sure we can use the same decodebin
894 instance twice (at least with audiotestsrc input).
896 2007-02-09 Tim-Philipp Müller <tim at centricular dot net>
898 * ext/alsa/gstalsa.c: (gst_alsa_find_device_name):
899 Try to get devic-name from device string first, and from handle only
900 as fallback (seems to yield better results and is more robust
901 against buggy probing code on the application side).
903 2007-02-08 Tim-Philipp Müller <tim at centricular dot net>
905 Based on patch by: Julien Puydt <julien.puydt at laposte net>
907 * ext/alsa/gstalsa.c: (gst_alsa_find_device_name_no_handle),
908 (gst_alsa_find_device_name):
909 * ext/alsa/gstalsa.h:
910 * ext/alsa/gstalsasink.c: (gst_alsasink_get_property):
911 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_property):
912 Improve device-name detection a bit, especially in the case where
913 the device is not actually open (#405020, #405024). Move common code
914 into gstalsa.c instead of duplicating it.
916 2007-02-07 Tim-Philipp Müller <tim at centricular dot net>
918 * gst/audioconvert/gstaudioconvert.c:
919 Fix up docs chunk so that gtk-doc doesn't complain, and fix typo.
921 2007-02-06 Julien MOUTTE <julien@moutte.net>
923 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
924 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_clear),
925 (gst_xvimagesink_interface_supported),
926 (gst_xvimagesink_probe_get_properties),
927 (gst_xvimagesink_probe_probe_property),
928 (gst_xvimagesink_probe_needs_probe),
929 (gst_xvimagesink_probe_get_values),
930 (gst_xvimagesink_property_probe_interface_init),
931 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
932 (gst_xvimagesink_init), (gst_xvimagesink_class_init),
933 (gst_xvimagesink_get_type):
934 * sys/xvimage/xvimagesink.h: Implement PropertyProbe Interface
935 for XVAdaptors so that one can choose the adaptor to use with
936 gstreamer-properties.
938 2007-02-06 Stefan Kost <ensonic@users.sf.net>
940 * gst/audioconvert/gstaudioconvert.c:
941 Also mention that a conversion from double to float is suboptimal still.
943 2007-02-06 Tim-Philipp Müller <tim at centricular dot net>
945 * gst-libs/gst/audio/gstaudiofilter.c:
946 (gst_audio_filter_class_init), (gst_audio_filter_change_state):
947 Clear our formats structure and free the caps contained in it when
950 2007-02-05 Andy Wingo <wingo@pobox.com>
952 * gst-libs/gst/audio/gstbaseaudiosink.c
953 (gst_base_audio_sink_callback): Update basesink->offset so that we
954 pull monotonically increasing offsets instead of, um, seeking back
955 to 0 each time. Fixes alsasrc ! alsasink!
957 2007-02-05 Tim-Philipp Müller <tim at centricular dot net>
959 * gst/videoscale/gstvideoscale.c:
960 A width and height of 1 makes us crash, so increase minimum size to
961 2x2 pixels until someone feels like fixing this (#404512).
963 2007-02-04 Tim-Philipp Müller <tim at centricular dot net>
965 * tests/check/pipelines/oggmux.c: (GST_START_TEST), (oggmux_suite):
966 Add small test to make sure request pads are cleaned up properly
967 even if oggmux never changes state out of NULL.
969 2007-02-04 Tim-Philipp Müller <tim at centricular dot net>
971 * tests/check/libs/utils.c: (GST_START_TEST):
972 Fix unit test. Turns out things work much better when you
973 NULL-terminate string arrays. Should make p5 build bot happy again.
975 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
977 * gst-libs/gst/audio/Makefile.am:
978 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
979 (gst_audio_filter_template_base_init),
980 (gst_audio_filter_template_class_init),
981 (gst_audio_filter_template_init),
982 (gst_audio_filter_template_set_property),
983 (gst_audio_filter_template_get_property),
984 (gst_audio_filter_template_setup),
985 (gst_audio_filter_template_filter),
986 (gst_audio_filter_template_filter_inplace), (plugin_init):
987 Oops, forgot to commit fixed-up example.
989 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
991 * docs/libs/gst-plugins-base-libs-sections.txt:
992 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
993 (gst_audio_filter_class_init), (gst_audio_filter_init),
994 (gst_audio_filter_set_caps),
995 (gst_audio_filter_class_add_pad_templates):
996 * gst-libs/gst/audio/gstaudiofilter.h:
997 Port GstAudioFilter to 0.10. This change technically breaks
998 API and ABI (and thus also every library developer's heart),
999 but seems justifiable on the grounds that the base class was
1000 completely unusable before (ie. would crash immediately when
1001 actually used). Fixes #403963 (and eventually also #403572).
1002 Also document all of this a bit.
1004 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
1006 * gst-libs/gst/utils/install-plugins.c:
1007 (gst_install_plugins_spawn_child):
1008 * tests/check/libs/utils.c:
1009 (test_base_utils_install_plugins_do_callout):
1010 Lowering log level to see why things fail on the p5 build bot;
1011 fix some typos in unit test messages.
1013 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
1015 * tests/check/libs/utils.c:
1016 (test_base_utils_install_plugins_do_callout):
1017 Don't hard-code temp directory for test helper; use GLib functions
1018 to write out file and do error checking etc.
1020 2007-02-02 Tim-Philipp Müller <tim at centricular dot net>
1022 * gst-libs/gst/utils/Makefile.am:
1023 * gst-libs/gst/utils/base-utils.h:
1024 * gst-libs/gst/utils/install-plugins.c:
1025 (gst_install_plugins_context_set_xid),
1026 (gst_install_plugins_context_new),
1027 (gst_install_plugins_context_free),
1028 (gst_install_plugins_get_helper),
1029 (gst_install_plugins_spawn_child),
1030 (gst_install_plugins_return_from_status),
1031 (gst_install_plugins_installer_exited),
1032 (gst_install_plugins_async), (gst_install_plugins_sync),
1033 (gst_install_plugins_return_get_name),
1034 (gst_install_plugins_installation_in_progress):
1035 * gst-libs/gst/utils/install-plugins.h:
1036 API: add API for applications to initiate installation of missing
1037 plugins, ie. gst_install_plugins_async() primarily.
1038 Based on libgimme-codec by Ryan Lortie.
1041 Add --with-install-plugins-helper configure option so distros can specify
1042 the path of the helper script or program to call when plugin installation
1043 is requested (distros: please do any argument munging in this helper
1044 script instead of patching GStreamer to pass arguments differently
1045 to another program directly).
1047 * docs/libs/gst-plugins-base-libs-docs.sgml:
1048 * docs/libs/gst-plugins-base-libs-sections.txt:
1049 Build and document new API.
1051 * tests/check/libs/utils.c: (result_cb),
1052 (test_base_utils_install_plugins_do_callout), (GST_START_TEST),
1053 (libgstbaseutils_suite):
1054 Some simple checks for the new API.
1056 2007-02-02 Tim-Philipp Müller <tim at centricular dot net>
1058 * tests/check/elements/audioconvert.c: (test_float_conversion):
1059 Add small test for 32bit float <=> 64bit float conversion (works
1060 only one way so far, 32=>64 produces structured noise).
1062 2007-02-02 Tim-Philipp Müller <tim at centricular dot net>
1064 * gst/audioconvert/gstaudioconvert.c:
1065 (set_structure_widths_32_and_64), (make_lossless_changes):
1066 We don't support floats with a width of 40, 48 or 56 bits.
1068 2007-02-02 Stefan Kost <ensonic@users.sf.net>
1070 * gst/audioconvert/audioconvert.c: (float), (double),
1071 (audio_convert_get_func_index):
1072 * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
1073 (make_lossless_changes):
1074 Support for 64-bit float audio in audioconvert (#339837)
1076 2007-02-01 Tim-Philipp Müller <tim at centricular dot net>
1078 Patch by: Holger Wansing <linux wansing-online de>
1082 Add German translation (#352069).
1084 2007-02-01 Sebastian Dröge <slomo@circular-chaos.org>
1086 reviewed by: Wim Taymans <wim@fluendo.com>
1088 * ext/ogg/gstoggmux.c: (gst_ogg_mux_ogg_pad_destroy_notify),
1089 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad):
1090 Use newly added GstCollectPads API to free the allocated resources in
1091 the GstOggPad structures (#402393).
1093 2007-01-31 Jan Schmidt <thaytan@mad.scientist.com>
1095 * gst/playback/gstplaybin.c: (gen_vis_element):
1096 Add audioresample+audioconvert in front of the visualisation
1097 element, so that elements like libvisual 0.4 that don't support all
1098 samplerates can work.
1102 2007-01-30 Tim-Philipp Müller <tim at centricular dot net>
1104 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property),
1105 (gst_play_base_bin_get_streaminfo_value_array):
1106 Take some locks and make a copy of the streaminfo value array we
1107 maintain while holding the lock, so that the application can
1108 retrieve the stream-info as a value array in a thread-safe way.
1110 2007-01-30 Wim Taymans <wim@fluendo.com>
1112 * gst/audioconvert/gstaudioconvert.c:
1113 Don't fail on 0 sized buffers. Fixes #396835.
1115 2007-01-29 David Schleef <ds@schleef.org>
1117 * gst/typefind/gsttypefindfunctions.c:
1118 Detect BBCD as video/x-dirac, so we can play raw dirac
1121 2007-01-29 Tim-Philipp Müller <tim at centricular dot net>
1123 * ext/theora/theoraenc.c: (theora_enc_chain):
1124 Check return value of theora_encode_header(), or we might try to
1125 allocate a random number of bytes. theora_encode_header() can fail
1126 if libtheora has been compiled with encoding support disabled.
1129 2007-01-29 Wim Taymans <wim@fluendo.com>
1131 * tests/check/gst/.cvsignore:
1132 Do as buildbot says.
1134 2007-01-29 Wim Taymans <wim@fluendo.com>
1136 * ext/libvisual/visual.c: (gst_visual_src_setcaps):
1137 Fix strides in libvisual. Gst uses X strides.
1138 Inspired by: <ed at catmur dot co dot uk> and
1139 <tim at centricular dot net>
1142 2007-01-27 Wim Taymans <wim@fluendo.com>
1144 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
1145 (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
1146 (gst_ogg_demux_get_prev_page), (gst_ogg_demux_do_seek),
1147 (gst_ogg_demux_perform_seek),
1148 (gst_ogg_demux_bisect_forward_serialno),
1149 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
1150 (gst_ogg_demux_find_chains), (gst_ogg_demux_handle_page),
1151 (gst_ogg_demux_chain), (gst_ogg_demux_combine_flows),
1152 (gst_ogg_demux_loop_reverse), (gst_ogg_demux_loop):
1153 * ext/ogg/gstoggdemux.h:
1154 Properly propagate streaming errors when we are scanning the file for
1155 chains so that we don't crash when shut down. Might fix some crashers
1156 when quickly switching oggs in RB such as #332503 and #378436.
1158 2007-01-26 Tim-Philipp Müller <tim at centricular dot net>
1160 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
1161 Map a gnome-vfs HOST_NOT_FOUND error into a GStreamer NOT_FOUND
1164 2007-01-25 Wim Taymans <wim@fluendo.com>
1166 * gst/playback/gstplaybasebin.c: (remove_source):
1167 Don't try to disconnect a signal from a finalized object.
1169 2007-01-25 Tim-Philipp Müller <tim at centricular dot net>
1171 * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose):
1172 Cast lock macro parameters to make sure we're actually accessing the
1173 lock member at the right class level. Free list itself in _dispose()
1174 as well and NULL it in case dispose gets called multiple times.
1176 2007-01-25 Edward Hervey <edward@fluendo.com>
1178 * gst/playback/gstdecodebin2.c:
1179 (gst_decode_bin_dispose),(gst_decode_bin_finalize):
1180 Free GstDecodeGroups no longer used.
1181 (gst_decode_group_expose):
1182 Don't unlock too many times !
1183 (deactivate_free_recursive):
1184 Free iterator once we're done with it.
1185 Fix for recursively deactivating elements (stop at ghostpads).
1187 2007-01-25 Tim-Philipp Müller <tim at centricular dot net>
1189 * gst/playback/gstplaybin.c: (handoff):
1190 Fix up caps on the frame buffer before we save it and potentially
1191 make it accessible to other threads via g_object_get; also use
1192 gst_buffer_replace() instead of gst_mini_object_replace().
1194 2007-01-25 Tim-Philipp Müller <tim at centricular dot net>
1196 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
1197 Make getting the current frame thread-safe.
1199 2007-01-25 Edward Hervey <edward@fluendo.com>
1201 * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize),
1202 (gst_decode_group_new), (gst_decode_group_free):
1203 Set queues to bigger sizes to cope with HD contents.
1204 Fix some mutex freeing and add comment about MT safe methods.
1206 2007-01-24 Tim-Philipp Müller <tim at centricular dot net>
1208 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
1209 (gst_text_overlay_text_event):
1210 Don't unnecessarily ref (and then leak) upstream events if the text
1211 pad is not linked. Fixes #399948.
1213 * tests/check/gst-plugins-base.supp:
1214 Add suppression for pango on edgy/x86 for textoverlay test.
1216 2007-01-24 Wim Taymans <wim@fluendo.com>
1218 * gst-libs/gst/rtp/gstrtpbuffer.h:
1219 Add some more fixed payloads.
1221 2007-01-23 Tim-Philipp Müller <tim at centricular dot net>
1223 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
1224 Error out properly if we get an error from libogg while reading the
1225 BOS page(s). Fixes crash parsing 'fuzzed' ogg file (#399340).
1227 2007-01-23 Tim-Philipp Müller <tim at centricular dot net>
1229 * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize):
1232 * tests/check/elements/playbin.c:
1233 (test_sink_usage_video_only_stream),
1234 (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
1235 (test_suburi_error_wrongproto), (test_missing_urisource_handler),
1236 (test_missing_suburisource_handler),
1237 (test_missing_primary_decoder), (playbin_suite):
1238 Run all tests once with decodebin and once with decodebin2.
1239 One test does not pass yet with decodebin2.
1241 2007-01-23 Edward Hervey <edward@fluendo.com>
1243 * ext/ogg/gstoggmux.c: (all_pads_eos), (gst_ogg_mux_collected):
1244 Fix the cases where oggmux doesn't properly figure out that all
1245 sinkpads have gone EOS, and therefore doesn't push out the remaining
1246 buffers and the final EOS event.
1249 2007-01-23 Julien MOUTTE <julien@moutte.net>
1251 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1252 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1253 Don't lock on navigation event push, just on keysym to string.
1254 Fixes #397673 again.
1256 2007-01-22 Edward Hervey <edward@fluendo.com>
1258 * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
1259 (get_current_group), (group_demuxer_event_probe),
1260 (gst_decode_group_expose), (deactivate_free_recursive),
1261 (gst_decode_group_free):
1263 Don't forget to emit 'no-more-pads' once a group is exposed.
1264 Cleanup elements from a DecodeGroup once we remove it.
1265 Protect call to gst_decode_group_expose() with the decodebin lock.
1267 2007-01-22 Julien MOUTTE <julien@moutte.net>
1269 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1270 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1271 Looking at Xorg code i can't figure out if that XKeysymToString
1272 function is thread sensible or not. Lock it just in case as
1273 recommended by Radek Doulik <rodo at ximian dot com>.
1275 2007-01-22 Julien MOUTTE <julien@moutte.net>
1277 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1278 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1279 Lock that X Call as well. Fixes #397673.
1281 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
1283 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
1284 Don't go into an endless loop if the file starts with 00 00 01 2X,
1285 like quicktime redirect files might. Fixes #396042.
1287 * tests/check/Makefile.am:
1288 * tests/check/gst/.cvsignore:
1289 * tests/check/gst/typefindfunctions.c: (GST_START_TEST),
1290 (typefindfunctions_suite):
1291 Add unit test for the above.
1293 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
1295 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1296 On second thought, use "depth" field rather than "bpp" field.
1298 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
1300 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1301 Camtasia caps apparently need a bpp field (#398875).
1303 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1305 * gst/playback/gstplaybasebin.c: (setup_subtitle),
1306 (gen_source_element), (gst_play_base_bin_change_state):
1307 Attempt at a better error message in case we don't have the required
1308 URI handler installed; post missing-plugin message also when we're
1309 missing an URI handler for the subtitle URI; clean up properly also
1310 when an error occurs and we never made it to PAUSED state.
1312 * tests/check/elements/playbin.c: (GST_START_TEST),
1314 Check that we're also getting a missing-plugin messsage for a
1315 missing subtitle URI handler (and clean up properly).
1317 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1319 * gst/playback/gstplaybasebin.c: (analyse_source), (setup_source):
1320 Plug a few reference leaks.
1322 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1324 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
1325 Lower probability a bit if the marker isn't right at the start,
1326 to decrease the chance of false positives.
1328 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1330 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
1331 Small mpeg2 system stream typefinding improvement: make typefinder
1332 probe a bit into the stream instead of just looking for a marker
1333 at the beginning. Fixes #397810.
1335 2007-01-18 Tim-Philipp Müller <tim at centricular dot net>
1337 * gst/audioconvert/gstchannelmix.c:
1338 Remove compatibility cruft for prehistoric GLib versions.
1340 2007-01-17 Tim-Philipp Müller <tim at centricular dot net>
1342 * gst/playback/Makefile.am:
1343 * gst/playback/gstdecodebin.c: (close_pad_link):
1344 * gst/playback/gstdecodebin2.c: (analyze_new_pad):
1345 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
1346 (gst_play_base_bin_handle_message_func), (unknown_type):
1347 Let decodebin be the element to post missing-plugin messages for
1348 missing decoders (rather than playbin); make playbin implement
1349 GstBin::handle_message so we can suppress missing-plugin messages
1350 for types we're not handling on purpose (don't want to bring up an
1351 installer in those cases).
1353 2007-01-16 Tim-Philipp Müller <tim at centricular dot net>
1355 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1356 * gst-libs/gst/tag/gstvorbistag.c:
1357 (gst_tag_list_to_vorbiscomment_buffer):
1358 * gst/typefind/gsttypefindfunctions.c: (vorbis_type_find):
1359 Fix potentially unaligned access (#397207).
1361 2007-01-16 Stefan Kost <ensonic@users.sf.net>
1363 * tests/examples/seek/seek.c: (set_scale), (update_scale),
1364 (do_seek), (stop_seek), (pause_cb), (stop_cb), (loop_toggle_cb),
1365 (rate_spinbutton_changed_cb), (msg_eos), (msg_segment_done),
1367 Allow to toggle looping while it plays. Fix callback prototype. Clean
1368 up code a bit more. Add copyright header.
1370 2007-01-16 Stefan Kost <ensonic@users.sf.net>
1372 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
1373 Red and blue mask was swapped (spotted by Dan Williams).
1375 2007-01-15 Stefan Kost <ensonic@users.sf.net>
1377 * gst-libs/gst/tag/gstid3tag.c:
1378 * gst-libs/gst/tag/gstvorbistag.c:
1379 Use new beats-per-minute tag from core.
1381 2007-01-15 Tim-Philipp Müller <tim at centricular dot net>
1384 Add new files with translatable strings, so they actually make it
1385 into the template file one day.
1387 2007-01-12 Andy Wingo <wingo@pobox.com>
1389 * gst-libs/gst/audio/gstbaseaudiosink.c
1390 (gst_base_audio_sink_fixate): Implement, stolen from baseaudiosrc.
1391 (gst_base_audio_sink_activate_pull): Remove the handwavey nego
1392 stuff, as the base class handles this now. Actually tell the ring
1394 (gst_base_audio_sink_callback): Cast the ring buffer correctly.
1395 How did this work before? Maybe I'm not as awesome a programmer as
1398 * gst-libs/gst/audio/gstbaseaudiosrc.c
1399 (gst_base_audio_src_fixate): Rework as a basesrc vmethod instead
1402 2007-01-12 Tim-Philipp Müller <tim at centricular dot net>
1404 * gst-libs/gst/utils/missing-plugins.c: (copy_and_clean_caps):
1405 Remove more fields so that the application can better blacklist
1406 formats that have been tried before.
1408 2007-01-12 Tim-Philipp Müller <tim at centricular dot net>
1410 * gst-libs/gst/audio/mixerutils.h:
1411 Add G_BEGIN_DECLS and G_END_DECLS guards so these helpers can be
1412 used when compiling with c++ compilers as well.
1414 2007-01-12 Tim-Philipp Müller <tim at centricular dot net>
1416 * gst/typefind/gsttypefindfunctions.c:
1419 2007-01-11 Tim-Philipp Müller <tim at centricular dot net>
1421 * gst/playback/gstplaybin.c: (post_missing_element_message),
1422 (gen_video_element), (gen_text_element), (gen_audio_element),
1424 Post missing-plugin messages also when we error out because
1425 converters, textoverlay or auto*sinks are missing (#161922).
1427 2007-01-10 Wim Taymans <wim@fluendo.com>
1429 * gst/playback/gstdecodebin.c: (dynamic_add), (close_pad_link),
1430 (is_demuxer_element), (new_caps):
1431 * gst/playback/gstplaybasebin.c: (source_new_pad):
1432 Fix the case where we try to ref a NULL element when we delay a link
1433 because of unfixed caps.
1434 Set the state of autoplugged decodebins to PAUSED.
1435 RTSP now works in playbin, we can remove it from the blacklist.
1437 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1439 * gst/playback/Makefile.am:
1440 * gst/playback/gstplaybasebin.c: (string_arr_has_str),
1441 (unknown_type), (setup_subtitle), (gen_source_element):
1442 * gst/playback/gstplaybin.c: (plugin_init):
1443 Post missing-plugin messages on the bus for missing sources and
1444 missing decoders/demuxers/depayloaders; fix error code used when
1445 we're missing an URI handler source; for media types that we are not
1446 handling on purpose at the moment, don't print "don't know how to
1447 handle xyz" messages to the terminal or post missing-plugin
1448 messages on the bus.
1450 * tests/check/elements/playbin.c: (create_playbin),
1451 (GST_START_TEST), (gst_codec_src_uri_get_type),
1452 (gst_codec_src_uri_get_protocols), (gst_codec_src_uri_get_uri),
1453 (gst_codec_src_uri_set_uri), (gst_codec_src_uri_handler_init),
1454 (gst_codec_src_init_type), (gst_codec_src_base_init),
1455 (gst_codec_src_create), (gst_codec_src_class_init),
1456 (gst_codec_src_init), (plugin_init), (playbin_suite):
1457 Add some tests for the missing-plugin stuff.
1459 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1462 * gst-libs/gst/Makefile.am:
1463 * gst-libs/gst/utils/Makefile.am:
1464 * gst-libs/gst/utils/base-utils.c: (gst_base_utils_init):
1465 * gst-libs/gst/utils/base-utils.h:
1466 * gst-libs/gst/utils/descriptions.c: (format_info_get_desc),
1467 (find_format_info), (caps_are_rtp_caps),
1468 (gst_base_utils_get_source_description),
1469 (gst_base_utils_get_sink_description),
1470 (gst_base_utils_get_decoder_description),
1471 (gst_base_utils_get_encoder_description),
1472 (gst_base_utils_get_element_description),
1473 (gst_base_utils_add_codec_description_to_tag_list),
1474 (gst_base_utils_get_codec_description), (gst_base_utils_list_all):
1475 * gst-libs/gst/utils/descriptions.h:
1476 * gst-libs/gst/utils/missing-plugins.c:
1477 (missing_structure_get_type), (copy_and_clean_caps),
1478 (gst_missing_uri_source_message_new),
1479 (gst_missing_uri_sink_message_new),
1480 (gst_missing_element_message_new),
1481 (gst_missing_decoder_message_new),
1482 (gst_missing_encoder_message_new),
1483 (missing_structure_get_string_detail),
1484 (missing_structure_get_caps_detail),
1485 (gst_missing_plugin_message_get_installer_detail),
1486 (gst_missing_plugin_message_get_description),
1487 (gst_is_missing_plugin_message):
1488 * gst-libs/gst/utils/missing-plugins.h:
1489 API: add new libgstbaseutils library with functions
1490 - to create and parse missing-plugins messages
1491 - that provide (translated) descriptions for caps/decoders/sources/etc.
1494 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
1495 * pkgconfig/gstreamer-plugins-base.pc.in:
1498 * docs/libs/gst-plugins-base-libs-docs.sgml:
1499 * docs/libs/gst-plugins-base-libs-sections.txt:
1500 Generate docs for new lib and API.
1502 * tests/check/Makefile.am:
1503 * tests/check/libs/.cvsignore:
1504 * tests/check/libs/utils.c: (missing_msg_check_getters),
1505 (GST_START_TEST), (libgstbaseutils_suite):
1506 Add some basic unit tests.
1508 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1510 * ext/ogg/Makefile.am:
1511 Dist gstoggdemux.h to fix 'make distcheck'.
1513 * sys/v4l/Makefile.am:
1514 Fix 'make distcheck' even more.
1516 2007-01-09 Wim Taymans <wim@fluendo.com>
1518 * docs/plugins/Makefile.am:
1519 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1520 * docs/plugins/gst-plugins-base-plugins-sections.txt:
1521 * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
1522 (gst_ogg_pad_query_types), (gst_ogg_pad_submit_page),
1523 (gst_ogg_chain_reset), (gst_ogg_chain_new_stream),
1524 (gst_ogg_demux_perform_seek):
1525 * ext/ogg/gstoggdemux.h:
1527 Add some more comments.
1530 2007-01-09 Wim Taymans <wim@fluendo.com>
1532 * ext/theora/theoradec.c:
1533 * ext/vorbis/vorbisdec.c:
1534 * gst-libs/gst/audio/gstringbuffer.c:
1535 (gst_ring_buffer_commit_full):
1536 * gst-libs/gst/audio/gstringbuffer.h:
1537 * gst-libs/gst/rtp/gstrtpbuffer.c:
1538 * gst-libs/gst/tag/gstvorbistag.c:
1539 Small documentation updates/fixes
1541 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1544 Require core CVS HEAD for Andy's basesrc/sink API additions.
1546 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
1548 Patch by: Günter Thelen <daedalus dot inc at gmx net>
1550 * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
1552 Add typefinder for flac-in-ogg in conformance with the ogg-mapping
1553 on flac.sf.net (there appear to be other versions of the first
1554 ogg page in the wild) (#391365).
1556 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
1559 Check if localtime_r() is available.
1561 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
1562 If localtime_r() is not available, fall back to localtime(). Should
1563 fix build on MingW (#393310).
1565 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
1567 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
1568 * gst/subparse/gstsubparse.h:
1569 Remove spurious 1000 subtrahend when calculating the timestamp from
1570 the frame number and the frame rate . Also, use the frames/second
1571 value specified in the first line of the file, if one is specified
1572 there. Should fix #357503.
1574 * tests/check/elements/subparse.c: (do_test),
1575 (test_tmplayer_do_test), (test_microdvd_do_test), (GST_START_TEST),
1577 Add some basic unit tests for the microdvd subtitle format.
1579 2007-01-07 Julien MOUTTE <julien@moutte.net>
1581 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1582 (gst_xvimage_buffer_finalize), (gst_xvimagesink_xvimage_new),
1583 (gst_xvimagesink_xvimage_put), (gst_lookup_xv_port_from_adaptor),
1584 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps),
1585 (gst_xvimagesink_set_xwindow_id),
1586 (gst_xvimagesink_set_event_handling),
1587 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
1588 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
1589 Patch by : Young-Ho Cha <ganadist at chollian dot net>
1591 Add an adaptor property to select a specific XV adaptor.
1592 * sys/xvimage/xvimagesink.h:
1594 2007-01-07 Julien MOUTTE <julien@moutte.net>
1596 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
1597 (gst_ximagesink_handle_xerror), (gst_ximagesink_ximage_new),
1598 (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
1599 (gst_ximagesink_handle_xevents), (gst_ximagesink_setcaps),
1600 (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
1601 (gst_ximagesink_expose), (gst_ximagesink_set_event_handling):
1602 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1603 (gst_xvimage_buffer_finalize), (gst_xvimagesink_handle_xerror),
1604 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
1605 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_setcaps),
1606 (gst_xvimagesink_change_state), (gst_xvimagesink_set_xwindow_id),
1607 (gst_xvimagesink_expose), (gst_xvimagesink_set_event_handling):
1608 Use flow_lock much more to protect every access to xwindow.
1609 Try to catch erros while creating images in case some drivers are
1610 just generating an XError when the requested image is too big.
1611 Should fix : #354698, #384008, #384060.
1612 * tests/icles/stress-xoverlay.c: (cycle_window), (create_window):
1613 Implement some stress testing of setting window xid.
1615 2007-01-07 Sébastien Moutte <sebastien@moutte.net>
1617 * win32/common/libgsaudio.def:
1618 Add new exported function.
1619 * win32/common/libgstogg.dsp:
1620 Add gstoggaviparse.c to the build.
1621 * win32/common/libgstvideoscale.dsp:
1622 Add vs_4tap.c to the build.
1623 * win32/common/libgstvorbis.dsp:
1624 Add vorbistag.c to the build.
1626 2007-01-06 Andy Wingo <wingo@pobox.com>
1628 * gst-libs/gst/audio/gstbaseaudiosink.c
1629 (gst_base_audio_sink_class_init)
1630 (gst_base_audio_sink_init):
1631 (gst_base_audio_sink_activate_pull): Add an activate_pull function
1632 to baseaudiosink, and tell basesink that we can work in pull mode.
1633 This way the ring buffer thread drives the pipeline directly, if
1634 pull mode is possible. There is some lingering nastiness regarding
1636 (gst_base_audio_sink_callback): Implement the callback to pull
1637 data. This interface is a bit light, though -- it should get a
1638 GstFlowReturn return value at least.
1640 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1642 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
1643 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
1644 * gst/playback/gstdecodebin2.c:
1645 (gst_decode_group_check_if_blocked):
1646 Printf format and missing argument fixes.
1648 2007-01-05 Jan Schmidt <thaytan@mad.scientist.com>
1650 * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header),
1651 (gst_ogm_parse_change_state):
1652 Activate pads before adding them to the element.
1654 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1656 * tests/examples/seek/scrubby.c: (main):
1657 * tests/examples/seek/seek.c: (main):
1658 Call g_thread_init() first thing in main() (see #391278).
1660 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1662 * tests/check/Makefile.am:
1663 * tests/check/libs/.cvsignore:
1664 * tests/check/libs/netbuffer.c: (GST_START_TEST),
1666 Add test for GstNetBuffer + gst_buffer_copy(). Disabled
1667 for the time being, since it's broken, see #393099.
1669 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1671 * tests/check/Makefile.am:
1672 Update to use GST_PLUGINS_BASE_CFLAGS as well.
1674 2007-01-04 Thomas Vander Stichele <thomas at apestaart dot org>
1677 split out GST_CFLAGS into GST_PLUGINS_BASE_CFLAGS and GST_CFLAGS
1678 so that GST_BASE_CFLAGS can go inbetween them, making sure
1679 we use uninstalled gst-libs headers
1680 * docs/libs/Makefile.am:
1681 * ext/alsa/Makefile.am:
1682 * ext/cdparanoia/Makefile.am:
1683 * ext/gnomevfs/Makefile.am:
1684 * ext/libvisual/Makefile.am:
1685 * ext/ogg/Makefile.am:
1686 * ext/theora/Makefile.am:
1687 * ext/vorbis/Makefile.am:
1688 * gst-libs/gst/audio/Makefile.am:
1689 * gst-libs/gst/cdda/Makefile.am:
1690 * gst-libs/gst/interfaces/Makefile.am:
1691 * gst-libs/gst/riff/Makefile.am:
1692 * gst-libs/gst/rtp/Makefile.am:
1693 * gst-libs/gst/tag/Makefile.am:
1694 * gst/adder/Makefile.am:
1695 * gst/audioconvert/Makefile.am:
1696 * gst/audiorate/Makefile.am:
1697 * gst/audioresample/Makefile.am:
1698 * gst/playback/Makefile.am:
1699 * gst/tcp/Makefile.am:
1700 * gst/videoscale/Makefile.am:
1701 * gst/volume/Makefile.am:
1702 * sys/ximage/Makefile.am:
1703 * sys/xvimage/Makefile.am:
1704 * tests/icles/Makefile.am:
1707 2007-01-04 Julien MOUTTE <julien@moutte.net>
1709 * gst-libs/gst/interfaces/xoverlay.c:
1710 (gst_x_overlay_handle_events):
1711 * gst-libs/gst/interfaces/xoverlay.h:
1712 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
1713 (gst_ximagesink_set_xwindow_id),
1714 (gst_ximagesink_set_event_handling),
1715 (gst_ximagesink_xoverlay_init), (gst_ximagesink_set_property),
1716 (gst_ximagesink_get_property), (gst_ximagesink_init),
1717 (gst_ximagesink_class_init):
1718 * sys/ximage/ximagesink.h:
1719 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new),
1720 (gst_xvimagesink_set_xwindow_id),
1721 (gst_xvimagesink_set_event_handling),
1722 (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_set_property),
1723 (gst_xvimagesink_get_property), (gst_xvimagesink_init),
1724 (gst_xvimagesink_class_init):
1725 * sys/xvimage/xvimagesink.h:
1726 * tests/icles/stress-xoverlay.c: (toggle_events), (create_window):
1727 Add a method to the XOverlay interface to allow disabling of
1728 event handling in x[v]imagesink elements. This will let X events
1729 propagate to parent windows which can be usefull in some cases.
1730 Be carefull that the application is then responsible of pushing
1731 navigation events and expose events to the video sink.
1734 2007-01-03 Tim-Philipp Müller <tim at centricular dot net>
1736 * gst-libs/gst/tag/gstvorbistag.c:
1737 * tests/check/libs/tag.c: (GST_START_TEST):
1738 Add vorbistag <=> GStreamer tag mapping for GST_TAG_LOCATION
1741 2007-01-01 Tim-Philipp Müller <tim at centricular dot net>
1745 * docs/design/Makefile.am:
1748 2006-12-27 Julien MOUTTE <julien@moutte.net>
1750 * docs/libs/gst-plugins-base-libs-sections.txt: Fix a documentation
1751 typo. Fixes: #390063.
1753 2006-12-27 Julien MOUTTE <julien@moutte.net>
1755 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
1756 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Plug a
1758 * win32/common/config.h: Updated.
1760 2006-12-22 Stefan Kost <ensonic@users.sf.net>
1762 * tests/check/elements/gdpdepay.c: (cleanup_gdpdepay),
1763 (setup_gdpdepay_streamheader):
1764 * tests/check/elements/gdppay.c: (cleanup_gdppay),
1765 (setup_gdppay_streamheader):
1766 Fix the dp tests, but activating the pads for the streamheader tests
1767 too and cleaning up conditionaly
1769 2006-12-22 Jan Schmidt <thaytan@mad.scientist.com>
1771 * gst/ffmpegcolorspace/avcodec.h:
1772 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1773 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
1774 (gst_ffmpegcsp_avpicture_fill):
1775 * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
1776 (img_get_alpha_info):
1777 Add 2 new caps arrangements, for 24-bit RGB and BGR in 32-bits, but at the
1778 other end of the word. Fixes: #387073.
1780 Add some inconsequential branch hints in a couple of places.
1782 2006-12-21 Tim-Philipp Müller <tim at centricular dot net>
1784 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1785 (gst_ffmpeg_caps_to_smpfmt):
1786 The "signed" field in raw audio caps is of boolean type, trying to
1787 extract the value with _get_int() will fail (fix to keep in sync with
1788 the copy in gst-ffmpeg)
1790 2006-12-21 Stefan Kost <ensonic@users.sf.net>
1792 * tests/check/elements/audioresample.c: (cleanup_audioresample):
1793 * tests/check/elements/audiotestsrc.c: (cleanup_audiotestsrc):
1794 * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
1796 * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay):
1797 * tests/check/elements/subparse.c: (teardown_subparse):
1798 * tests/check/elements/textoverlay.c: (cleanup_textoverlay):
1799 * tests/check/elements/videorate.c: (cleanup_videorate):
1800 * tests/check/elements/videotestsrc.c: (cleanup_videotestsrc):
1801 * tests/check/elements/volume.c: (cleanup_volume):
1802 * tests/check/elements/vorbisdec.c: (setup_vorbisdec),
1803 (cleanup_vorbisdec):
1804 * tests/check/elements/vorbistag.c: (setup_vorbistag),
1805 (cleanup_vorbistag):
1806 consistent pad (de)activation
1808 2006-12-20 Tim-Philipp Müller <tim at centricular dot net>
1810 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1811 Forgot to register the extensions.
1813 2006-12-20 Tim-Philipp Müller <tim at centricular dot net>
1815 * gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
1817 Add typefinder for VIVO files (my christmas present to the 90s).
1819 2006-12-16 Tim-Philipp Müller <tim at centricular dot net>
1821 * gst/playback/gstdecodebin.c: (type_found):
1822 Special-case the text/plain media type: we only want to recognise it
1823 as a 'raw' decoded media type if it comes from a demuxer or subtitle
1824 parser, but not if the entire stream is of text/plain type. If the
1825 entire stream is text/plain, we should just error out.
1827 This fixes playback of audio files with lyrics in totem. Totem can't
1828 distinguish between text files and subtitle files and passes any
1829 .txt file with the same basename as the main file to playbin as
1830 suburi, and playbin will then throw a 'subtitle found, but no video
1831 stream' error, which isn't entirely helpful. See #380342.
1833 Also, with this change we'll show a slightly more correct error
1834 message in case totem passes a playlist file to us (although a
1835 custom error message wording instead of the default text would
1836 probably not be a bad idea either).
1838 Same problem also needs to be fixed for playbin+decodebin2.
1840 * tests/check/Makefile.am:
1841 * tests/check/elements/decodebin.c: (src_handoff_cb),
1842 (decodebin_new_decoded_pad_cb), (GST_START_TEST),
1844 Add simple unit test for decodebin for the above.
1846 2006-12-16 Tim-Philipp Müller <tim at centricular dot net>
1848 * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
1849 * gst/playback/gstdecodebin2.c: (gst_decode_bin_change_state):
1850 Refuse to change state to READY when we failed to create any of the
1851 required elements in our instance init function.
1853 2006-12-15 Tim-Philipp Müller <tim at centricular dot net>
1855 * docs/libs/gst-plugins-base-libs-sections.txt:
1856 Small docs fixes/updates.
1858 * gst-libs/gst/video/gstvideosink.h:
1859 Remove nonfunctional GST_VIDEO_SINK_CLOCK macro which is a leftover
1860 from the 0.9 days (GST_BASE_SINK_CLOCK, which it points to, was
1861 removed from the base sink API between 0.9.6 and 0.9.7).
1862 API: add GST_VIDEO_SINK_CAST and use it for the height/width
1863 accessor macros, so we don't do a runtime GObject type check every
1866 2006-12-15 Thomas Vander Stichele <thomas at apestaart dot org>
1869 * gst-plugins-base.doap:
1870 * gst-plugins-base.spec.in:
1873 2006-12-09 Tim-Philipp Müller <tim at centricular dot net>
1875 Patch by: Jens Granseuer <jensgr at gmx net>
1877 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
1878 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
1879 (gst_base_rtp_audio_payload_handle_frame_based_buffer),
1880 (gst_base_rtp_audio_payload_handle_sample_based_buffer):
1881 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
1882 Declare variables at the beginning of a block. Fixes #383195.
1884 2006-12-07 Jan Schmidt <thaytan@mad.scientist.com>
1887 Bump version nano - back to CVS.
1890 === release 0.10.11 ===
1892 2006-12-06 Jan Schmidt <thaytan@mad.scientist.com>
1895 releasing 0.10.11, "Dumb things"
1897 2006-12-05 Jan Schmidt <thaytan@mad.scientist.com>
1899 * gst/playback/gstdecodebin.c: (find_dynamic), (dynamic_add),
1900 (close_pad_link), (elem_is_dynamic), (unlinked), (close_link):
1901 Handle the case where an element has multiple pads with
1902 unfixed caps as well as still possibly producing more dynamic
1903 pads by storing each case as a distinct entry in the dynamic list.
1906 2006-12-04 Wim Taymans <wim@fluendo.com>
1908 * gst/playback/gstdecodebin.c: (close_pad_link):
1909 Fix #382223, add more dynamic caps handling.
1911 2006-12-04 Wim Taymans <wim@fluendo.com>
1913 reviewed by: <delete if not using a buddy>
1915 * gst-libs/gst/audio/gstringbuffer.h:
1916 * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_init),
1917 (gst_netaddress_set_ip4_interface),
1918 (gst_netaddress_set_ip6_interface), (gst_netaddress_set_loopback),
1919 (gst_netaddress_set_ttl), (gst_netaddress_get_ip4_interface),
1920 (gst_netaddress_get_ip6_interface), (gst_netaddress_get_loopback),
1921 (gst_netaddress_get_ttl):
1922 * gst-libs/gst/netbuffer/gstnetbuffer.h:
1923 * gst/playback/gstdecodebin.c: (close_pad_link):
1924 * tests/examples/seek/seek.c: (end_scrub), (end_seek), (do_seek),
1925 (seek_cb), (stop_seek), (rate_spinbutton_changed_cb):
1926 * win32/common/config.h:
1928 2006-12-01 Michael Smith <msmith@fluendo.com>
1930 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
1931 Delete bad debug code.
1934 2006-12-01 Jan Schmidt <thaytan@mad.scientist.com>
1936 * gst/videoscale/vs_4tap.c:
1938 * win32/common/config.h:
1939 * win32/vs8/libgstvideoscale.vcproj:
1940 Fix compilation on win32 under VS8
1941 Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
1942 Partially fixes #381175
1944 2006-11-30 Michael Smith <msmith@fluendo.com>
1946 * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
1948 It would be very bad if, after a discont buffer, we thought every
1949 single following buffer was also discont. So, add to the test to
1950 ensure that this isn't the case.
1952 * ext/theora/theoraenc.c: (theora_enc_is_discontinuous):
1953 ... it was the case. So fix it.
1955 2006-11-28 Wim Taymans <wim@fluendo.com>
1957 * gst/playback/gstplaybasebin.c: (check_queue_event):
1960 * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
1961 Fix width and height range from 16 - 4096 to 1 - MAXINT, just like the
1962 padtemplate caps. Refixes #357577.
1964 2006-11-28 Wim Taymans <wim@fluendo.com>
1966 * gst/playback/gstplaybasebin.c: (check_queue_event),
1967 (queue_threshold_reached), (queue_out_of_data),
1968 (gen_preroll_element):
1969 Add event probe to see when EOS is in a queue and we can disable the
1970 underrun signals. Fixes #357577.
1972 2006-11-28 Edward Hervey <edward@fluendo.com>
1974 * gst/playback/Makefile.am:
1975 * gst/playback/gstdecodebin2.c: (gst_decode_bin_get_type),
1976 (_gst_boolean_accumulator), (gst_decode_bin_class_init),
1977 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
1978 (gst_decode_bin_init), (gst_decode_bin_dispose),
1979 (gst_decode_bin_finalize), (gst_decode_bin_set_property),
1980 (gst_decode_bin_get_property), (gst_decode_bin_set_caps),
1981 (gst_decode_bin_get_caps), (gst_decode_bin_autoplug_continue),
1982 (gst_decode_bin_autoplug_sort), (analyze_new_pad), (connect_pad),
1983 (connect_element), (expose_pad), (type_found),
1984 (pad_added_group_cb), (pad_removed_group_cb),
1985 (no_more_pads_group_cb), (pad_added_cb), (pad_removed_cb),
1986 (no_more_pads_cb), (find_compatibles), (is_demuxer_element),
1987 (are_raw_caps), (multi_queue_overrun_cb),
1988 (multi_queue_underrun_cb), (gst_decode_group_new),
1989 (get_current_group), (group_demuxer_event_probe),
1990 (gst_decode_group_control_demuxer_pad),
1991 (gst_decode_group_control_source_pad),
1992 (gst_decode_group_check_if_blocked),
1993 (gst_decode_group_check_if_drained), (gst_decode_group_expose),
1994 (gst_decode_group_hide), (gst_decode_group_free),
1995 (gst_decode_group_set_complete), (source_pad_blocked_cb),
1996 (source_pad_event_probe), (gst_decode_pad_new), (add_fakesink),
1997 (remove_fakesink), (find_sink_pad), (gst_decode_bin_change_state),
1999 New decodebin2 element.
2001 * gst/playback/gstplay-marshal.list:
2002 Added marshallers for new signals in decodebin2
2003 * gst/playback/gstplaybasebin.c: (setup_subtitle), (make_decoder):
2004 Use decodebin2 if *and only if* the USE_DECODEBIN2 environment variable
2007 2006-11-28 Wim Taymans <wim@fluendo.com>
2009 * gst/playback/gstplaybasebin.c: (setup_source),
2010 (gst_play_base_bin_change_state):
2011 Disable rtsp:// uris for the release, it's not good enough yet.
2014 2006-11-26 Wim Taymans <wim@fluendo.com>
2016 * ext/theora/theoradec.c: (gst_theora_dec_reset),
2017 (theora_dec_push_forward), (theora_dec_push_reverse),
2018 (theora_handle_data_packet), (theora_dec_decode_buffer),
2019 (theora_dec_flush_decode), (theora_dec_chain_reverse),
2020 (theora_dec_chain_forward), (theora_dec_chain):
2021 Implement reverse playback.
2023 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
2024 (vorbis_dec_decode_buffer), (vorbis_dec_flush_decode),
2025 (vorbis_dec_chain_forward):
2026 Clear buffers used for reverse playback in _reset.
2027 No need to set the eos flag, we clip samples using the segment.
2029 2006-11-24 Wim Taymans <wim@fluendo.com>
2031 * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
2032 (gst_ogg_pad_init), (gst_ogg_pad_dispose), (gst_ogg_pad_reset),
2033 (gst_ogg_pad_stream_out), (gst_ogg_pad_submit_page),
2034 (gst_ogg_chain_reset), (gst_ogg_demux_perform_seek):
2036 Handle continued pages in reverse mode.
2038 2006-11-24 Wim Taymans <wim@fluendo.com>
2040 * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
2041 (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
2042 (vorbis_dec_flush_decode):
2044 Don't try to add invalid timestamps.
2045 Clipping will unref the buffer.
2047 2006-11-24 Stefan Kost <ensonic@users.sf.net>
2049 * gst/adder/gstadder.h:
2050 * gst/audiotestsrc/gstaudiotestsrc.h:
2051 remove obsolete _factory_init protos
2053 2006-11-24 Stefan Kost <ensonic@users.sf.net>
2055 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
2056 Fix spacing in debug message.
2058 2006-11-23 Wim Taymans <wim@fluendo.com>
2060 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
2061 (gst_ogg_demux_chain):
2062 Don't just ignore return values from _pad_push().
2063 Small debug improvements.
2065 2006-11-23 Michael Smith <msmith@fluendo.com>
2067 * ext/ogg/gstoggmux.c: (gst_ogg_mux_process_best_pad):
2068 If our incoming buffer is marked as DISCONT, then increment the page
2069 number (so that the discontinuity is marked in the final ogg
2070 bitstream) and flush the previous page.
2072 2006-11-22 Michael Smith <msmith@fluendo.com>
2074 * ext/theora/gsttheoraenc.h:
2075 * ext/theora/theoraenc.c: (gst_theora_enc_init),
2076 (theora_enc_reset), (theora_enc_clear), (theora_enc_sink_setcaps),
2077 (theora_buffer_from_packet), (theora_enc_is_discontinuous),
2078 (theora_enc_chain), (theora_enc_change_state):
2079 Mark discontinuities of > 3/4 of a frame, reinit encoder.
2081 * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
2082 (GST_START_TEST), (theoraenc_suite):
2083 Enable discontinuity test, fix it.
2085 2006-11-21 Tim-Philipp Müller <tim at centricular dot net>
2087 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
2088 (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
2089 (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
2090 (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
2091 (gst_text_overlay_change_state):
2092 * ext/pango/gsttextoverlay.h:
2093 Some textoverlay fixes: for one, in the video chain function,
2094 actually wait for a text buffer to come in if there is none at the
2095 moment and there should be one; also, deal more gracefully with
2096 incoming buffers that do not have a timestamp or duration; discard
2097 text buffer when not needed any longer. Fixes #341681.
2099 * tests/check/Makefile.am:
2100 * tests/check/elements/.cvsignore:
2101 * tests/check/elements/textoverlay.c:
2102 (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2),
2103 (setup_textoverlay), (buffer_is_all_black), (create_black_buffer),
2104 (create_text_buffer), (cleanup_textoverlay), (GST_START_TEST),
2105 (test_video_waits_for_text_send_text_newsegment_thread),
2106 (test_video_waits_for_text_shutdown_element),
2107 (test_render_continuity_push_video_buffers_thread),
2108 (textoverlay_suite):
2109 Add some unit tests for textoverlay.
2111 2006-11-21 Tim-Philipp Müller <tim at centricular dot net>
2113 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
2114 Avoid integer underflow when the found probability for mp3 is
2115 smaller than the 'penalty' we subtract if there's not a clean
2116 mp3 header sync at offset 0.
2118 2006-11-21 Stefan Kost <ensonic@users.sf.net>
2120 * docs/libs/gst-plugins-base-libs-sections.txt:
2121 Add some new symbols to the docs
2123 2006-11-20 Tim-Philipp Müller <tim at centricular dot net>
2125 * tests/check/Makefile.am:
2126 * tests/check/elements/ffmpegcolorspace.c:
2127 (ffmpegcolorspace_suite):
2128 Enable ffmpegcolorspace test now that the RGBA32 issue is fixed
2129 (for now not for valgrinding though, since it takes too long).
2131 2006-11-20 Wim Taymans <wim@fluendo.com>
2133 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
2134 (gst_ffmpeg_pixfmt_to_caps):
2135 Fix RGBA32 caps. Fixes #357038.
2137 2006-11-20 Tim-Philipp Müller <tim at centricular dot net>
2139 * gst-libs/gst/interfaces/mixertrack.h:
2140 Add FIXME so we can add some padding here in 0.11
2142 2006-11-19 Tim-Philipp Müller <tim at centricular dot net>
2144 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
2145 Fix GstBaseRTPAudioPayload structure so the whole GObject
2146 inheritance business actually works (parent class instance structure
2147 must always come first in the derived class instance structure).
2149 2006-11-16 Tim-Philipp Müller <tim at centricular dot net>
2151 * gst/videotestsrc/Makefile.am:
2152 * tests/check/Makefile.am:
2153 Make sure our checks and the videotestsrc plugin link against the
2154 local uninstalled gst libs and not any installed gst libs that
2155 might happen to exist as well.
2157 * tests/check/elements/adder.c: (message_received),
2158 (test_event_message_received), (test_play_twice_message_received):
2159 * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
2160 Fix compiler warnings when compiling against core with disabled
2163 2006-11-16 Michael Smith <msmith@fluendo.com>
2165 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
2166 (gst_audio_rate_sink_event), (gst_audio_rate_chain):
2167 Fix audiorate, so that it accurately sets offsets and timestamps.
2168 Doesn't change the fundamental algorithmic decisions; so should be
2171 * tests/check/Makefile.am:
2172 Enable audiorate test now that it passes.
2174 2006-11-09 Stefan Kost <ensonic@users.sf.net>
2176 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
2177 clear xv when going to NULL, remove // commented non-existant proto
2179 * tests/examples/seek/seek.c: (main):
2180 add missing tooltip description for scrub and play_scrub
2182 2006-11-14 David Schleef <ds@schleef.org>
2185 Bump liboil requirement to 0.3.8.
2186 * gst-libs/gst/riff/riff-media.c:
2188 * gst/videoscale/vs_image.h:
2189 * gst/videoscale/vs_scanline.h:
2190 Use liboil's stdint.h.
2191 * gst/videotestsrc/videotestsrc.c:
2192 Remove liboil related ifdef's, since they aren't needed now, and
2193 won't work with future versions.
2195 2006-11-14 David Schleef <ds@schleef.org>
2197 * gst/videoscale/Makefile.am:
2198 * gst/videoscale/gstvideoscale.c:
2199 * gst/videoscale/gstvideoscale.h:
2200 * gst/videoscale/vs_4tap.c:
2201 * gst/videoscale/vs_4tap.h:
2202 * gst/videoscale/vs_image.c:
2203 * gst/videoscale/vs_image.h:
2204 * gst/videoscale/vs_scanline.c:
2205 * gst/videoscale/vs_scanline.h:
2206 Add a 4-tap image scaler. Theoretically looks much prettier.
2207 The tap calculation could use some improvement.
2209 2006-11-14 Wim Taymans <wim@fluendo.com>
2211 Patch by: Jan David Mol <j dot j dot d dot mol at tudelft dot nl>
2213 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds),
2214 (gst_riff_parse_strf_iavs):
2215 * gst/subparse/gstsubparse.c: (convert_encoding):
2216 * gst/tcp/gstmultifdsink.c:
2217 (gst_multi_fd_sink_handle_client_write):
2218 * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
2219 (gst_tcp_read_buffer), (gst_tcp_gdp_read_caps),
2220 (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
2221 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_render):
2222 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
2223 (gst_ximagesink_ximage_new):
2224 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
2225 Various gsize and gssize printf fixes. Fixes #372507.
2227 2006-11-13 Wim Taymans <wim@fluendo.com>
2229 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
2230 (vorbis_dec_push_forward), (vorbis_dec_push_reverse),
2231 (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
2232 (vorbis_dec_flush_decode), (vorbis_dec_chain_reverse),
2233 (vorbis_dec_chain_forward), (vorbis_dec_chain):
2234 * ext/vorbis/vorbisdec.h:
2235 First stab at vorbis reverse playback.
2237 2006-11-13 Wim Taymans <wim@fluendo.com>
2239 * gst-libs/gst/audio/gstbaseaudiosink.c:
2240 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
2241 * gst-libs/gst/audio/gstbaseaudiosink.h:
2242 Make the clock sync code more accurate wrt resampling and playback
2245 * gst-libs/gst/audio/gstringbuffer.c:
2246 (gst_ring_buffer_commit_full), (gst_ring_buffer_commit):
2247 * gst-libs/gst/audio/gstringbuffer.h:
2248 Use better algorithm to interpolate sample rates.
2250 2006-11-13 Michael Smith <msmith@fluendo.com>
2252 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page):
2253 Improve a debug line slightly.
2255 * ext/ogg/gstogmparse.c: (gst_ogm_parse_plugin_init):
2256 Call gst_riff_init() in plugin_init, to avoid getting errors from
2257 the debug system (unrelated changes to another plugin made this turn
2260 2006-11-10 Tim-Philipp Müller <tim at centricular dot net>
2262 Patch by: Sergey Scobich <sergery.scobich at gmail com>
2264 * win32/common/libgsttag.def:
2265 Add missing symbol (#366492).
2267 2006-11-09 Tim-Philipp Müller <tim at centricular dot net>
2269 * gst/playback/gststreamselector.c: (gst_stream_selector_dispose):
2270 Don't unref a NULL pad.
2272 2006-11-09 Wim Taymans <wim@fluendo.com>
2274 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
2275 (gst_ogg_demux_get_prev_page), (gst_ogg_demux_perform_seek),
2276 (gst_ogg_demux_handle_page), (gst_ogg_demux_chain),
2277 (gst_ogg_demux_loop_forward), (gst_ogg_demux_loop_reverse),
2278 (gst_ogg_demux_loop):
2279 Implement first stab at reverse playback.
2281 2006-11-07 Stefan Kost <ensonic@users.sf.net>
2283 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
2284 (gst_riff_create_video_template_caps):
2285 add h263/h264 variants to the caps, Fixes #363118
2287 2006-11-06 Tim-Philipp Müller <tim at centricular dot net>
2289 * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
2290 * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
2291 Use g_strerror instead of strerror so we get UTF-8.
2293 2006-11-03 David Schleef <ds@schleef.org>
2295 * ext/ogg/gstoggdemux.c:
2296 * ext/ogg/gstoggmux.c:
2297 Add/remove KW-DIRAC header here, since it is ogg-specific.
2299 2006-11-03 Michael Smith <msmith@fluendo.com>
2301 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
2302 Recognise more mpeg4 elementary video streams.
2304 2006-11-02 Edward Hervey <edward@fluendo.com>
2306 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
2307 Lower the probability of mp3 typefinding functions if we don't find a
2308 valid mp3 header at the start of the file.
2311 2006-11-02 Wim Taymans <wim@fluendo.com>
2313 * ext/theora/gsttheoradec.h:
2314 * ext/theora/theoradec.c: (gst_theora_dec_init),
2315 (theora_dec_sink_event), (theora_dec_chain_forward),
2316 (theora_dec_flush_decode), (theora_dec_chain_reverse),
2318 Document and partially implement an algorithm for doing reverse playback
2321 2006-11-02 Tim-Philipp Müller <tim at centricular dot net>
2323 Patch by: Sergey Scobich <sergey.scobich at gmail com>
2325 * win32/common/config.h:
2326 * win32/common/interfaces-enumtypes.c:
2327 * win32/common/libgsttag.def:
2328 * win32/vs8/gst-plugins-base.sln:
2329 * win32/vs8/libgstaudioresample.vcproj:
2330 * win32/vs8/libgstinterfaces.vcproj:
2331 * win32/vs8/libgstogg.vcproj:
2332 * win32/vs8/libgstriff.vcproj:
2333 * win32/vs8/libgsttag.vcproj:
2334 * win32/vs8/libgsttheora.vcproj:
2335 * win32/vs8/libgstvideoscale.vcproj:
2336 * win32/vs8/libgstvorbis.vcproj:
2337 Misc. VS8 build fixes: fix syntax in config.h, add missing entries
2338 to libgsttag.def; add missing dependencies for some vs8 projects;
2339 re-arrange placement of .def files in vs8 projects (#366334).
2341 2006-11-01 Tim-Philipp Müller <tim at centricular dot net>
2344 Remove unused variable.
2346 * ext/ogg/gstoggdemux.c:
2347 Fix Wim's surname in plugin description.
2349 2006-10-31 Wim Taymans <wim@fluendo.com>
2351 * gst-plugins-base.spec.in:
2352 spec new .h file. Fixes #368310.
2354 2006-10-31 Michael Smith <msmith@fluendo.com>
2356 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
2357 (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
2358 (gst_multi_fd_sink_get_stats),
2359 (gst_multi_fd_sink_remove_client_link),
2360 (gst_multi_fd_sink_queue_buffer),
2361 (gst_multi_fd_sink_handle_clients):
2362 * gst/tcp/gstmultifdsink.h:
2363 Make using the remove or clear signals threadsafe.
2364 Make calling get-stats with an invalid fd not segfault.
2367 2006-10-31 Wim Taymans <wim@fluendo.com>
2369 * gst-libs/gst/rtp/Makefile.am:
2370 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2371 (gst_base_rtp_audio_payload_init):
2372 Fix and activate base audio payloader.
2374 2006-10-28 Tim-Philipp Müller <tim at centricular dot net>
2376 * gst/typefind/gsttypefindfunctions.c: (qtif_type_find),
2378 Add typefinder for QuickTime Image Files (see #366156).
2380 2006-10-28 Tim-Philipp Müller <tim at centricular dot net>
2382 * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
2383 Another typo fix (#366212).
2385 2006-10-27 Wim Taymans <wim@fluendo.com>
2387 * gst/volume/gstvolume.c: (volume_transform_ip):
2388 Use stream time to synchronize volume property instead of rather random
2389 timestamps. This is needed when gnonlin does its time shifting.
2391 2006-10-27 Wim Taymans <wim@fluendo.com>
2393 Patch by: Mark Nauwelaerts <manauw at skynet dot be>
2395 * ext/ogg/gstoggmux.c: (gst_ogg_mux_release_pad):
2396 Remove the pad from the element in release_pad. Fixes #364812.
2398 2006-10-27 Tim-Philipp Müller <tim at centricular dot net>
2400 * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
2401 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
2402 Explicitly create our custom buffer classes at a thread-safe
2403 location as well, since g_type_class_ref() doesn't seem to be
2404 entirely thread-safe either (#365501; also see #349410).
2406 2006-10-26 Tim-Philipp Müller <tim at centricular dot net>
2408 * gst-libs/gst/riff/riff-read.c: (freeform_string_to_utf8),
2409 (gst_riff_parse_info):
2410 If strings in INFO chunk are not UTF-8, do something similar to
2411 what we do for ID3v1 tags: check a number of environment variables
2412 (GST_AVI_TAG_ENCODING, GST_RIFF_TAG_ENCODING, GST_TAG_ENCODING) for
2413 character sets to try, otherwise try the current locale and/or fall
2414 back on ISO-8859-1. Fixes #360552.
2416 2006-10-23 Tim-Philipp Müller <tim at centricular dot net>
2418 * gst/videotestsrc/gstvideotestsrc.c:
2419 (gst_video_test_src_pattern_get_type),
2420 (gst_video_test_src_set_pattern):
2421 * gst/videotestsrc/gstvideotestsrc.h:
2422 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_checkers1),
2423 (gst_video_test_src_checkers2), (gst_video_test_src_checkers4),
2424 (gst_video_test_src_checkers8):
2425 * gst/videotestsrc/videotestsrc.h:
2426 Add a bunch of exciting new checkers patterns.
2428 2006-10-23 Tim-Philipp Müller <tim at centricular dot net>
2430 * gst/subparse/Makefile.am:
2431 * gst/subparse/gstsubparse.c:
2432 (gst_sub_parse_data_format_autodetect),
2433 (gst_sub_parse_format_autodetect), (handle_buffer),
2434 (gst_sub_parse_chain), (gst_subparse_type_find), (plugin_init):
2435 * gst/subparse/gstsubparse.h:
2436 * gst/subparse/tmplayerparse.c: (tmplayer_parse_line),
2438 * gst/subparse/tmplayerparse.h:
2439 Add support for TMPlayer-type subtitles (#362845).
2441 * tests/check/elements/subparse.c: (test_tmplayer_do_test),
2442 (GST_START_TEST), (subparse_suite):
2443 Add some basic unit tests for the above.
2445 2006-10-23 Tim-Philipp Müller <tim at centricular dot net>
2447 * tests/check/elements/audiorate.c: (test_injector_base_init),
2448 (test_injector_class_init), (test_injector_chain),
2449 (test_injector_init), (probe_cb), (do_perfect_stream_test),
2450 (GST_START_TEST), (audiorate_suite):
2451 More tests for audiorate: inject buffers to check behaviour when
2454 2006-10-21 Tim-Philipp Müller <tim at centricular dot net>
2456 * tests/check/Makefile.am:
2457 * tests/check/elements/.cvsignore:
2458 * tests/check/elements/audiorate.c: (probe_cb), (got_buf),
2459 (do_perfect_stream_test), (GST_START_TEST), (audiorate_suite):
2460 Add some basic unit tests for audiorate. Disabled at the moment
2461 since it doesn't pass yet (see bug #363119).
2463 2006-10-20 Tim-Philipp Müller <tim at centricular dot net>
2465 * gst/subparse/gstsubparse.c: (subrip_fix_up_markup),
2466 (parse_subrip), (handle_buffer):
2467 Add missing closing tags for markup and fix broken markup,
2468 otherwise pango won't render anything (fixes #357531). Also,
2469 make sure the text we send out is always NUL-terminated
2470 (better safe than sorry etc.).
2472 * tests/check/elements/subparse.c: (test_srt_do_test),
2474 Some more tests for .srt incl. tests for the above stuff.
2476 2006-10-20 Julien MOUTTE <julien@moutte.net>
2478 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
2479 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
2480 Patch by: Stefan Kost <ensonic@users.sf.net>
2481 Try to redraw borders only when needed. Apparently this consumes
2482 resources on small devices... :-O (#363607)
2484 2006-10-20 Michael Smith <msmith@fluendo.com>
2486 * gst/tcp/gstmultifdsink.c:
2487 (gst_multi_fd_sink_client_queue_buffer):
2488 If caps change, then update the client's idea of the caps so that we
2489 don't end up re-sending streamheaders for every single buffer after
2492 2006-10-20 Michael Smith <msmith@fluendo.com>
2494 * ext/ogg/gstoggparse.c: (gst_ogg_parse_dispose),
2495 (gst_ogg_parse_append_header), (gst_ogg_parse_chain):
2496 Set caps on pushed buffers; fix up refcounting of caps objects.
2498 2006-10-19 Tim-Philipp Müller <tim at centricular dot net>
2500 * gst/typefind/gsttypefindfunctions.c: (mmsh_type_find),
2502 Typefind mmsh header data packet to application/x-mmsh (#362625).
2504 2006-10-19 Tim-Philipp Müller <tim at centricular dot net>
2506 * tests/check/Makefile.am:
2507 * tests/check/elements/.cvsignore:
2508 * tests/check/elements/subparse.c: (buffer_from_static_string),
2509 (setup_subparse), (teardown_subparse), (test_srt_do_test),
2510 (GST_START_TEST), (subparse_suite):
2511 Add very simple unit test for subparse.
2513 2006-10-19 Tim-Philipp Müller <tim at centricular dot net>
2515 * gst/subparse/gstsubparse.c: (strip_trailing_newlines),
2517 Strip trailing newlines from subtitle text output.
2519 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2521 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
2522 (gst_sub_parse_change_state):
2523 Fix memleak; clear subparse->textbuf n state change function.
2525 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2527 * gst/subparse/gstsubparse.c:
2528 (gst_sub_parse_data_format_autodetect):
2529 Don't require subrip (.srt) files to start with a chunk number of 1.
2531 2006-10-18 Wim Taymans <wim@fluendo.com>
2533 * gst-libs/gst/audio/gstbaseaudiosink.c:
2534 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
2535 * gst-libs/gst/audio/gstbaseaudiosink.h:
2536 Extract rate from the NEWSEGMENT event.
2537 Use commit_full to also take rate adjustment into account when writing
2538 samples to the ringbuffer.
2540 * gst-libs/gst/audio/gstringbuffer.c:
2541 (gst_ring_buffer_commit_full), (gst_ring_buffer_commit),
2542 (gst_ring_buffer_read):
2543 * gst-libs/gst/audio/gstringbuffer.h:
2544 Added _commit_full() to also take rate into account.
2545 Use simple interpolation algorithm to resample audio.
2546 API: gst_ring_buffer_commit_full()
2548 * tests/examples/seek/scrubby.c: (speed_cb), (do_seek):
2549 * tests/examples/seek/seek.c: (segment_done):
2550 Don't try to seek with 0.0 rate, just pause instead.
2551 Remove bogus debug line.
2553 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2555 * gst/playback/gstplaybasebin.c: (subbin_startup_sync_msg),
2557 Catch async errors when starting up the subtitle bin, so we can
2558 stop waiting and continue with the main film instead of hanging
2559 forever. Fixes #339366.
2561 * tests/check/elements/playbin.c: (playbin_suite):
2562 Enable unit test for the above.
2564 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2566 * tests/check/Makefile.am:
2567 * tests/check/elements/.cvsignore:
2568 * tests/check/elements/playbin.c: (GST_START_TEST),
2569 (gst_red_video_src_uri_get_type),
2570 (gst_red_video_src_uri_get_protocols),
2571 (gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri),
2572 (gst_red_video_src_uri_handler_init),
2573 (gst_red_video_src_init_type), (gst_red_video_src_base_init),
2574 (gst_red_video_src_create), (gst_red_video_src_class_init),
2575 (gst_red_video_src_init), (plugin_init), (playbin_suite):
2576 Some small and basic unit tests for playbin; not very useful yet,
2577 but at least a start.
2579 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2581 * gst/playback/gstplaybin.c: (setup_sinks):
2582 The old pad activation spiel.
2584 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2586 * gst/playback/gstplaybasebin.c: (setup_source):
2587 Don't hang forever if the subbin already fails to start up in
2588 the state change to PAUSED (#339366).
2590 2006-10-17 Tim-Philipp Müller <tim at centricular dot net>
2592 * gst-libs/gst/interfaces/tuner.c: (gst_tuner_list_channels),
2593 (gst_tuner_set_channel), (gst_tuner_get_channel),
2594 (gst_tuner_list_norms), (gst_tuner_set_norm), (gst_tuner_get_norm),
2595 (gst_tuner_set_frequency), (gst_tuner_get_frequency),
2596 (gst_tuner_signal_strength), (gst_tuner_find_norm_by_name),
2597 (gst_tuner_find_channel_by_name):
2598 Fix some function guards, add some more function guards.
2600 2006-10-17 Jan Schmidt <thaytan@mad.scientist.com>
2602 * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
2603 (remove_element_chain):
2604 Don't return a pad from get_our_ghost_pad unless it is actually the
2606 Change a cast in remove_element_chain slightly.
2608 2006-10-13 Julien MOUTTE <julien@moutte.net>
2610 * tests/examples/seek/seek.c: (do_seek), (start_seek),
2611 (rate_spinbutton_changed_cb), (segment_done), (msg_state_changed):
2612 Segment seeking needs to use the rate and set stop to -1.
2614 2006-10-13 Wim Taymans <wim@fluendo.com>
2616 * gst-libs/gst/audio/gstbaseaudiosink.c:
2617 (gst_base_audio_sink_setcaps):
2618 Don't crash when ringbuffer is not yet created.
2619 Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
2622 * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2623 * gst/playback/gststreamselector.c:
2624 (gst_stream_selector_request_new_pad):
2625 Activate pads befre adding them to running elements.
2627 2006-10-13 Julien MOUTTE <julien@moutte.net>
2629 * tests/examples/seek/seek.c: (do_seek), (start_seek),
2630 (rate_spinbutton_changed_cb), (msg_state_changed): Stop the scale
2631 updater when we start grabing the slider. Don't wait for the
2632 pipeline to be PAUSED.
2634 2006-10-13 Tim-Philipp Müller <tim at centricular dot net>
2636 * gst-libs/gst/interfaces/mixer.c: (gst_mixer_list_tracks),
2637 (gst_mixer_set_volume), (gst_mixer_get_volume),
2638 (gst_mixer_set_mute), (gst_mixer_set_option),
2639 (gst_mixer_get_option), (gst_mixer_mute_toggled),
2640 (gst_mixer_record_toggled), (gst_mixer_volume_changed),
2641 (gst_mixer_option_changed):
2642 Guard mixer interface functions against bogus arguments.
2644 2006-10-12 Julien MOUTTE <julien@moutte.net>
2646 * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
2647 (play_cb), (pause_cb), (stop_cb), (rate_spinbutton_changed_cb),
2648 (msg_state_changed), (main): Use state-changed messages to trigger
2649 start/stop of scale update timer. Indeed the scale slider was
2650 jumping here and there because the update timer was activated
2651 before seek completed. This fixes instant applying of rate changes
2652 by pressing the spinbutton like a crazy man !
2654 2006-10-12 Tim-Philipp Müller <tim at centricular dot net>
2656 Patch by: Sebastien Cote <sebas642 at yahoo.ca>
2658 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
2659 (gst_basertppayload_finalize):
2660 Fix two small memory leaks (#361456).
2662 2006-10-10 Julien MOUTTE <julien@moutte.net>
2664 * tests/examples/seek/seek.c: (do_seek),
2665 (rate_spinbutton_changed_cb): When changing spinbutton we try
2666 to change the rate on the fly.
2668 2006-10-10 Wim Taymans <wim@fluendo.com>
2670 * gst-libs/gst/riff/riff-ids.h:
2671 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
2672 (gst_riff_create_audio_template_caps):
2675 2006-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
2677 Patch by: Josep Torre Valles <josep@fluendo.com>
2679 * ext/gnomevfs/gstgnomevfssink.c:
2680 * ext/gnomevfs/gstgnomevfssrc.c:
2681 Fix URI interface implementation return type.
2682 * ext/pango/gsttextoverlay.c: (gst_text_overlay_set_property):
2683 Fix what looks like a copy/paste issue when assigning values.
2684 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
2685 (gst_audio_filter_template_get_type):
2686 Cast to prevent Forte warnings.
2687 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
2688 Fix URI interface implementation return type.
2689 gst_pad_query_position requires a signed integer pointer as
2690 3rd parameter, GstClockTime is unsigned.
2691 * gst/audioconvert/audioconvert.c:
2692 Fix integer overflow when treated as signed.
2693 * gst/audioresample/resample.c: (resample_add_input_data):
2694 Cast to prevent warnings on Forte.
2695 * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette):
2696 Fix integer overflow when treated as signed.
2697 * gst/ffmpegcolorspace/imgconvert_template.h:
2698 Fix integer overflow when treated as signed. RGBA_OUT shifts bits.
2699 * gst/playback/gstdecodebin.c: (queue_filled_cb),
2700 (cleanup_decodebin):
2701 Who initialises a guint to -1!
2702 Cast function pointers to prevent warnings on Forte.
2703 * gst/playback/gstplaybasebin.c: (queue_deadlock_check),
2704 (queue_threshold_reached):
2705 Cast function pointers correctly to prevent warnings on Forte.
2706 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
2707 Cast function pointers correctly to prevent warnings on Forte.
2708 * gst/subparse/gstssaparse.c: (gst_ssa_parse_setcaps):
2709 Obvious change to unsigned, 0xEF > max signed char.
2710 * gst/tcp/gstmultifdsink.c: (get_buffers_max), (count_burst_unit):
2711 GstClockTime is unsigned, initialise correctly.
2712 * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
2713 Cast so pointer arithemetic doesn't cause warnings on Forte.
2714 * gst/videorate/gstvideorate.c:
2715 Use correct return value.
2716 * tests/examples/seek/scrubby.c:
2717 GstClockTime is unsigned, initialise correctly.
2719 2006-10-10 Tim-Philipp Müller <tim at centricular dot net>
2721 Patch by: Ferenc Gerlits <fgerlits at gmail com>
2723 * gst/typefind/gsttypefindfunctions.c:
2724 Recognise XML files and XML-like files shorter than 256 bytes as
2725 well (fixes #359237).
2727 2006-10-09 Edgard Lima <edgard.lima@indt.org.br>
2729 Patch by: Renato Filho <renato.filho@indt.org.br>
2731 * gst/typefind/gsttypefindfunctions.c:
2732 Added typefind functions to video/x-nuv media.
2734 2006-10-08 Tim-Philipp Müller <tim at centricular dot net>
2736 * gst-libs/gst/interfaces/xoverlay.c:
2737 (gst_x_overlay_set_xwindow_id), (gst_x_overlay_expose):
2738 Some more guards against invalid input.
2740 2006-10-07 Julien MOUTTE <julien@moutte.net>
2742 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event):
2744 * tests/examples/seek/seek.c: (do_seek),
2745 (rate_spinbutton_changed_cb), (main): Add a rate spinbutton in
2746 seek example to experiment with rates != 1.0 (reverse playback !)
2748 2006-10-06 Stefan Kost <ensonic@users.sf.net>
2750 * gst-libs/gst/interfaces/xoverlay.c:
2751 Unref message in doc-example (spotted by Robert McQueen)
2753 2006-10-06 Wim Taymans <wim@fluendo.com>
2755 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2756 (mpeg1_parse_header), (mpeg1_sys_type_find):
2759 2006-10-06 Wim Taymans <wim@fluendo.com>
2761 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
2763 * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2764 Activate dynamic pads before adding them to the element.
2766 2006-10-06 Michael Smith <msmith@fluendo.com>
2768 * gst-libs/gst/floatcast/floatcast.h:
2769 Fix obviously-bogus macros; use the correct types.
2771 2006-10-06 Wim Taymans <wim@fluendo.com>
2773 * gst-libs/gst/rtp/gstbasertpdepayload.c:
2774 (gst_base_rtp_depayload_change_state):
2775 Also call parent state change function to activate pads.
2777 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2778 (mpeg1_parse_header), (mpeg1_sys_type_find):
2779 Add some more debug info in mpeg typefinding.
2781 2006-10-06 Michael Smith <msmith@fluendo.com>
2783 * ext/theora/theoradec.c: (theora_dec_chain):
2784 Zero byte theora packets are valid and well-defined; don't warn on
2787 2006-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
2789 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
2790 (gst_multi_fd_sink_get_stats), (find_limits),
2791 (gst_multi_fd_sink_queue_buffer):
2792 API: add dropped_buffers to the get-stats GValueArray
2794 2006-10-05 Tim-Philipp Müller <tim at centricular dot net>
2796 * ext/alsa/gstalsadeviceprobe.c:
2797 (gst_alsa_device_property_probe_get_values):
2798 * ext/alsa/gstalsasink.c: (set_hwparams):
2799 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_elem_pad),
2800 (gst_ogg_chain_new_stream), (gst_ogg_demux_read_chain):
2801 * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers),
2802 (gst_ogg_mux_process_best_pad):
2803 * ext/ogg/gstoggparse.c: (gst_ogg_parse_new_stream),
2804 (gst_ogg_parse_chain):
2805 * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
2806 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
2807 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_setup),
2808 (gst_vorbis_enc_buffer_check_discontinuous):
2809 * ext/vorbis/vorbisparse.c: (vorbis_parse_src_query):
2810 * gst-libs/gst/audio/gstbaseaudiosink.c:
2811 (gst_base_audio_sink_render):
2812 * gst-libs/gst/cdda/gstcddabasesrc.c:
2813 (gst_cdda_base_src_handle_track_seek):
2814 * gst-libs/gst/rtp/gstbasertpdepayload.c:
2815 (gst_base_rtp_depayload_push_full):
2816 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
2817 * gst/audioresample/resample.c: (resample_input_pushthrough):
2818 * gst/playback/gstplaybasebin.c: (queue_out_of_data):
2819 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
2820 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2821 (wavpack_type_find):
2822 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
2823 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
2824 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
2825 * tests/check/elements/volume.c: (GST_START_TEST):
2826 Printf format fixes.
2828 2006-10-04 Thomas Vander Stichele <thomas at apestaart dot org>
2830 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_caps):
2831 Fix a simple mistake (see the docs)
2834 2006-10-03 Tim-Philipp Müller <tim at centricular dot net>
2836 * docs/plugins/Makefile.am:
2837 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2838 * docs/plugins/gst-plugins-base-plugins-sections.txt:
2839 * docs/plugins/gst-plugins-base-plugins.args:
2840 * docs/plugins/gst-plugins-base-plugins.hierarchy:
2841 * docs/plugins/inspect/plugin-adder.xml:
2842 * docs/plugins/inspect/plugin-alsa.xml:
2843 * docs/plugins/inspect/plugin-audioconvert.xml:
2844 * docs/plugins/inspect/plugin-audiorate.xml:
2845 * docs/plugins/inspect/plugin-audioresample.xml:
2846 * docs/plugins/inspect/plugin-audiotestsrc.xml:
2847 * docs/plugins/inspect/plugin-cdparanoia.xml:
2848 * docs/plugins/inspect/plugin-decodebin.xml:
2849 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
2850 * docs/plugins/inspect/plugin-gdp.xml:
2851 * docs/plugins/inspect/plugin-gnomevfs.xml:
2852 * docs/plugins/inspect/plugin-libvisual.xml:
2853 * docs/plugins/inspect/plugin-ogg.xml:
2854 * docs/plugins/inspect/plugin-pango.xml:
2855 * docs/plugins/inspect/plugin-playbin.xml:
2856 * docs/plugins/inspect/plugin-subparse.xml:
2857 * docs/plugins/inspect/plugin-tcp.xml:
2858 * docs/plugins/inspect/plugin-theora.xml:
2859 * docs/plugins/inspect/plugin-typefindfunctions.xml:
2860 * docs/plugins/inspect/plugin-video4linux.xml:
2861 * docs/plugins/inspect/plugin-videorate.xml:
2862 * docs/plugins/inspect/plugin-videoscale.xml:
2863 * docs/plugins/inspect/plugin-videotestsrc.xml:
2864 * docs/plugins/inspect/plugin-volume.xml:
2865 * docs/plugins/inspect/plugin-vorbis.xml:
2866 * docs/plugins/inspect/plugin-ximagesink.xml:
2867 * docs/plugins/inspect/plugin-xvimagesink.xml:
2868 Add vorbistag element to docs; update version numbers to 0.10.10.1.
2870 2006-10-03 Tim-Philipp Müller <tim at centricular dot net>
2872 Patch by: James "Doc" Livingston <doclivingston at gmail com>
2874 * ext/vorbis/Makefile.am:
2875 * ext/vorbis/vorbis.c: (plugin_init):
2876 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_class_init),
2877 (vorbis_parse_parse_packet), (vorbis_parse_chain):
2878 * ext/vorbis/vorbisparse.h:
2879 * ext/vorbis/vorbistag.c: (gst_vorbis_tag_base_init),
2880 (gst_vorbis_tag_class_init), (gst_vorbis_tag_init),
2881 (gst_vorbis_tag_parse_packet):
2882 * ext/vorbis/vorbistag.h:
2883 Add new vorbistag element which derives from vorbisparse
2884 and is essentially the same as well, only that it implements
2885 the GstTagSetter interface and can modify the stream's
2886 vorbiscomment on the fly (#335635).
2888 * tests/check/Makefile.am:
2889 * tests/check/elements/.cvsignore:
2890 * tests/check/elements/vorbistag.c: (setup_vorbistag),
2891 (cleanup_vorbistag), (buffer_probe), (start_pipeline),
2892 (get_buffer), (stop_pipeline), (_create_codebook_header_buffer),
2893 (_create_audio_buffer), (GST_START_TEST), (vorbistag_suite):
2894 Add unit test for new vorbistag element.
2896 2006-10-03 Tim-Philipp Müller <tim at centricular dot net>
2898 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init),
2899 (vorbis_parse_push_headers), (vorbis_parse_chain):
2900 Set BOS flag in packet structure to fix 'jump depends
2901 on unitialized value' errors in valgrind; various minor
2904 2006-09-30 Jan Schmidt <thaytan@mad.scientist.com>
2906 * gst/playback/gstdecodebin.c: (close_pad_link):
2907 Fix typo in a debug statement.
2909 * gst/playback/gstplaybasebin.c: (probe_triggered),
2910 (new_decoded_pad_full), (new_decoded_pad), (subs_new_decoded_pad),
2911 (gen_source_element), (source_new_pad), (analyse_source),
2913 When handling no_more_pads in new_decoded_pad, make sure to treat
2914 subtitle pads correctly. Fixes playback with subtitle files.
2916 Move a recurring message to LOG level.
2918 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
2919 The maximum value for the Xv colorkey on this Radeon is 0xFFFFFFFF,
2920 which ends up as -1 when cast to an int. Make the logic handle the
2921 max value as an unsigned mask and only change the colorkey when it's
2922 a value we recognise.
2924 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
2926 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2927 Removed empty * between paragraphs
2929 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
2931 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2932 * gst-libs/gst/rtp/README:
2933 Moved some documentation into .c file
2935 2006-09-29 Wim Taymans <wim@fluendo.com>
2937 * gst/playback/gstdecodebin.c: (no_more_pads):
2940 2006-09-29 Wim Taymans <wim@fluendo.com>
2942 * gst/playback/gstdecodebin.c: (new_caps):
2945 * gst/playback/gstplaybin.c:
2948 2006-09-29 Tim-Philipp Müller <tim at centricular dot net>
2950 * tests/check/Makefile.am:
2951 Re-enable cddabasesrc test to see if it works again
2954 2006-09-29 Wim Taymans <wim@fluendo.com>
2956 * gst/playback/gstplaybasebin.c: (setup_subtitle),
2957 (gen_source_element):
2958 Handle invalid URIs a bit more gracefully.
2960 2006-09-29 Tim-Philipp Müller <tim at centricular dot net>
2962 * tests/check/pipelines/oggmux.c:
2963 Remove obsolete comment.
2965 2006-09-29 Michael Smith <msmith@fluendo.com>
2967 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
2968 (gst_ogg_mux_release_pad), (gst_ogg_mux_push_buffer),
2969 (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
2970 (gst_ogg_mux_send_headers), (gst_ogg_mux_process_best_pad),
2971 (gst_ogg_mux_collected):
2972 Commit patch from James "Doc" Livingston, adds proper EOS handling
2973 in oggmux. GStreamer can, for the first time ever, create a valid
2976 * tests/check/pipelines/oggmux.c: (check_chain_final_state),
2978 Reenable tests now that they pass.
2980 2006-09-29 Wim Taymans <wim@fluendo.com>
2982 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
2983 Stop reading commands when EOF (we read 0) as well.
2985 2006-09-28 Wim Taymans <wim@fluendo.com>
2987 * gst/playback/gstdecodebin.c: (dynamic_create), (dynamic_free),
2988 (close_pad_link), (dynamic_remove), (no_more_pads), (new_caps),
2989 (find_dynamic), (unlinked), (close_link):
2990 Implement delayed caps linking needed for element with a lot of
2991 different caps on the src pads that get fixed at runtime.
2992 Improve management of dynamic elements.
2994 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
2995 (group_destroy), (group_commit), (check_queue), (queue_overrun),
2996 (gen_preroll_element), (remove_groups), (unknown_type),
2997 (add_element_stream), (no_more_pads_full), (no_more_pads),
2998 (sub_no_more_pads), (source_no_more_pads), (preroll_unlinked),
2999 (new_decoded_pad), (setup_subtitle), (array_has_value),
3000 (gen_source_element), (source_new_pad), (has_all_raw_caps),
3001 (analyse_source), (remove_decoders), (make_decoder),
3002 (remove_source), (setup_source), (finish_source), (prepare_output),
3003 (gst_play_base_bin_change_state):
3004 * gst/playback/gstplaybasebin.h:
3005 Use more _CAST instead of full type checking casts.
3006 Small cleanups, plug some leaks.
3007 Handle dynamic sources.
3008 Add some helper functions to create lists of strings used for
3009 blacklisting and other stuff.
3010 Refactor some code dealing with analysing the source.
3011 Re-enable sources without pads (like cd:// or other selfcontained
3014 2006-09-28 Wim Taymans <wim@fluendo.com>
3016 * gst-libs/gst/audio/gstbaseaudiosink.c:
3017 (gst_base_audio_sink_render):
3018 When we have a timestamp, we can still perform clipping.
3019 When we have no clock, we must play the sample ASAP.
3021 2006-09-28 Wim Taymans <wim@fluendo.com>
3023 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
3024 Set caps on outgoing buffers.
3026 * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
3027 (gst_video_rate_event), (gst_video_rate_chain):
3028 * gst/videorate/gstvideorate.h:
3029 Fix videorate some more. Fixes #357977
3031 2006-09-28 Tim-Philipp Müller <tim at centricular dot net>
3033 * tests/check/elements/adder.c: (adder_suite):
3034 Don't set timeout to 6 seconds when we're running
3035 in valgrind ... (and how is 6 seconds longer than
3036 the default anyway?)
3038 2006-09-28 Wim Taymans <wim@fluendo.com>
3040 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
3041 (gst_audio_rate_sink_event), (gst_audio_rate_convert),
3042 (gst_audio_rate_convert_segments), (gst_audio_rate_chain):
3043 Keep sink and src segment to keep track of time and support more
3045 Fix bogus next_offset and run_time calculation, don't understand how
3046 this could have worked before. Fixes #357976.
3047 Remove some unneeded vars.
3049 2006-09-28 Tim-Philipp Müller <tim at centricular dot net>
3051 * gst/playback/gstplaybin.c: (remove_sinks):
3052 Only remove visualisation from visbin if there is a visbin (or:
3053 don't throw warnings when closing totem without playing a file).
3055 2006-09-27 Wim Taymans <wim@fluendo.com>
3057 * gst-libs/gst/audio/gstbaseaudiosink.c:
3058 (gst_base_audio_sink_render):
3059 Add some more info in a WARNING.
3061 * gst-libs/gst/audio/gstbaseaudiosrc.c:
3062 (gst_base_audio_src_create):
3063 Handle PAUSE in create function, use new -core addition to
3064 wait for playing. Fixes pausing and resuming capture from an
3067 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
3068 (gst_ring_buffer_read):
3070 Caller supports interrupted reads now.
3072 2006-09-27 Tim-Philipp Müller <tim at centricular dot net>
3074 * tests/check/Makefile.am:
3075 Another attempt to make the gen64 buildbot happy.
3077 2006-09-27 Stefan Kost <ensonic@users.sf.net>
3079 Patch by: Jonathan Matthew <jonathan@kaolin.wh9.net>
3081 * ext/libvisual/visual.c: (gst_visual_clear_actors),
3082 (gst_visual_chain), (gst_visual_change_state):
3083 Libvisual plugin was not passing audio data to libvisual 0.4.0
3084 correctly. Fixes #357800
3086 2006-09-27 Tim-Philipp Müller <tim at centricular dot net>
3088 * tests/check/pipelines/simple-launch-lines.c: (run_pipeline):
3089 Add timeout to _get_state() so we see which pipeline it is
3090 that causes trouble on the gen64 build bot.
3092 2006-09-27 Wim Taymans <wim@fluendo.com>
3094 * gst-libs/gst/rtp/gstbasertpdepayload.c:
3095 (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
3096 (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
3097 (gst_base_rtp_depayload_set_gst_timestamp):
3098 the source pad always uses fixed caps.
3100 2006-09-27 Wim Taymans <wim@fluendo.com>
3102 * docs/libs/gst-plugins-base-libs-docs.sgml:
3103 * docs/libs/gst-plugins-base-libs-sections.txt:
3104 * gst-libs/gst/audio/gstaudioclock.c:
3105 * gst-libs/gst/audio/gstaudioclock.h:
3106 * gst-libs/gst/audio/gstaudiosink.c:
3107 * gst-libs/gst/audio/gstaudiosink.h:
3108 * gst-libs/gst/audio/gstaudiosrc.c:
3109 * gst-libs/gst/audio/gstbaseaudiosink.c:
3110 (gst_base_audio_sink_render):
3111 * gst-libs/gst/audio/gstbaseaudiosink.h:
3112 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init):
3113 * gst-libs/gst/audio/gstbaseaudiosrc.h:
3114 * gst-libs/gst/audio/gstringbuffer.h:
3115 Added docs for the audio libs.
3117 2006-09-27 Tim-Philipp Müller <tim at centricular dot net>
3119 * tests/check/Makefile.am:
3120 Temporarily disable test that fails on the bots for unknown reasons.
3122 2006-09-26 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
3124 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
3125 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
3126 Moved AudioCodecType into priv
3127 Renamed all gst_basertpaudiopayload to gst_base_rtp_audio_payload prefixes
3129 2006-09-25 Wim Taymans <wim@fluendo.com>
3131 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
3132 (add_fakesink), (remove_fakesink), (pad_probe), (close_pad_link),
3133 (is_demuxer_element), (try_to_link_1), (get_our_ghost_pad),
3135 Cleanups and small leak fixes.
3136 Added Depayloaders to valid list of autopluggable elements.
3138 2006-09-25 Wim Taymans <wim@fluendo.com>
3140 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
3141 (gst_play_bin_vis_blocked), (gst_play_bin_set_property),
3142 (gen_video_element), (gen_text_element), (gen_audio_element),
3143 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
3144 (gst_play_bin_set_clock_func), (gst_play_bin_change_state):
3145 Detect NO_PREROLL state change returns and disable clock distribution to
3146 the sinks so that sync is disabled.
3147 Avoid some type checking and do simple casts instead.
3148 Small cleanups, fix some FIXMEs.
3149 Be more robust when linking user specified elements, catch an report
3150 errors. Fixes #357404.
3151 Fix some leaks in the error paths.
3153 2006-09-25 Stefan Kost <ensonic@users.sf.net>
3156 ChangeLog surgery for missing bug-number
3158 2006-09-25 Tim-Philipp Müller <tim at centricular dot net>
3160 Patch by: Peter Kjellerstedt <pkj at axis com>
3162 * gst/playback/test.c:
3163 Fix compilation with uClibc and -Werror (#357591).
3165 2006-09-25 Tim-Philipp Müller <tim at centricular dot net>
3167 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
3168 Parse dates that are followed by a time as well (#357532).
3170 * tests/check/libs/tag.c: (test_vorbis_tags):
3171 Add unit test for this.
3173 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3175 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
3176 (gst_audio_convert_transform_caps):
3177 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor):
3178 * gst/videotestsrc/videotestsrc.h:
3179 A few array const-ifications.
3181 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3183 * tests/check/Makefile.am:
3184 See if this makes the build bots happy.
3186 * tests/check/libs/cddabasesrc.c:
3189 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3191 Patch by: Young-Ho Cha <ganadist at chollian dot net>
3193 * gst/subparse/samiparse.c: (handle_start_font),
3194 (fix_invalid_entities):
3195 More case-insensitivity for certain tags; recognise entities with
3196 decimal codes as special entities as well (#357330).
3198 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3200 * gst-libs/gst/Makefile.am:
3201 Need to build tag directory before cdda.
3203 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3205 * docs/libs/gst-plugins-base-libs-sections.txt:
3206 * gst-libs/gst/cdda/Makefile.am:
3207 * gst-libs/gst/cdda/gstcddabasesrc.c:
3208 (gst_cdda_base_src_base_init):
3209 * gst-libs/gst/cdda/gstcddabasesrc.h:
3210 * gst-libs/gst/tag/tag.h:
3211 * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal),
3212 (gst_tag_register_musicbrainz_tags):
3213 Move GST_TAG_CDDA_* tags into libgsttag and make libgstcddabasesrc
3214 depend on libgsttag. This is required so we can extract/read tags like
3215 DISCID without depending on libgstcddabasesrc (which used to register
3218 * gst-libs/gst/tag/gstvorbistag.c:
3219 Add vorbiscomment mapping for CDDB_DISCID and MUSICBRAINZ_DISCID
3220 tags (also see #347848).
3222 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1):
3223 Log vorbis comments we are actually writing. Const-ify array.
3225 2006-09-23 Wim Taymans <wim@fluendo.com>
3227 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
3228 Improve buffering a bit by avoiding a deadlock because we cannot assume
3229 the underrun is always called.
3231 2006-09-23 Wim Taymans <wim@fluendo.com>
3233 Patch by: Young-Ho Cha <ganadist at chollian dot net>
3235 * gst-libs/gst/riff/riff-ids.h:
3236 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3237 (gst_riff_create_audio_template_caps):
3238 Added MPEG-4 AAC and id and caps. Fixes #357289
3239 Added WMA9 Lossless id.
3241 2006-09-22 Tim-Philipp Müller <tim at centricular dot net>
3243 * ext/gnomevfs/gstgnomevfssrc.c:
3244 Fix misleading docs addition.
3246 * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3247 Get rid of compiler warning the right way.
3249 2006-09-22 Wim Taymans <wim@fluendo.com>
3251 * gst-libs/gst/rtp/gstbasertpdepayload.c:
3252 (gst_base_rtp_depayload_finalize),
3253 (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
3254 (gst_base_rtp_depayload_push_full),
3255 (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_push),
3256 (gst_base_rtp_depayload_process),
3257 (gst_base_rtp_depayload_set_gst_timestamp),
3258 (gst_base_rtp_depayload_queue_release):
3259 * gst-libs/gst/rtp/gstbasertpdepayload.h:
3262 Refactored the process method and added methods to push from the process
3264 Use _scale functions.
3265 API: gst_base_rtp_depayload_push_ts
3266 API: gst_base_rtp_depayload_push
3268 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
3269 timestamps are uint.
3271 2006-09-22 Stefan Kost <ensonic@users.sf.net>
3273 * gst-libs/gst/interfaces/xoverlay.c:
3274 Remove unused statement from doc example.
3276 2006-09-21 Stefan Kost <ensonic@users.sf.net>
3278 * gst-libs/gst/interfaces/videoorientation.c:
3279 (gst_video_orientation_iface_init),
3280 (gst_video_orientation_get_hflip),
3281 (gst_video_orientation_get_vflip),
3282 (gst_video_orientation_get_hcenter),
3283 (gst_video_orientation_get_vcenter),
3284 (gst_video_orientation_set_hflip),
3285 (gst_video_orientation_set_vflip),
3286 (gst_video_orientation_set_hcenter),
3287 (gst_video_orientation_set_vcenter):
3288 Add since tags to new API docs, ChangeLog surgery (forgot API keyword
3291 2006-09-21 Tim-Philipp Müller <tim at centricular dot net>
3293 * tests/check/Makefile.am:
3294 * tests/check/elements/.cvsignore:
3295 * tests/check/elements/ffmpegcolorspace.c: (rgb_format_to_caps),
3296 (create_rgb_conversions), (rgb_conversion_free),
3297 (right_shift_colour), (fix_expected_colour), (check_rgb_buf),
3298 (got_buf_cb), (GST_START_TEST), (ffmpegcolorspace_suite):
3299 Add unit test for ffmpegcolorspace (RGB <=> RGB only so far),
3300 but disable for now since it doesn't pass (something wrong with
3303 2006-09-21 Wim Taymans <wim@fluendo.com>
3305 * gst/playback/gstplaybasebin.c: (group_commit),
3306 (queue_deadlock_check), (queue_overrun), (queue_threshold_reached),
3307 (queue_out_of_data), (gen_preroll_element),
3308 (preroll_remove_overrun), (probe_triggered):
3309 Refactor handling of overrun detection.
3310 Separate handling of group completion and deadlock detection when doing
3311 network buffering. This should fix some deadlocks that were not detected
3312 because the group was completed.
3313 Add more comments, improve debugging.
3315 2006-09-21 Wim Taymans <wim@fluendo.com>
3317 * tests/check/elements/gdpdepay.c: (GST_START_TEST):
3318 * tests/check/libs/audio.c:
3319 Some more compilation fixes.
3321 2006-09-21 Wim Taymans <wim@fluendo.com>
3323 * gst-libs/gst/audio/gstringbuffer.c:
3324 (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
3325 (gst_ring_buffer_read):
3326 Early morning compilation fix.
3328 2006-09-20 Wim Taymans <wim@fluendo.com>
3330 * tests/check/elements/gdpdepay.c: (GST_START_TEST):
3331 * tests/check/elements/multifdsink.c: (GST_START_TEST):
3332 * tests/check/elements/videorate.c: (GST_START_TEST):
3333 * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
3334 * tests/check/pipelines/oggmux.c: (eos_buffer_probe):
3337 2006-09-20 Stefan Kost <ensonic@users.sf.net>
3339 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3340 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
3341 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
3342 Handcrafted merge to help CVS understanding what I changed and what
3345 2006-09-20 Stefan Kost <ensonic@users.sf.net>
3347 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3348 (gst_xvimagesink_get_times):
3349 change colorkey behaviour back according to #354773 comment 6/7
3351 2006-09-19 Michael Smith <msmith@fluendo.com>
3353 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
3354 (gst_multi_fd_sink_class_init), (get_buffers_max), (find_limits),
3355 (gst_multi_fd_sink_recover_client),
3356 (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_set_property),
3357 (gst_multi_fd_sink_get_property):
3358 * gst/tcp/gstmultifdsink.h:
3359 Implement stubbed out properties unit-type, units-soft-max,
3360 units-max, to allow specifying maximum sizes in units other than
3364 2006-09-19 Wim Taymans <wim@fluendo.com>
3366 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3367 (gst_riff_create_audio_template_caps):
3368 Reorder the audio formats a bit for clarity.
3369 Detect and create caps for MSGSM and MSN (WAV49).
3372 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3373 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
3374 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
3375 Small cleanups, move error handling out of normal flow for clarity.
3377 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3379 * docs/libs/gst-plugins-base-libs-docs.sgml:
3380 * docs/libs/gst-plugins-base-libs.types:
3381 * gst-libs/gst/interfaces/Makefile.am:
3382 * gst-libs/gst/interfaces/videoorientation.c:
3383 (gst_video_orientation_get_type),
3384 (gst_video_orientation_iface_init),
3385 (gst_video_orientation_get_hflip),
3386 (gst_video_orientation_get_vflip),
3387 (gst_video_orientation_get_hcenter),
3388 (gst_video_orientation_get_vcenter),
3389 (gst_video_orientation_set_hflip),
3390 (gst_video_orientation_set_vflip),
3391 (gst_video_orientation_set_hcenter),
3392 (gst_video_orientation_set_vcenter):
3393 * gst-libs/gst/interfaces/videoorientation.h:
3394 API: Add new interface to control video orientation (fixes #354908)
3396 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3398 * gst/videotestsrc/gstvideotestsrc.c:
3399 Use G_UNLIKELY in _create and log one more detail.
3401 (gst_video_test_src_get_times), (gst_video_test_src_create):
3402 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
3403 Use gst_util_uint64_scale_int in _get_times().
3405 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3407 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
3408 Give better warning message (add object and detail).
3410 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3412 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3413 (gst_xvimagesink_get_times):
3414 xvimage assumed that XV_COLORKEY can be set in RGB888 format (fixes
3415 #354773), use gst_util_uint64_scale_int in _get_times()
3417 2006-09-18 Michael Smith <msmith@fluendo.com>
3419 * ext/ogg/gstoggmux.c: (gst_ogg_mux_push_buffer):
3420 Timestamps are unsigned; comparision against GST_CLOCK_TIME_NONE was
3421 always true, leading to dropping all timestamps.
3423 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3425 * ext/libvisual/visual.c: (gst_vis_src_negotiate),
3426 (gst_visual_chain), (gst_visual_change_state):
3427 update to work also with libvisual 0.4 API, fix double unref (#355914)
3429 * tools/gst-launch-ext.1.in:
3430 * tools/gst-visualise.1.in:
3431 remove references to old man-pages
3433 * tests/examples/seek/seek.c: (main):
3434 add real meadi-buttons, add tool-tips for the seek-options, arrange
3435 seek options in a table
3437 2006-09-18 Michael Smith <msmith@fluendo.com>
3439 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear),
3440 (gst_ogg_mux_push_buffer):
3441 Don't generate out-of-order timestamps from oggmux, instead clamp
3442 output timestamps to be >= the previously output ts.
3445 2006-09-18 Michael Smith <msmith@fluendo.com>
3447 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
3448 (gst_multi_fd_sink_class_init):
3449 Updates, fixes, and typo corrections for multifdsink. No functional
3452 2006-09-17 Michael Smith <msmith@fluendo.com>
3454 * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find):
3455 Don't crash on truncated files - check that we got an 8 byte buffer
3456 before trying to memcmp it.
3458 2006-09-17 Tim-Philipp Müller <tim at centricular dot net>
3460 * gst/playback/gstplaybasebin.c: (get_active_source):
3461 Make stream-switching appear instant to the application
3462 (ie. make sure that a g_object_get on 'current-foo' returns
3463 the stream previously set with g_object_set(). Totem needs
3464 this to update stream-related meta-info (like audio-codec)
3465 correctly when switching streams.
3467 2006-09-17 Tim-Philipp Müller <tim at centricular dot net>
3469 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer),
3470 (gst_alsa_mixer_ensure_track_list):
3471 Try harder to guess which mixer track is the master mixer
3472 track (instead of just taking the first one that has a pvolume).
3475 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3477 reviewed by: <delete if not using a buddy>
3479 * gst-libs/gst/audio/audio.h:
3480 * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
3482 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3484 * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
3485 (gst_audio_convert_transform_caps):
3486 Get structure-name just once.
3488 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3490 * tests/check/elements/audioresample.c: (GST_START_TEST):
3491 * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3492 * tests/check/elements/volume.c: (GST_START_TEST):
3493 * tests/check/elements/vorbisdec.c: (GST_START_TEST):
3494 * tests/check/pipelines/oggmux.c: (validate_ogg_page), (eos_watch),
3495 (test_pipeline), (GST_START_TEST):
3496 * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
3497 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
3498 Fix big batch of compiler warnings.
3500 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3502 * ext/gnomevfs/gstgnomevfssrc.c:
3503 Add docs about icydemux usage in connection with gnomevfssrc
3505 * ext/libvisual/visual.c:
3506 * ext/ogg/gstoggaviparse.c:
3507 * ext/ogg/gstoggdemux.c:
3508 * ext/ogg/gstoggmux.c:
3509 * ext/ogg/gstoggparse.c:
3510 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
3511 * gst-libs/gst/audio/gstaudiosink.c:
3512 * gst-libs/gst/audio/gstaudiosrc.c:
3513 * gst/audiorate/gstaudiorate.c:
3514 More G_OBJECT macro fixing.
3516 * gst/audiotestsrc/gstaudiotestsrc.h:
3517 Fix wrong info in header due to copy & paste
3519 2006-09-15 Wim Taymans <wim@fluendo.com>
3521 * gst-libs/gst/audio/gstbaseaudiosink.c:
3522 (gst_base_audio_sink_get_time), (gst_base_audio_sink_callback):
3523 * gst-libs/gst/audio/gstbaseaudiosrc.c:
3524 (gst_base_audio_src_get_time), (gst_base_audio_src_fixate),
3525 (gst_base_audio_src_get_times), (gst_base_audio_src_get_offset),
3526 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
3527 Do the delay calculation in the source/sink base classes as this is
3528 specific for the capture/playback mode.
3529 Try to fixate a bit better, like round depth up to a multiple of 8
3531 Handle underruns correctly by marking DISCONT on buffers and adjusting
3532 timestamps to handle the gap.
3533 Set offset/offset_end correctly on buffers.
3535 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_pause),
3536 (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
3537 (gst_ring_buffer_read):
3538 Remove resync and underrun recovery from the ringbuffer.
3539 Fix ringbuffer read code on under/overrun.
3541 2006-09-15 Wim Taymans <wim@fluendo.com>
3543 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
3544 (gst_play_base_bin_init), (fill_buffer), (check_queue),
3545 (queue_threshold_reached), (gst_play_base_bin_set_property),
3546 (gst_play_base_bin_get_property):
3547 * gst/playback/gstplaybasebin.h:
3548 Don't use a 0 low watermark when buffering, it is catching starvation
3549 way too late. Instead, use a 3 second queue with 30 and 95
3550 percent low/high watermarks.
3551 Added queue-min-threshold property to configure low watermark.
3552 Use new _buffering message API.
3553 Make queue_threshold variable big enough to store a uint64 time value.
3554 API: playbin::queue-min-threshold property.
3556 2006-09-15 Wim Taymans <wim@fluendo.com>
3559 We require 0.10.10.1 now because of _wait_preroll().
3561 * gst-libs/gst/audio/gstbaseaudiosink.c:
3562 (gst_base_audio_sink_render):
3563 Use gst_base_sink_wait_preroll().
3565 2006-09-15 Wim Taymans <wim@fluendo.com>
3567 * ext/alsa/gstalsasink.c: (xrun_recovery), (gst_alsasink_write):
3568 * ext/alsa/gstalsasrc.c: (xrun_recovery), (gst_alsasrc_read):
3569 Use DEBUG_OBJECT more.
3571 === release 0.10.10 ===
3573 2006-09-07 Thomas Vander Stichele <thomas at apestaart dot org>
3575 patch by: Michael Smith <msmith at fluendo dot com>
3577 * gst/tcp/gstmultifdsink.c: (is_sync_frame),
3578 (gst_multi_fd_sink_client_queue_buffer),
3579 (gst_multi_fd_sink_new_client):
3580 * tests/check/elements/multifdsink.c: (GST_START_TEST),
3581 (multifdsink_suite):
3582 Fix implementation of sync-method 'next-keyframe'
3585 2006-09-07 Thomas Vander Stichele <thomas at apestaart dot org>
3587 patch by: Wim Taymans <wim at fluendo dot com>
3589 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
3590 This patch removes the RANDOM flag that was incorrectly introduced with
3591 revision 1.91. Fixes #354590
3593 2006-09-05 Tim-Philipp Müller <tim at centricular dot net>
3595 * tests/check/Makefile.am:
3596 Random variation in Makefile line to see if it makes the
3597 gen64-base-full bot any happier.
3599 2006-09-04 Tim-Philipp Müller <tim at centricular dot net>
3601 * tests/check/pipelines/oggmux.c: (oggmux_suite):
3602 Disable test that fails at the moment (killed after timeout).
3604 2006-09-04 Tim-Philipp Müller <tim at centricular dot net>
3606 Patch by: James Livingston <doclivingston at gmail.com>
3608 * tests/check/Makefile.am:
3609 * tests/check/pipelines/.cvsignore:
3610 * tests/check/pipelines/oggmux.c: (get_page_codec),
3611 (check_chain_final_state), (fail_if_audio), (validate_ogg_page),
3612 (eos_buffer_probe), (start_pipeline), (stop_pipeline), (eos_watch),
3613 (test_pipeline), (test_vorbis), (test_theora), (test_vorbis_theora),
3614 (test_theora_vorbis), (oggmux_suite):
3615 Add simple unit test for oggmux from #337026 with checking for the
3616 EOS flags disabled for the time being.
3618 2006-09-04 Wim Taymans <wim@fluendo.com>
3620 patch by: Alessandro Dessina <alessandro nnva org>
3622 * ext/ogg/gstoggmux.c:
3623 Add cmml caps to oggmux. Fixes #353912
3625 2006-09-02 Tim-Philipp Müller <tim at centricular dot net>
3627 * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3628 Returning a return value often helps. In this case, we
3629 don't need the return value anyway, so just get rid of it.
3630 Should make build bots much happier.
3632 2006-09-02 Tim-Philipp Müller <tim at centricular dot net>
3634 * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
3635 (paint_get_structure), (gst_video_test_src_get_size),
3636 (gst_video_test_src_smpte), (gst_video_test_src_snow),
3637 (gst_video_test_src_unicolor), (paint_setup_AYUV),
3638 (paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
3639 (paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
3640 * gst/videotestsrc/videotestsrc.h:
3641 Add support for AYUV and the various RGBA formats. Initialise
3642 fields of paintinfo structs allocated on the stack.
3644 * tests/check/elements/videotestsrc.c: (right_shift_colour),
3645 (fix_expected_colour), (check_rgb_buf), (got_buf_cb),
3646 (check_rgb_buf), (videotestsrc_suite):
3647 Add unit tests for videotestsrc's RGB output.
3649 2006-09-01 Tim-Philipp Müller <tim at centricular dot net>
3651 * gst/videotestsrc/gstvideotestsrc.c:
3652 (gst_video_test_src_pattern_get_type),
3653 (gst_video_test_src_set_pattern):
3654 * gst/videotestsrc/gstvideotestsrc.h:
3655 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
3656 (gst_video_test_src_black), (gst_video_test_src_white),
3657 (gst_video_test_src_red), (gst_video_test_src_green),
3658 (gst_video_test_src_blue):
3659 * gst/videotestsrc/videotestsrc.h:
3660 Add more uni-colour patterns ("white", "red", "green", and "blue").
3662 2006-09-01 Tim-Philipp Müller <tim at centricular dot net>
3664 * gst/videotestsrc/videotestsrc.c: (paint_setup_YVYU):
3665 Fix stride for YVYU, should be word-aligned (#353658).
3667 2006-08-31 Tim-Philipp Müller <tim at centricular dot net>
3669 * gst/adder/gstadder.c: (gst_adder_src_event):
3672 2006-08-31 Edward Hervey <edward@fluendo.com>
3674 * gst/adder/gstadder.c: (forward_event_func),
3675 (gst_adder_src_event), (gst_adder_collected),
3676 (gst_adder_change_state):
3677 * gst/adder/gstadder.h:
3678 Remember the start position asked in the incoming seeks, so we can
3679 output GST_EVENT_NEW_SEGMENT with a correct position value (instead
3680 of assuming it will always be 0).
3682 2006-08-31 Edward Hervey <edward@fluendo.com>
3684 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
3685 (gst_ogg_demux_finalize), (gst_ogg_demux_perform_seek),
3686 (gst_ogg_demux_loop):
3687 Send the GST_EVENT_NEW_SEGMENT from the streaming thread.
3689 2006-08-30 Tim-Philipp Müller <tim at centricular dot net>
3691 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3692 (gst_ffmpegcsp_get_unit_size):
3693 Return FALSE instead of returning a random false unit
3694 size when the format isn't known/supported (even if
3695 this shouldn't happen under normal circumstances).
3697 2006-08-29 Wim Taymans <wim@fluendo.com>
3699 Patch by: Tim-Philipp Müller <tim at centricular dot net>
3701 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create),
3702 (gst_gnome_vfs_src_start):
3703 Try harder to get the size from a uri by using _info_uri() when
3704 _info_from_handle() does not give us enough info.
3705 Also follow symlinks when getting the size.
3706 Partially Fixes #332864.
3708 2006-08-29 Tim-Philipp Müller <tim at centricular dot net>
3710 Patch by: Viktor Peters <viktor dot peters at gmail dot com>
3712 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
3713 (gst_alsa_mixer_update), (gst_alsa_mixer_get_volume),
3714 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
3715 (gst_alsa_mixer_set_record):
3716 * ext/alsa/gstalsamixertrack.c:
3717 (gst_alsa_mixer_track_update_alsa_capabilities),
3718 (alsa_track_has_cap), (gst_alsa_mixer_track_new),
3719 (gst_alsa_mixer_track_update):
3720 * ext/alsa/gstalsamixertrack.h:
3721 Improve and fix mixer track handling, in particular better handling
3722 of alsa's pvolume/pswitch/cvolume/cswitch capabilities; create
3723 separate track objects for tracks that have both capture and playback
3724 volume (and label them differently as well so they're not mistakenly
3725 assumed to be duplicates); classify mixer tracks that only affect
3726 the audible volume of something (rather than the capture volume)
3727 as playback tracks. Redefine/fix meaning of RECORD and MUTE flags
3728 for capture tracks to correspond to alsa-pswitch alsa-cswitch
3729 (following the meaning documented in the mixer interface header
3730 file); add support for alsa's exclusive cswitch groups; update/sync
3731 state/flags better if mixer settings are changed by another
3732 application. Fixes #336075.
3734 2006-08-29 Tim-Philipp Müller <tim at centricular dot net>
3736 * gst/playback/gstplaybin.c:
3737 Improve docs: add section about BUFFERING messages sent by playbin.
3739 2006-08-29 Michael Smith <msmith@fluendo.com>
3741 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_push_buffer),
3742 (gst_vorbis_enc_buffer_check_discontinuous),
3743 (gst_vorbis_enc_chain):
3744 Ignore explicit DISCONT marked on buffers (which is often spurious,
3745 particularly when using multiple segments), in favour of solely
3746 using the timestamps/durations.
3748 2006-08-29 Edward Hervey <edward@fluendo.com>
3750 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
3751 Don't rely on incoming buffers offset anymore, since it is completely
3752 broken when using multiple segments.
3753 Instead convert the incoming buffers timestamp to running time, and
3754 then convert that value to the offsets.
3755 Also inform GstSegment of the last outputted stop position, which is
3756 needed if we received several segments with an unknown stop value.
3758 2006-08-29 Thomas Vander Stichele <thomas at apestaart dot org>
3760 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
3761 fix buffer unreffing on a header push failure
3763 2006-08-28 Wim Taymans <wim@fluendo.com>
3765 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_sink_event),
3766 (gst_audio_rate_chain):
3767 Make the metadata of the buffer writable before changing its
3770 2006-08-28 Wim Taymans <wim@fluendo.com>
3772 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
3773 (gst_audio_rate_setcaps), (gst_audio_rate_init),
3774 (gst_audio_rate_sink_event), (gst_audio_rate_src_event),
3775 (gst_audio_rate_chain), (gst_audio_rate_change_state):
3776 Fix audiorate some more.
3777 Reset and resync counters on flush and READY.
3778 Handle the DISCONT flag correctly.
3779 Use GstSegment to track position.
3780 Fail when not negotiated.
3783 2006-08-25 Michael Smith <msmith@fluendo.com>
3785 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3787 Remove accidently included debug line.
3789 2006-08-25 Wim Taymans <wim@fluendo.com>
3791 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3793 If a buffer is received with no caps, make the buffer metadata
3794 writable and set the caps, making sure that we don't screw up the
3797 2006-08-25 Michael Smith <msmith@fluendo.com>
3799 * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset),
3800 (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain):
3801 Fix memory leaks and misleading debug messages, add a couple of
3804 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats),
3805 (gst_multi_fd_sink_render):
3806 Do not use gst_buffer_make_writable() in a basesink render method,
3807 as it may incorrectly unref the buffer. Instead, use convoluted
3808 dance to avoid copying the buffer except when we need to.
3810 2006-08-25 Michael Smith <msmith@fluendo.com>
3812 * ext/vorbis/vorbisenc.c:
3813 (gst_vorbis_enc_buffer_check_discontinuous):
3814 Allow very small discontinuities in the timestamps. These we can't
3815 do anything useful with anyway (because vorbis's timestamps have
3816 only sample granularity), and are commonly produced by elements with
3817 minor bugs. Allow up to 1/2 a sample out.
3820 2006-08-24 Wim Taymans <wim@fluendo.com>
3822 * tests/examples/seek/seek.c: (seek_cb), (start_seek), (stop_seek),
3823 (play_scrub_toggle_cb), (main):
3824 Add a checkbox to enable play scrubbing. Makes it possible to disable
3827 2006-08-23 Stefan Kost <ensonic@users.sf.net>
3829 * tests/check/elements/.cvsignore:
3832 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
3834 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
3835 (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init),
3836 (gst_ogm_parse_class_init), (gst_ogm_parse_dispose),
3837 (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
3838 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
3839 (gst_ogm_parse_stream_header), (gst_ogm_parse_comment_packet),
3840 (gst_ogm_text_parse_strip_trailing_zeroes),
3841 (gst_ogm_parse_data_packet), (gst_ogm_parse_chain),
3842 (gst_ogm_parse_sink_event), (gst_ogm_parse_change_state):
3843 Refactor ogm parse, do better input checking, misc. clean-ups.
3844 Cache incoming events and push them once the source pad has
3845 been created. Don't pass unterminated strings to sscanf().
3846 Strip trailing zeroes from subtitle text output, since they
3847 are not valid UTF-8. Don't push vorbiscomment packets on
3848 the subtitle text pad. Output perfect streams if possible.
3850 2006-08-23 Wim Taymans <wim@fluendo.com>
3852 * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
3853 Waits for tasks to settle down so that we clean up correctly for
3856 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
3858 * tests/check/libs/tag.c: (GST_START_TEST), (taglists_are_equal):
3859 Unit test fixes: \377 is more likely to fit into 8 bits than \777;
3860 actually return return value in taglists_are_equal.
3862 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
3864 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
3865 Fix crash due to broken bitstream parsing on x86-64: can't make
3866 any assumptions about sizeof(struct) due to alignment/packing
3867 differences on different architectures. Fixes #351790.
3869 2006-08-22 Wim Taymans <wim@fluendo.com>
3871 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
3872 (gst_riff_parse_chunk), (gst_riff_parse_file_header),
3873 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
3874 (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
3875 (gst_riff_parse_info):
3876 Protect public functions against bad input.
3880 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
3882 * gst-libs/gst/riff/riff-ids.h:
3883 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
3884 Add voxware audio IDs (even if we can't play it) (#351795).
3886 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
3888 * gst-libs/gst/riff/riff-media.c:
3889 (gst_riff_create_video_template_caps),
3890 (gst_riff_create_audio_template_caps),
3891 (gst_riff_create_iavs_template_caps):
3892 Const-ify some arrays and use G_N_ELEMENTS instead
3893 of wasting oodles of RAM on terminator bits.
3895 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
3897 * gst-libs/gst/tag/gstvorbistag.c:
3898 (gst_tag_list_to_vorbiscomment_buffer):
3899 * tests/check/libs/tag.c: (GST_START_TEST):
3900 And the same for _to_vorbiscomment_buffer(): allow
3901 id_data_len == 0 for speex.
3903 2006-08-21 Thomas Vander Stichele <thomas at apestaart dot org>
3906 * docs/plugins/Makefile.am:
3907 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3908 * docs/plugins/gst-plugins-base-plugins-sections.txt:
3909 * docs/plugins/inspect/plugin-gdp.xml:
3910 * gst/gdp/Makefile.am:
3911 * tests/check/Makefile.am:
3912 Move GDP plugin to -base from -bad. Closes #347783.
3914 2006-08-21 Tim-Philipp Müller <tim at centricular dot net>
3916 * gst-libs/gst/tag/gstvorbistag.c:
3917 (gst_tag_list_from_vorbiscomment_buffer):
3918 Allow id_data_len == 0 (needed for vorbis comments in Speex files).
3919 Also add some checks to make sure we don't memcmp() beyond the end of
3920 vorbiscomment buffer if the ID to check for is larger than the buffer.
3922 * tests/check/libs/tag.c: (GST_START_TEST):
3923 Some more tests for gst_tag_list_from_vorbiscomment_buffer().
3925 2006-08-21 Tim-Philipp Müller <tim at centricular dot net>
3927 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1),
3928 (gst_vorbis_enc_set_metadata):
3929 Use vorbis comment utility functions from libgsttag
3930 instead of re-inventing the wheel (partially fixes #347091).
3932 2006-08-21 Jan Schmidt <thaytan@mad.scientist.com>
3934 * tests/check/elements/audioconvert.c: (GST_START_TEST):
3935 Fix leaks. Wait for state transitions that might happen ASYNC, as well
3938 2006-08-21 Wim Taymans <wim@fluendo.com>
3940 * docs/libs/Makefile.am:
3941 * docs/libs/gst-plugins-base-libs-sections.txt:
3942 * docs/libs/gst-plugins-base-libs.types:
3943 Don't try to GObject scan the netbuffer as it's not a GObject.
3946 * gst-libs/gst/netbuffer/gstnetbuffer.c:
3947 * gst-libs/gst/netbuffer/gstnetbuffer.h:
3948 Document GstNetBuffer.
3950 2006-08-21 Stefan Kost <ensonic@users.sf.net>
3952 * tests/check/elements/audioconvert.c: (GST_START_TEST),
3953 (audioconvert_suite):
3954 Add testcase for caps-size-explosion
3956 2006-08-20 Stefan Kost <ensonic@users.sf.net>
3958 * gst/audioconvert/gstaudioconvert.c:
3959 (gst_audio_convert_get_unit_size), (set_structure_widths):
3960 Lower debug, use g_assert in _get_unit_size
3962 * gst/audioresample/gstaudioresample.c:
3963 (audioresample_get_unit_size):
3964 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3965 (gst_ffmpegcsp_get_unit_size):
3966 * gst/videoscale/gstvideoscale.c: (gst_video_scale_get_unit_size):
3967 use g_assert in _get_unit_size
3969 2006-08-18 Wim Taymans <wim@fluendo.com>
3971 * docs/libs/gst-plugins-base-libs-sections.txt:
3972 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_set_packet_len),
3973 (gst_rtp_buffer_pad_to), (gst_rtp_buffer_get_payload_subbuffer),
3974 (gst_rtp_buffer_get_payload_buffer):
3975 * gst-libs/gst/rtp/gstrtpbuffer.h:
3976 Document GstRTPBuffer.
3977 Added function to efficiently strip payload headers.
3978 API: gst_rtp_buffer_get_payload_subbuffer()
3980 2006-08-17 Tim-Philipp Müller <tim at centricular dot net>
3982 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
3983 (gst_tag_to_vorbis_comments):
3984 Serialise unknown vorbis comments into GST_TAG_EXTENDED_COMMENT
3985 tags and deserialise them properly as well (#347091).
3986 Add some more gtk-doc blurbs and also some g_return_if_fail().
3988 * tests/check/libs/tag.c: (GST_START_TEST),
3989 (back_to_vorbis_comments), (taglists_are_equal), (tag_suite):
3992 2006-08-17 Wim Taymans <wim@fluendo.com>
3994 * ext/ogg/Makefile.am:
3995 * ext/ogg/gstogg.c: (plugin_init):
3996 * ext/ogg/gstoggaviparse.c: (gst_ogg_avi_parse_get_type),
3997 (gst_ogg_avi_parse_base_init), (gst_ogg_avi_parse_class_init),
3998 (gst_ogg_avi_parse_init), (gst_ogg_avi_parse_finalize),
3999 (gst_ogg_avi_parse_setcaps), (gst_ogg_avi_parse_event),
4000 (gst_ogg_avi_parse_push_packet), (gst_ogg_avi_parse_chain),
4001 (gst_ogg_avi_parse_change_state), (gst_ogg_avi_parse_plugin_init):
4002 Added ogg-in-avi parser element. Fixes #140139.
4004 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
4005 Fixed a bug in oggdemux debug code.
4007 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
4008 (gst_riff_create_audio_template_caps):
4009 Recognise Ogg in the AVI extensible wave format.
4011 2006-08-17 Tim-Philipp Müller <tim at centricular dot net>
4013 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
4014 Make buffer durations add up (duration should be next_ts-ts for
4015 perfect streams). Fixes CD ripping to Ogg/Vorbis with vorbisenc
4018 * tests/check/libs/cddabasesrc.c: (gst_cd_foo_src_close),
4019 (test_buffer_timestamps), (cddabasesrc_suite):
4020 Add unit test for the above.
4022 * tests/check/Makefile.am:
4023 Don't know why cddabasesrc test was in VALGRIND_TO_FIX, remove
4024 to see what happens.
4026 2006-08-16 Wim Taymans <wim@fluendo.com>
4028 * ext/alsa/gstalsasink.c: (gst_alsasink_set_property),
4029 (gst_alsasink_open):
4030 * ext/alsa/gstalsasrc.c: (gst_alsasrc_set_property),
4032 Avoid setting and using a NULL device name.
4033 Print more info when we fail to open a device.
4035 2006-08-16 Tim-Philipp Müller <tim at centricular dot net>
4037 * docs/libs/gst-plugins-base-libs-sections.txt:
4038 * gst-libs/gst/tag/tag.h:
4039 * gst-libs/gst/tag/tags.c: (gst_tag_parse_extended_comment):
4040 API: add gst_tag_parse_extended_comment() (#351426).
4042 * tests/check/Makefile.am:
4043 * tests/check/libs/.cvsignore:
4044 * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite), (main):
4045 Add unit test for gst_tag_parse_extended_comment().
4047 2006-08-15 Tim-Philipp Müller <tim at centricular dot net>
4049 * sys/ximage/ximagesink.c: (gst_ximagesink_get_property):
4050 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_property):
4053 2006-08-15 Tim-Philipp Müller <tim at centricular dot net>
4055 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4056 * docs/plugins/gst-plugins-base-plugins-sections.txt:
4057 * docs/plugins/gst-plugins-base-plugins.args:
4058 * gst/playback/gstplaybin.c:
4061 * docs/plugins/inspect/plugin-adder.xml:
4062 * docs/plugins/inspect/plugin-alsa.xml:
4063 * docs/plugins/inspect/plugin-audioconvert.xml:
4064 * docs/plugins/inspect/plugin-audiorate.xml:
4065 * docs/plugins/inspect/plugin-audioresample.xml:
4066 * docs/plugins/inspect/plugin-audiotestsrc.xml:
4067 * docs/plugins/inspect/plugin-cdparanoia.xml:
4068 * docs/plugins/inspect/plugin-decodebin.xml:
4069 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
4070 * docs/plugins/inspect/plugin-gnomevfs.xml:
4071 * docs/plugins/inspect/plugin-ogg.xml:
4072 * docs/plugins/inspect/plugin-pango.xml:
4073 * docs/plugins/inspect/plugin-playbin.xml:
4074 * docs/plugins/inspect/plugin-subparse.xml:
4075 * docs/plugins/inspect/plugin-tcp.xml:
4076 * docs/plugins/inspect/plugin-theora.xml:
4077 * docs/plugins/inspect/plugin-typefindfunctions.xml:
4078 * docs/plugins/inspect/plugin-video4linux.xml:
4079 * docs/plugins/inspect/plugin-videorate.xml:
4080 * docs/plugins/inspect/plugin-videoscale.xml:
4081 * docs/plugins/inspect/plugin-videotestsrc.xml:
4082 * docs/plugins/inspect/plugin-volume.xml:
4083 * docs/plugins/inspect/plugin-vorbis.xml:
4084 * docs/plugins/inspect/plugin-ximagesink.xml:
4085 * docs/plugins/inspect/plugin-xvimagesink.xml:
4086 Update to CVS version.
4088 2006-08-14 Tim-Philipp Müller <tim at centricular dot net>
4090 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
4091 (gst_play_bin_set_property), (gst_play_bin_get_property),
4092 (value_list_append_structure_list),
4093 (gst_play_bin_handle_redirect_message),
4094 (gst_play_bin_handle_message):
4095 API: GstPlayBin::connection-speed
4096 Add "connection-speed" property; re-order redirect messages with
4097 multiple redirect locations depending on the minimum bitrate if
4098 that information is available and a connection speed is set
4101 2006-08-14 Tim-Philipp Müller <tim at centricular dot net>
4103 * gst/playback/gstplaybin.c:
4104 Update max volume to the same value that the volume element uses.
4106 2006-08-14 Wim Taymans <wim@fluendo.com>
4108 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
4111 2006-08-14 Wim Taymans <wim@fluendo.com>
4113 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
4114 (gst_ogg_demux_get_next_page), (gst_ogg_demux_perform_seek),
4115 (gst_ogg_demux_read_chain), (gst_ogg_demux_loop):
4116 Add some more debug info.
4117 Don't crash when a seek failed.
4118 Actually return the result of the seek instead of TRUE.
4119 Ignore multiple BOS pages with the same serial so that we don't create
4120 the same stream multiple times.
4121 Post an error when we fail to do the initial seek.
4123 2006-08-13 Wim Taymans <wim@fluendo.com>
4125 * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
4126 (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats):
4129 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
4130 (gst_alsa_mixer_new):
4131 Remove hack that always set the device to hw:0*.
4132 Properly find the card name for whatever device was configured.
4133 Do some better debugging.
4136 * ext/alsa/gstalsamixerelement.c:
4137 (gst_alsa_mixer_element_set_property),
4138 (gst_alsa_mixer_element_change_state):
4140 Handle setting of a NULL device name better.
4142 2006-08-11 Wim Taymans <wim@fluendo.com>
4144 * gst/adder/gstadder.c:
4145 Don't clip float values. Fixes #350900.
4147 2006-08-11 Andy Wingo <wingo@pobox.com>
4149 * gst/tcp/gsttcp.c: Really fix the build?
4151 * gst/tcp/gsttcp.h: For now, always disable deprecation here --
4154 2006-08-10 Tim-Philipp Müller <tim at centricular dot net>
4156 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes):
4157 Float caps shouldn't have a "signed" field.
4159 2006-08-10 Tim-Philipp Müller <tim at centricular dot net>
4161 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query):
4162 Implement SEEKING query in its most basic form, so that we can
4163 at least check if we're seekable or not (#350655).
4165 2006-08-09 Tim-Philipp Müller <tim at centricular dot net>
4167 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
4168 The checks here are not even close to anything that would
4169 justify MAXIMUM probability, lowering to POSSIBLE until someone
4170 fixes the checks (case at hand: quicktime redirection files
4171 might start with 00 00 01 XX and pass the checks here just
4174 2006-08-08 Tim-Philipp Müller <tim at centricular dot net>
4176 Patch by: Sjoerd Simons <sjoerd at luon net>
4178 * gst/typefind/gsttypefindfunctions.c: (multipart_type_find):
4179 Better detection for multipart/x-mixed-replace: accept leading
4180 whitespaces before the boundary marker as well (as our very own
4181 multipartmux used to produce) (#349068).
4183 2006-08-07 Tim-Philipp Müller <tim at centricular dot net>
4185 Patch by: Young-Ho Cha <ganadist at chollian net>
4187 * gst-libs/gst/riff/riff-ids.h:
4188 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
4189 (gst_riff_create_audio_template_caps):
4190 Detect DTS audio streams (#350157).
4192 2006-08-05 Andy Wingo <wingo@pobox.com>
4194 * ext/theora/gsttheoraparse.h:
4195 * ext/theora/theoraparse.c (gst_theora_parse_class_init)
4196 (theora_parse_dispose, theora_parse_set_property)
4197 (theora_parse_get_property, theora_parse_munge_granulepos)
4198 (theora_parse_push_buffer, theora_parse_change_state):
4199 API: GstTheoraParse::synchronization-points
4200 Add a property 'synchronization-points' to fix badly synchronized oggs.
4202 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4204 * tests/check/Makefile.am:
4205 * tests/check/libs/.cvsignore:
4206 * tests/check/libs/audio.c: (structure_contains_channel_positions),
4207 (fixed_caps_have_channel_positions), (GST_START_TEST),
4208 (audio_suite), (main):
4209 Add a few tests for the channel position stuff in libgstaudio.
4211 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4213 * ext/alsa/gstalsa.c: (caps_add_channel_configuration),
4214 (gst_alsa_detect_channels):
4215 * ext/alsa/gstalsasink.c:
4216 Add support for cards that (only) do more than 8 channels,
4217 like the Delta 44 (#345188).
4219 * gst-libs/gst/audio/multichannel.c:
4220 (gst_audio_check_channel_positions):
4221 * gst-libs/gst/audio/multichannel.h:
4222 API: add GST_AUDIO_CHANNEL_POSITION_NONE, which stands for an
4223 unspecified channel position and cannot be combined with any
4224 of the other audio channel positions; adjust position layout
4225 checks accordingly (#345188).
4227 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4229 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4230 Recognise ancient RealAudio files (see #349779).
4232 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4234 Patch by: Jens Granseuer <jensgr at gmx net>
4236 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4237 Add typefinder for Interplay's MVE format (#348973).
4239 2006-08-02 Wim Taymans <wim@fluendo.com>
4241 Patch by: Marcel Moreaux <marcelm at luon dot net>
4243 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4244 (gst_base_rtp_depayload_add_to_queue):
4245 * gst-libs/gst/rtp/gstbasertpdepayload.h:
4246 Handle RTP sequence number rollover.
4247 Disable jitterbuffer by default.
4249 2006-07-28 Jan Schmidt <thaytan@mad.scientist.com>
4251 * gst/audioresample/gstaudioresample.c: (audioresample_stop),
4252 (audioresample_set_caps):
4253 Don't leak references to the incoming caps. Clean them up when
4256 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
4257 (gst_video_scale_finalize):
4258 Don't leak our temporary pixel buffer.
4260 * tests/check/Makefile.am:
4261 * tests/check/pipelines/simple-launch-lines.c: (run_pipeline),
4262 (GST_START_TEST), (simple_launch_lines_suite):
4264 Fix leaks and re-enable the test for valgrind checking.
4266 2006-07-28 Tim-Philipp Müller <tim at centricular dot net>
4268 Patch by: Sjoerd Simons <sjoerd at luon net>
4270 * gst/typefind/gsttypefindfunctions.c: (multipart_type_find),
4272 Add typefind function for multipart/x-mixed-replace (#348916).
4274 2006-07-28 Wim Taymans <wim@fluendo.com>
4276 * gst/adder/gstadder.c: (gst_adder_setcaps),
4277 (gst_adder_query_duration):
4278 Fix leak in duration query.
4279 Reflow some docs and notes.
4281 2006-07-28 Michael Smith <msmith@fluendo.com>
4283 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST),
4285 Enable Andy's extra vorbisenc test, now that it passes. Also fix one
4288 2006-07-28 Michael Smith <msmith@fluendo.com>
4290 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps),
4291 (gst_vorbis_enc_sink_getcaps), (gst_vorbis_enc_buffer_from_packet),
4292 (gst_vorbis_enc_push_buffer),
4293 (gst_vorbis_enc_buffer_check_discontinuous),
4294 (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
4295 * ext/vorbis/vorbisenc.h:
4296 Handle discontinuities in the input vorbis stream correctly,
4297 so that the output is properly timestamped (and has good granulepos
4298 values). Needs some oggmux fixes too.
4300 2006-07-27 Wim Taymans <wim@fluendo.com>
4302 patch by: Kai Vehmanen <kv2004 eca cx>
4304 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4305 (gst_base_rtp_depayload_chain),
4306 (gst_base_rtp_depayload_handle_sink_event),
4307 (gst_base_rtp_depayload_change_state):
4308 Don't send multiple newsegments with different formats.
4311 2006-07-26 Wim Taymans <wim@fluendo.com>
4313 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4314 (gst_ogg_demux_do_seek), (gst_ogg_demux_read_chain):
4315 Make seeking in ogg more accurate again by doing the more correct
4316 granuletime to stream time conversion.
4318 2006-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
4320 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
4321 (gst_multi_fd_sink_new_client):
4322 debug a little more understandably
4323 do not use goto as a substitute for break, especially if
4324 break is also being used
4326 2006-07-26 Tim-Philipp Müller <tim at centricular dot net>
4328 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
4329 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
4330 Remove GLib-2.6 compatibility cruft.
4332 2006-07-24 Wim Taymans <wim@fluendo.com>
4334 * gst-libs/gst/audio/gstbaseaudiosink.c:
4335 (gst_base_audio_sink_render):
4336 Don't try to align a sample to an unknown value.
4338 2006-07-24 Wim Taymans <wim@fluendo.com>
4340 * gst-libs/gst/audio/gstbaseaudiosink.c:
4341 (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
4342 When the audio clock is slaved to another clock, never try to align
4343 samples but trust the rate interpolation algorithm.
4345 2006-07-24 Wim Taymans <wim@fluendo.com>
4347 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4348 Don't try to calculate silence samples, base class does this much
4351 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4352 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps),
4353 (gst_ring_buffer_acquire):
4354 Calculate silence samples correctly.
4356 * gst-libs/gst/audio/gstringbuffer.h:
4359 2006-07-22 Tim-Philipp Müller <tim at centricular dot net>
4361 * gst/typefind/gsttypefindfunctions.c: (xml_check_first_element):
4362 Limit search for the first markup tag to the first few kB of
4363 the file. If we don't find one there, it's highly unlikely that
4364 this is an XML(-ish) file.
4366 2006-07-21 Andy Wingo <wingo@pobox.com>
4368 * tests/check/pipelines/theoraenc.c (test_discontinuity): Similar
4369 test to the one in vorbisenc. Also commented out.
4371 * tests/check/pipelines/vorbisenc.c:
4372 (test_discontinuity): New test, commented out until Mike lands
4373 some elite vorbisenc patches.
4375 * tests/check/pipelines/theoraenc.c: Port to bufferstraw.
4376 Bufferstraw was actually factored out of these tests. Now we share
4379 * configure.ac (GST_MAJORMINOR): Rev core requirements to 0.10.9.1
4380 for bufferstraw addition to gstcheck.
4382 2006-07-21 Wim Taymans <wim@fluendo.com>
4384 * ext/theora/theoradec.c: (clip_buffer):
4387 2006-07-21 Wim Taymans <wim@fluendo.com>
4389 * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
4390 (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
4391 (gst_audioringbuffer_release), (gst_audioringbuffer_stop):
4393 Avoid type casting when we can.
4395 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_dispose):
4398 2006-07-20 Tim-Philipp Müller <tim at centricular dot net>
4400 * ext/alsa/gstalsamixerelement.c:
4401 (gst_alsa_mixer_element_change_state):
4402 Make state change fail if the specified device can't be opened
4405 2006-07-20 Wim Taymans <wim@fluendo.com>
4407 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
4408 (cb_newpad), (main):
4409 Example of a small audio/video player using decodebin.
4411 2006-07-20 Stefan Kost <ensonic@users.sf.net>
4413 * gst-libs/gst/riff/riff-ids.h:
4416 2006-07-19 Wim Taymans <wim@fluendo.com>
4418 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4419 (gst_base_rtp_depayload_chain),
4420 (gst_base_rtp_depayload_change_state):
4421 Don't assert when not negotiated but post a meaningfull
4422 error message. Fixes #347918.
4424 * gst-libs/gst/rtp/gstbasertppayload.c:
4425 Add comment about better default MTU size.
4427 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
4428 Small cleanups, start docs.
4430 2006-07-19 Tim-Philipp Müller <tim at centricular dot net>
4432 Patch by: Martin Szulecki
4434 * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_property):
4435 If "device-name" is requested and the device is not
4436 open, try to temporarily open it to obtain this
4437 information (#342494).
4439 2006-07-19 Tim-Philipp Müller <tim at centricular dot net>
4441 * gst-libs/gst/tag/gstid3tag.c:
4442 Add TSSE <=> GST_TAG_ENCODER mapping (see #347898).
4444 * gst-libs/gst/tag/gsttageditingprivate.h:
4445 * gst-libs/gst/tag/gstvorbistag.c:
4446 Some more random const-ifications.
4448 2006-07-18 Stefan Kost <ensonic@users.sf.net>
4450 * gst-libs/gst/riff/riff-ids.h:
4451 * gst-libs/gst/riff/riff-media.c:
4452 (gst_riff_create_video_template_caps):
4453 Add more FOURCCs (sort list to make stuff easier to find),
4454 add comment what those 16 bytes in struct _gst_riff_strh according to
4457 2006-07-17 Tim-Philipp Müller <tim at centricular dot net>
4459 * gst-libs/gst/audio/multichannel.c:
4460 (gst_audio_check_channel_positions),
4461 (gst_audio_fixate_channel_positions):
4462 Const-ify two arrays.
4464 2006-07-17 Tim-Philipp Müller <tim at centricular dot net>
4466 * ext/alsa/gstalsa.c: (caps_add_channel_configuration):
4467 Fix typo, so that alsasink also advertises 8 channels
4468 if that's supported (tags: can, worms, open, alsa, ph34r).
4470 2006-07-17 Wim Taymans <wim@fluendo.com>
4472 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4473 (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
4474 *sigh*, when is the compiler going to warn when the comments
4475 are out-of-sync with the code.. Refix case of busted theora
4476 headers with 0 granule pos.
4478 2006-07-14 Wim Taymans <wim@fluendo.com>
4480 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4481 (gst_base_rtp_depayload_wait),
4482 (gst_base_rtp_depayload_change_state),
4483 (gst_base_rtp_depayload_set_property),
4484 (gst_base_rtp_depayload_get_property):
4485 Fix 99% cpu load by waiting for absolute times on the
4486 clock. Fixes #347300.
4488 2006-07-14 Andy Wingo <wingo@pobox.com>
4490 * ext/theora/gsttheoraparse.h:
4491 * ext/theora/theoraparse.c (theora_parse_drain_event_queue)
4492 (theora_parse_push_headers, theora_parse_clear_queue)
4493 (theora_parse_drain_queue_prematurely, )
4494 (theora_parse_sink_event, theora_parse_change_state): Queue events
4495 until we initialized our state, like in vorbisparse.
4497 * ext/vorbis/vorbisparse.h:
4498 * ext/vorbis/vorbisparse.c (vorbis_parse_drain_event_queue)
4499 (vorbis_parse_push_headers, vorbis_parse_clear_queue)
4500 (vorbis_parse_drain_queue_prematurely, )
4501 (vorbis_parse_sink_event, vorbis_parse_change_state): Queue events
4502 until we have initialized our state. Fixes seeking after an
4505 2006-07-14 Andy Wingo <wingo@pobox.com>
4507 Patch by: Iain Holmes <iaingnome@gmail.com>
4509 * ext/ogg/gstoggdemux.c (gst_ogg_demux_finalize): Fix memleak.
4511 2006-07-14 Jan Schmidt <thaytan@mad.scientist.com>
4514 Bump nano back to CVS
4516 === release 0.10.9 ===
4518 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4521 releasing 0.10.9, "I walk the line"
4523 2006-07-14 Michael Smith <msmith@fluendo.com>
4525 * tests/check/pipelines/vorbisenc.c: (stop_pipeline):
4526 Move a g_cond_signal to earlier to avoid sometimes deadlocking
4527 (commonly happens when running this test under valgrind) when trying
4528 to remove the buffer probe.
4530 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4532 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
4533 Fix missing g_unlock from the previous commit
4535 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4537 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
4538 (gst_ximagesink_change_state):
4539 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
4540 (gst_xvimagesink_change_state):
4541 Implement a locking order to ensure we always take the object lock
4542 before the x_lock and never vice-versa.
4544 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4546 * gst/playback/gstdecodebin.c: (find_compatibles):
4547 Fix a caps leak when linking (#347304)
4549 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4550 (gst_ximagesink_ximage_destroy), (gst_ximagesink_xcontext_clear),
4551 (gst_ximagesink_change_state):
4552 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
4553 (gst_xvimage_buffer_finalize), (gst_xvimagesink_check_xshm_calls),
4554 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
4555 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_change_state):
4556 Don't leak shared memory resources. Use the object lock to protect
4557 against the xcontext disappearing while returning a buffer from the
4560 2006-07-12 Edward Hervey <edward@fluendo.com>
4562 * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize),
4563 (vorbis_handle_comment_packet):
4564 gst_tag_list_merge() returns a new object. Take that into account when
4565 using it. This avoids memleak.
4566 Revert previous commit which is not needed.
4568 2006-07-12 Edward Hervey <edward@fluendo.com>
4570 * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize):
4571 Reset the decoder in finalize so that all fields get cleared.
4573 2006-07-12 Wim Taymans <wim@fluendo.com>
4575 * gst-libs/gst/audio/gstbaseaudiosrc.c:
4576 (gst_base_audio_src_set_clock),
4577 (gst_base_audio_src_check_get_range), (gst_base_audio_src_create):
4578 Don't try to post an error message when setting the clock fails
4579 as this can happen when adding an element to a bin which will then
4580 deadlock. Fixes #347296.
4582 2006-07-12 Edward Hervey <edward@fluendo.com>
4584 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
4585 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
4586 (vorbis_handle_type_packet):
4587 Post tag messages on the bus even if we're not initialized.
4588 If we're not initialized, we still postpone the event pushing of tags.
4590 2006-07-12 Wim Taymans <wim@fluendo.com>
4592 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4593 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4594 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4595 Revert last two changes that broke the freeze.
4597 2006-07-12 Wim Taymans <wim@fluendo.com>
4599 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4600 basesink calculates silence sample correctly for us.
4602 2006-07-12 Wim Taymans <wim@fluendo.com>
4604 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4605 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4606 Calculate correct silence samples so we don't fill our ringbuffer
4609 2006-07-12 Edward Hervey <edward@fluendo.com>
4611 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
4612 (gst_vorbis_dec_reset), (vorbis_dec_sink_event),
4613 (vorbis_handle_comment_packet), (vorbis_handle_type_packet):
4614 * ext/vorbis/vorbisdec.h:
4615 Delay sending events (newsegment, tags) until the decoder is properly
4619 2006-07-11 Jan Schmidt <thaytan@mad.scientist.com>
4621 * tests/check/elements/audioconvert.c: (get_float_mc_caps),
4622 (get_int_mc_caps), (GST_START_TEST), (audioconvert_suite):
4623 Patch from #347221 adding a test for audioconvert
4626 2006-07-11 Tim-Philipp Müller <tim at centricular dot net>
4628 * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
4629 (gst_ssa_parse_parse_line):
4630 Don't include the terminating NUL in the buffer size,
4631 it's only there for extra paranoia (would add random
4632 '*' characters at the end of each subtitle since the
4633 terminator itself is not valid UTF-8 technically).
4634 Also fix indenting after boilerplate macro.
4636 2006-07-10 Tim-Philipp Müller <tim at centricular dot net>
4638 * gst/playback/gstdecodebin.c: (close_pad_link):
4639 Also emit 'unknown-type' signal (which should really be
4640 called unhandled-type) if we found potential decoders/demuxers
4641 in the registry but none of them worked in the end (as in the
4642 case where the plugins don't exist any longer but are still
4643 listed in the registry). Fixes #329798.
4645 2006-07-08 Andy Wingo <wingo@pobox.com>
4647 * theoraparse.c (theora_parse_push_buffer)
4648 (theora_parse_drain_queue_prematurely, theora_parse_drain_queue):
4649 Add some more debugging. Fix granulepos reconstruction in the face
4652 2006-07-06 Wim Taymans <wim@fluendo.com>
4654 * gst-libs/gst/audio/gstbaseaudiosink.c:
4655 (gst_base_audio_sink_class_init),
4656 (gst_base_audio_sink_provide_clock):
4657 Use gobject_class instead of G_OBJECT_CLASS (klass)
4659 * gst-libs/gst/audio/gstbaseaudiosrc.c:
4660 (gst_base_audio_src_class_init), (gst_base_audio_src_init),
4661 (gst_base_audio_src_set_clock), (gst_base_audio_src_provide_clock),
4662 (gst_base_audio_src_get_time),
4663 (gst_base_audio_src_check_get_range), (gst_base_audio_src_create),
4664 (gst_base_audio_src_create_ringbuffer):
4665 Fix latency and buffer-time constants and properties ala basesink.
4666 Implement pull based scheduling. Fixes #346527.
4667 Set default blocksize in GstBaseSrc to 0, we default to pushing out
4669 Refuse slaving to another clock instead of silently not working.
4670 Only provide a clock when we are actually able to do so.
4671 Various small cleanups and compiler hints.
4673 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
4675 Patch by: Lutz Mueller <lutz at topfrose de>
4677 * gst/typefind/gsttypefindfunctions.c: (html_type_find),
4679 Add typefinding for text/html (#346581).
4681 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
4683 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
4684 (xml_check_first_element), (xml_type_find), (smil_type_find):
4685 Fix SMIL typefinding, make xml_check_first_element() more
4688 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
4690 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
4691 (gst_play_base_bin_finalize), (decodebin_element_added_cb),
4692 (decodebin_element_removed_cb), (gst_play_base_bin_set_property):
4693 * gst/playback/gstplaybasebin.h:
4694 Protect list of elements with a subtitle-encoding property and
4695 the subtitle encoding member itself with a lock of their own
4696 instead of using the object lock. This prevents a dead-lock in
4697 the element-remove callback in some circumstances when shutting
4700 2006-07-05 Sebastien Moutte <sebastien@moutte.net>
4702 * win32/common/libgsttag.def:
4703 Export some new functions.
4704 * win32/vs6/libgstogg.dsp:
4705 Add a link to libgsttag-0.10.lib.
4707 2006-07-04 Tim-Philipp Müller <tim at centricular dot net>
4709 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
4710 Some const-ification.
4712 2006-07-04 Wim Taymans <wim@fluendo.com>
4714 * gst/playback/gstplaybasebin.c: (is_stream), (gen_source_element):
4715 Improve checking if we are dealing with a stream. Added some
4716 more uris that need buffering.
4718 2006-07-03 Edward Hervey <edward@fluendo.com>
4720 * ext/vorbis/vorbisdec.c: (vorbis_do_clip):
4721 Remove unused variable.
4723 2006-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
4728 add GCOV_LIBS to GST_LIBS
4730 2006-07-02 Tim-Philipp Müller <tim at centricular dot net>
4732 Patch by: Michael Sheldon <webmaster at mikeasoft com>
4734 * ext/alsa/gstalsasrc.c:
4735 Add 32 bps to template caps and increase channels range
4736 from [1,2] to [1,MAX]. See #346326.
4738 2006-06-30 Tim-Philipp Müller <tim at centricular dot net>
4740 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
4741 Recognise 'WMVA' video codec fourcc (#345879).
4743 2006-06-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
4745 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4746 Fixed nasty memory leak
4748 2006-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
4750 * gst/tcp/gsttcp.c: (gst_tcp_read_buffer),
4751 (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps):
4754 2006-06-23 Jan Schmidt <thaytan@mad.scientist.com>
4756 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
4757 (gst_decode_bin_init), (gst_decode_bin_finalize), (add_fakesink),
4758 (remove_fakesink), (pad_probe), (gst_decode_bin_change_state):
4759 Protect remove_fakesink using a mutex, so that we don't try and
4760 remove the fakesink simultaneously from multiple threads.
4762 When going from READY to PAUSED, restore the fakesink, so that
4763 it is there when decodebin gets reused.
4765 2006-06-23 Tim-Philipp Müller <tim at centricular dot net>
4767 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4768 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4769 * gst-libs/gst/rtp/gstbasertppayload.c:
4770 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4771 * gst/tcp/gstmultifdsink.c:
4772 * gst/tcp/gsttcpclientsink.c:
4773 * gst/tcp/gsttcpclientsrc.c:
4774 * gst/tcp/gsttcpserversink.c:
4775 * gst/tcp/gsttcpserversrc.c:
4776 * gst/videorate/gstvideorate.c:
4777 * gst/videotestsrc/gstvideotestsrc.c:
4778 * sys/v4l/gstv4ljpegsrc.c:
4779 * sys/v4l/gstv4lmjpegsink.c:
4780 * sys/v4l/gstv4lsrc.c:
4781 * tests/examples/seek/scrubby.c:
4782 * tests/examples/seek/seek.c:
4783 Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
4785 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4787 * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
4788 Second field in GEnumValue shouldn't be a description,
4789 but a stringified version of the enum value.
4791 2006-06-22 Wim Taymans <wim@fluendo.com>
4793 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4794 (gst_ximage_buffer_free), (gst_ximagesink_ximage_put),
4795 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
4796 Avoid type checking in buffer casts.
4797 Avoid caps copy in buffer_alloc when we can.
4798 Use pad_peer_accept.
4800 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4802 * gst-libs/gst/tag/tag.h:
4803 Oops, make that 'Since: 0.10.9'.
4805 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4807 * docs/libs/gst-plugins-base-libs-sections.txt:
4808 * gst-libs/gst/tag/tag.h:
4809 * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
4810 (gst_tag_image_type_get_type):
4811 API: add GstTagImageType enum to describe images contained
4812 in image tags (#345641).
4814 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4816 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4817 Fix warnings with gst-inspect: "buffers-min" property
4818 should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
4819 typo in property description.
4821 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4823 Patch by: Cody Russell <bratsche at gnome org>
4825 * gst/audioresample/gstaudioresample.c:
4826 (gst_audioresample_class_init):
4827 * gst/playback/gststreamselector.c:
4828 (gst_stream_selector_class_init):
4829 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
4830 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4831 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
4832 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
4833 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
4834 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
4835 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
4836 * gst/videotestsrc/gstvideotestsrc.c:
4837 (gst_video_test_src_class_init):
4838 * gst/volume/gstvolume.c: (gst_volume_class_init):
4839 Avoid unnecessary class cast check in class_init
4840 functions (#337747).
4842 2006-06-21 Tim-Philipp Müller <tim at centricular dot net>
4844 * ext/pango/gsttextoverlay.c: (gst_text_overlay_make_utf8),
4845 (gst_text_overlay_video_chain):
4846 g_markup_escape_text() REALLY doesn't like non-UTF8 input
4847 and doesn't validate its input either (and neither did
4848 textoverlay it seems). Let's do that then and fix #345206.
4850 2006-06-19 Wim Taymans <wim@fluendo.com>
4852 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
4853 (gst_unit_type_get_type), (gst_multi_fd_sink_class_init),
4854 (gst_multi_fd_sink_init), (gst_multi_fd_sink_add_full),
4855 (gst_multi_fd_sink_add), (gst_multi_fd_sink_handle_client_read),
4856 (find_syncframe), (find_limits), (assign_value),
4857 (count_burst_unit), (gst_multi_fd_sink_new_client),
4858 (gst_multi_fd_sink_handle_client_write),
4859 (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_render),
4860 (gst_multi_fd_sink_set_property), (gst_multi_fd_sink_get_property),
4861 (gst_multi_fd_sink_change_state):
4862 * gst/tcp/gstmultifdsink.h:
4863 Added shiny new burst-on-connect methods.
4864 Add properties to control the minimal amount of data queued.
4866 API: bytes-min property
4867 API: time-min property
4868 API: buffers-min property
4869 API: burst-unit property
4870 API: burst-value property
4871 API: add-full signal
4873 * gst/tcp/gsttcp-marshal.list:
4874 Added new marshaller code for the new signal.
4876 * tests/check/elements/multifdsink.c: (GST_START_TEST),
4877 (multifdsink_suite):
4878 Added testcases for new burst methods.
4880 2006-06-19 Edward Hervey <edward@fluendo.com>
4882 * ext/theora/theoradec.c: (clip_buffer), (theora_dec_push):
4883 Implement clipping for accurate seeking.
4886 2006-06-19 Wim Taymans <wim@fluendo.com>
4888 Patch by: Philip Jaegenstedt <philip at lysator dot liu dot se>
4890 * gst/videoscale/gstvideoscale.c: (gst_video_scale_prepare_size),
4891 (gst_video_scale_transform):
4892 Make videoscale support RGBA, ARGB, BGRA and ABGR. Fixes #345131
4894 2006-06-17 Tim-Philipp Müller <tim at centricular dot net>
4897 Fix --disable-external (can't set conditionals conditionally,
4900 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
4902 * tests/check/elements/audioresample.c: (test_reuse),
4903 (audioresample_suite):
4904 Add test case for bug #342789 fixed below.
4906 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
4908 * gst/audioresample/gstaudioresample.c:
4909 (gst_audioresample_class_init), (gst_audioresample_init),
4910 (audioresample_start), (audioresample_stop),
4911 (gst_audioresample_set_property), (gst_audioresample_get_property):
4912 Implement GstBaseTransform::start and ::stop so that audioresample
4913 can clear its internal state properly and be reused instead of
4914 causing non-negotiated errors with playbin under some circumstances
4917 * tests/check/elements/audioresample.c: (setup_audioresample),
4918 (cleanup_audioresample):
4919 Need to set element state here so that ::start and ::stop are
4922 2006-06-16 Wim Taymans <wim@fluendo.com>
4924 Patch by: Young-Ho Cha <ganadist at chollian dot net>
4926 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_vids):
4927 Parse extra data better, apparently it's right behind
4928 the normal strf header size. Fixes #343500.
4930 2006-06-16 Wim Taymans <wim@fluendo.com>
4932 * ext/alsa/gstalsasink.c: (set_hwparams):
4933 If we fail to set the buffer_time and period_time alsa
4934 parameters, post a warning and leave alsa select a
4935 default instead of failing. Fixes #342085
4937 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
4939 * docs/libs/gst-plugins-base-libs-sections.txt:
4940 * gst-libs/gst/cdda/gstcddabasesrc.h:
4941 Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
4942 out in the header file and shouldn't be listed in the docs.
4944 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
4945 Must dereference pointer to fourcc in the debug statement.
4947 2006-06-16 Stefan Kost <ensonic@users.sf.net>
4949 * docs/libs/Makefile.am:
4950 * docs/libs/gst-plugins-base-libs-docs.sgml:
4951 * docs/libs/gst-plugins-base-libs-sections.txt:
4952 * docs/libs/gst-plugins-base-libs.types:
4953 add remaining symbols into correct setions
4955 * gst-libs/gst/audio/gstringbuffer.c:
4958 * gst-libs/gst/audio/gstringbuffer.h:
4959 comment out not yet implemented function
4962 * gst-libs/gst/floatcast/floatcast.h:
4963 * gst-libs/gst/netbuffer/gstnetbuffer.c:
4964 add short descriptions
4967 * gst-libs/gst/interfaces/propertyprobe.c:
4968 fix return value docs
4970 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
4971 simplify debug logging
4973 * gst-libs/gst/riff/riff-read.h:
4974 sync function prototype and docs
4976 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
4977 remove left over symbol
4979 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
4984 Use GST_PLUGIN_DOCS macro in configure.ac, add
4985 --enable-plugin-docs default to autogen.sh and use
4986 ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
4988 2006-06-15 Wim Taymans <wim@fluendo.com>
4990 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
4991 (gst_ogg_demux_activate_chain), (gst_ogg_demux_combine_flows),
4992 (gst_ogg_demux_loop):
4993 Combine GstFlowReturn from the source pads to give a
4994 meaningfull result to the upstream peer or to stop the
4995 processing task in case of errors.
4997 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
4999 * gst/playback/gststreaminfo.c: (cb_probe):
5000 Try GST_TAG_CODEC as fallback when extracting the
5001 codec name; more debug info.
5003 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
5005 * ext/ogg/Makefile.am:
5006 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
5007 Extract language tags from ogm subtitle streams, so that
5008 the subtitle menu choices are labelled correctly in
5009 Totem (fixes #344708).
5011 2006-06-14 Wim Taymans <wim@fluendo.com>
5013 Patch by: Alessandro Decina <alessandro at nnva dot org>
5015 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_clear),
5016 (gst_ogg_mux_release_pad), (gst_ogg_mux_get_headers),
5017 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_init_collectpads),
5018 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
5019 Fix various leaks. Fixes #343699.
5020 Add x-smoke mime type.
5022 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
5024 * gst-libs/gst/riff/riff-ids.h:
5025 Add IDs for 'bext' chunks (see #343837).
5027 2006-06-12 Tim-Philipp Müller <tim at centricular dot net>
5029 Patch by: Young-Ho Cha <ganadist at chollian net>
5031 * gst/subparse/samiparse.c: (sami_context_pop_state),
5032 (handle_start_font), (end_sami_element):
5033 Honour font face tags in SAMI subtitles (#344503).
5035 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5038 add missing files containing translatable strings
5040 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5042 * docs/libs/tmpl/.cvsignore:
5043 we don't want those *.sgml files in CVS either
5045 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5047 * docs/libs/.cvsignore:
5048 * tests/check/elements/.cvsignore:
5049 * tests/check/libs/.cvsignore:
5052 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5054 * docs/libs/Makefile.am:
5055 also commiting the changed Makefile.am (added more libs to the
5058 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5060 * docs/libs/gst-plugins-base-libs-docs.sgml:
5061 * docs/libs/gst-plugins-base-libs-sections.txt:
5062 * docs/libs/gst-plugins-base-libs.types:
5063 first batch of reordering things, add index & hierarchy
5065 2006-06-11 Thomas Vander Stichele <thomas at apestaart dot org>
5068 use GST_PKG_CHECK_MODULES, cleans up output
5070 2006-06-10 Tim-Philipp Müller <tim at centricular dot net>
5072 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
5073 Add support for burn:// URIs (#343385); const-ify things a bit,
5074 use G_N_ELEMENTS instead of hard-coded array size.
5076 2006-06-10 Tim-Philipp Müller <tim at centricular dot net>
5078 Patch by: Young-Ho Cha <ganadist at chollian net>
5080 * gst/subparse/samiparse.c: (fix_invalid_entities), (parse_sami):
5081 Fix up broken entities before passing them to libxml *sigh*.
5084 2006-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
5089 === release 0.10.8 ===
5091 2006-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
5094 releasing 0.10.8, "Moar gij ziet mij nie"
5096 2006-06-07 Thomas Vander Stichele <thomas at apestaart dot org>
5113 * win32/common/config.h:
5116 2006-06-07 Thomas Vander Stichele <thomas at apestaart dot org>
5118 * docs/libs/tmpl/gstaudio.sgml:
5119 * docs/libs/tmpl/gstcolorbalance.sgml:
5120 * docs/libs/tmpl/gstmixer.sgml:
5121 * docs/libs/tmpl/gstringbuffer.sgml:
5122 * docs/libs/tmpl/gsttuner.sgml:
5123 * docs/libs/tmpl/gstxoverlay.sgml:
5124 * gst-libs/gst/audio/audio.c:
5125 * gst-libs/gst/audio/gstringbuffer.c:
5126 * gst-libs/gst/interfaces/colorbalance.c:
5127 * gst-libs/gst/interfaces/mixer.c:
5128 * gst-libs/gst/interfaces/tuner.c:
5129 * gst-libs/gst/interfaces/xoverlay.c:
5130 move last template doc snippets to source code and delete them
5132 2006-06-06 Michael Smith <msmith@fluendo.com>
5134 * ext/theora/theoraparse.c: (theora_parse_drain_queue_prematurely),
5135 (theora_parse_drain_queue):
5136 Mark DELTA_UNIT on non-keyframes.
5138 2006-06-03 Jan Schmidt <thaytan@mad.scientist.com>
5140 * gst-libs/gst/audio/gstbaseaudiosink.c:
5141 (gst_base_audio_sink_class_init), (gst_base_audio_sink_setcaps):
5142 * gst-libs/gst/audio/gstbaseaudiosink.h:
5143 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps),
5144 (gst_ring_buffer_samples_done):
5145 * gst-libs/gst/audio/gstringbuffer.h:
5146 Document better the fact that latency_time and buffer_time are values
5147 stored in microseconds, and not the usual GStreamer nanoseconds.
5148 Change the variables (compatibly) that store them from GstClockTime
5149 to guint64 to make it more clear that they're not storing clock times.
5150 Also, remove the bogus property description that says the user can
5151 specify -1 to get the default value, since that's never been the case.
5153 When computing the default segment size for the ring buffer, make it
5154 an integer number of samples.
5156 When the sub-class indicates a delay greater than the number of
5157 samples we've written return 0 from the audio sink get_time method.
5159 2006-06-02 Michael Smith <msmith@fluendo.com>
5161 * tests/check/elements/audioconvert.c: (set_channel_positions),
5162 (get_float_mc_caps), (get_int_mc_caps):
5163 * tests/check/elements/audioresample.c:
5164 * tests/check/elements/audiotestsrc.c: (GST_START_TEST):
5165 * tests/check/elements/videorate.c:
5166 * tests/check/elements/videotestsrc.c: (GST_START_TEST):
5167 * tests/check/elements/volume.c:
5168 * tests/check/elements/vorbisdec.c:
5169 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
5170 Don't busy-wait in tests; this was causing test timeouts very
5171 frequently when running under valgrind.
5173 2006-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
5176 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_init),
5177 (gst_multi_fd_sink_remove_client_link),
5178 (gst_multi_fd_sink_client_queue_caps),
5179 (gst_multi_fd_sink_client_queue_buffer),
5180 (gst_multi_fd_sink_handle_client_write),
5181 (gst_multi_fd_sink_render):
5182 * gst/tcp/gstmultifdsink.h:
5183 make multifdsink properly deal with streamheader:
5184 - streamheader is taken from caps
5185 - buffers marked with IN_CAPS are not sent
5186 - streamheaders are sent, on connection, from the caps of the
5187 buffer where the client gets positioned to
5188 - further streamheader changes are done every time the client
5189 will receive a buffer with different caps
5190 * tests/check/elements/multifdsink.c: (GST_START_TEST),
5191 (gst_multifdsink_create_streamheader):
5194 2006-06-02 Michael Smith <msmith@fluendo.com>
5196 * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
5197 Reinstate limit on channel count. Vorbis does not define the meaning
5198 of > 6 channels, so they're just independent channels. Gstreamer
5199 currently has no mechanism to represent N independent channels.
5201 2006-06-02 Michael Smith <msmith@fluendo.com>
5203 * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
5204 Don't arbitrarily restrict channel counts and rate in vorbis.
5205 In terms of effects likely on real-world files, this fixes 96kHz
5208 2006-06-02 Michael Smith <msmith@fluendo.com>
5210 * gst/audioconvert/audioconvert.c: (float):
5211 More correct float->int conversion.
5213 2006-06-02 Michael Smith <msmith@fluendo.com>
5215 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_perform_seek):
5216 Don't accidently send GST_CLOCK_TIME_NONE as a new segment start
5217 value. Fixes g-critical on trying to play back ogg containing
5220 2006-06-02 Wim Taymans <wim@fluendo.com>
5222 * gst/playback/gstplaybasebin.c: (group_create), (group_commit),
5224 * gst/playback/gstplaybasebin.h:
5225 Make the subtitle detection work from any thread so we don't
5226 deadlock. Fixes #343397.
5228 2006-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
5230 * gst/volume/Makefile.am:
5231 Seriously, it's not *that* hard to get compilation right. Even
5232 a drunk can do it ! Add LIBOIL CFLAGS and LIBS
5234 2006-06-01 Stefan Kost <ensonic@users.sf.net>
5236 * gst/volume/gstvolume.c: (volume_choose_func),
5237 (volume_update_real_volume), (gst_volume_class_init),
5238 (gst_volume_init), (volume_process_float), (volume_process_int16),
5239 (volume_process_int16_clamp), (volume_set_caps),
5240 (volume_transform_ip), (plugin_init):
5241 * gst/volume/gstvolume.h:
5242 rewrite the passthrough check, split _int16 and _int16_clamp, fix
5243 another property desc., remove unused param from process function
5245 * tests/check/elements/volume.c: (volume_suite):
5246 reactivate the passthrough test
5248 2006-06-01 Stefan Kost <ensonic@users.sf.net>
5250 * ext/alsa/gstalsamixerelement.h:
5251 * ext/alsa/gstalsamixeroptions.h:
5252 * ext/alsa/gstalsamixertrack.h:
5253 * ext/gnomevfs/gstgnomevfssink.h:
5254 * ext/gnomevfs/gstgnomevfssrc.h:
5255 * ext/theora/gsttheoradec.h:
5256 * ext/theora/gsttheoraenc.h:
5257 * ext/theora/gsttheoraparse.h:
5258 * ext/vorbis/vorbisparse.h:
5259 * gst-libs/gst/audio/gstaudioclock.h:
5260 * gst-libs/gst/audio/gstaudiofilter.h:
5261 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5262 * gst/audioconvert/gstaudioconvert.h:
5263 * gst/audioresample/gstaudioresample.h:
5264 * gst/audiotestsrc/gstaudiotestsrc.h:
5265 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
5266 * gst/playback/gststreamselector.h:
5267 * gst/tcp/gstmultifdsink.h:
5268 * gst/tcp/gsttcpclientsink.h:
5269 * gst/tcp/gsttcpclientsrc.h:
5270 * gst/tcp/gsttcpserversink.h:
5271 * gst/tcp/gsttcpserversrc.h:
5272 * gst/videorate/gstvideorate.h:
5273 * gst/videoscale/gstvideoscale.h:
5274 * gst/videotestsrc/gstvideotestsrc.h:
5275 * gst/volume/gstvolume.h:
5276 * sys/v4l/gstv4ljpegsrc.h:
5277 * sys/v4l/gstv4lmjpegsink.h:
5278 * sys/v4l/gstv4lmjpegsrc.h:
5279 * sys/v4l/gstv4lsrc.h:
5280 * sys/ximage/ximagesink.h:
5281 * sys/xvimage/xvimagesink.h:
5282 * tests/old/testsuite/alsa/sinesrc.h:
5283 Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
5285 2006-05-31 Wim Taymans <wim@fluendo.com>
5287 * ext/libvisual/visual.c: (gst_visual_reset),
5288 (gst_visual_sink_setcaps), (gst_visual_sink_event),
5289 (gst_visual_src_event), (get_buffer), (gst_visual_chain):
5291 Use running time before doing QoS.
5294 2006-05-31 Thomas Vander Stichele <thomas at apestaart dot org>
5296 * docs/libs/Makefile.am:
5297 set a magic variable to indicate we know the docs are incomplete
5299 2006-05-30 Sebastien Moutte <sebastien@moutte.net>
5301 * win32/common/libgstvideo.def:
5302 export gst_video_calculate_display_ratio
5303 * win32/vs6/libgstvideoscale.dsp:
5304 add link to libgstvideo-0.10.lib
5306 2006-05-30 Tim-Philipp Müller <tim at centricular dot net>
5308 * gst/playback/gstplaybasebin.c: (gen_source_element):
5309 Throw a more comprehensible error for rtsp:// URIs (rather
5310 than erroring out with a negotiation error later on) until
5311 we fix playbin to handle rtspsrc etc.
5313 2006-05-30 Wim Taymans <wim@fluendo.com>
5315 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
5316 (gst_text_overlay_text_event):
5319 2006-05-30 Wim Taymans <wim@fluendo.com>
5321 * gst/adder/gstadder.c: (gst_adder_class_init), (gst_adder_init),
5322 (gst_adder_request_new_pad), (gst_adder_release_pad):
5323 * gst/adder/gstadder.h:
5324 Implement release_request_pad.
5325 Make padcounter atomic.
5327 * tests/check/elements/adder.c: (GST_START_TEST), (adder_suite):
5328 Added check for release_pad in adder.
5330 2006-05-30 Wim Taymans <wim@fluendo.com>
5332 * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
5335 2006-05-30 Thomas Vander Stichele <thomas at apestaart dot org>
5337 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
5338 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
5339 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
5340 (gst_ogg_pad_submit_page), (gst_ogg_chain_new_stream),
5341 (gst_ogg_demux_seek), (gst_ogg_demux_get_data),
5342 (gst_ogg_demux_get_next_page), (gst_ogg_demux_do_seek),
5343 (gst_ogg_demux_bisect_forward_serialno),
5344 (gst_ogg_demux_read_chain), (gst_ogg_demux_find_chains),
5345 (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
5347 clean up printf formats for granulepos and serialno
5349 2006-05-30 Michael Smith <msmith@fluendo.com>
5351 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
5352 (gst_vorbis_enc_class_init), (gst_vorbis_enc_dispose),
5353 (gst_vorbis_enc_generate_sink_caps), (gst_vorbis_enc_sink_getcaps),
5354 (gst_vorbis_enc_init), (gst_vorbis_enc_buffer_from_header_packet),
5355 (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
5356 * ext/vorbis/vorbisenc.h:
5357 Multi-channel caps negotiation, so we can do proper multichannel
5358 vorbis encoding, negotiated through audioconvert.
5360 2006-05-30 Wim Taymans <wim@fluendo.com>
5362 * tests/check/elements/adder.c: (test_event_message_received),
5363 (test_play_twice_message_received), (GST_START_TEST),
5365 Added check to show that #339935 is fixed with ongoing
5366 adder and collectpads fixes.
5368 2006-05-29 Wim Taymans <wim@fluendo.com>
5370 * gst/adder/gstadder.c: (gst_adder_request_new_pad):
5371 Don't leak pad name.
5373 2006-05-29 Wim Taymans <wim@fluendo.com>
5375 * gst/adder/gstadder.c: (gst_adder_query_duration),
5376 (forward_event_func), (forward_event), (gst_adder_src_event):
5378 Make query/seeking code threadsafe.
5380 * tests/check/Makefile.am:
5381 * tests/check/elements/adder.c: (test_event_message_received),
5382 (GST_START_TEST), (test_play_twice_message_received):
5383 Fix adder test case.
5385 2006-05-29 Tim-Philipp Müller <tim at centricular dot net>
5387 Patch by: Young-Ho Cha <ganadist at chollian net>
5389 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
5390 (gst_play_base_bin_init), (gst_play_base_bin_dispose),
5391 (set_encoding_element), (decodebin_element_added_cb),
5392 (decodebin_element_removed_cb), (setup_subtitle), (setup_source),
5393 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
5394 * gst/playback/gstplaybasebin.h:
5395 Add 'subtitle-encoding' property to playbin, so applications can
5396 force a subtitle encoding for non-UTF8 subtitles (#342268).
5398 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init),
5399 (gst_sub_parse_set_property):
5400 Rename recently-added 'encoding' property to 'subtitle-encoding'
5401 (so it can be proxied by playbin/decodebin in a generic way
5402 with less danger of false positives).
5404 2006-05-29 Michael Smith <msmith@fluendo.com>
5406 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
5407 (append_with_other_format), (set_structure_widths),
5408 (gst_audio_convert_transform_caps):
5409 Patch from #341562: give more specific audio caps in get_caps, so
5410 that basetransform can make better decisions on what caps to
5413 2006-05-28 Stefan Kost <ensonic@users.sf.net>
5415 * tests/check/elements/volume.c:
5416 make it compile again
5418 2006-05-28 Stefan Kost <ensonic@users.sf.net>
5420 * tests/check/elements/volume.c: (volume_suite):
5421 disable test until #343196 gets resolved
5423 2006-05-28 Stefan Kost <ensonic@users.sf.net>
5425 * gst/adder/gstadder.c: (gst_adder_get_type):
5426 Make it easier to copy&paste
5428 * gst/volume/Makefile.am:
5429 * gst/volume/gstvolume.c: (volume_update_real_volume),
5430 (gst_volume_set_volume), (gst_volume_set_mute),
5431 (gst_volume_class_init), (volume_process_int16), (volume_set_caps),
5432 (volume_transform_ip), (volume_update_mute),
5433 (volume_update_volume):
5434 * gst/volume/gstvolume.h:
5435 Add own debug category, move duplicate code to helper function, fix
5436 property texts, add more comments and prepare ffor liboil-goodness
5438 * tests/check/Makefile.am:
5439 * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
5440 add test for mute and passtrough case, be a bit more verbose to track
5443 * tests/check/generic/states.c: (GST_START_TEST):
5444 catch elements that fail to instantiate
5446 2006-05-28 Edward Hervey <edward@fluendo.com>
5448 * tests/check/pipelines/simple-launch-lines.c:
5449 * tests/check/pipelines/theoraenc.c:
5450 * tests/check/pipelines/vorbisenc.c:
5451 Comment out tests using parse_launch() if core was built without
5452 parsing capabilities.
5454 2006-05-27 Edward Hervey <edward@fluendo.com>
5456 * tests/check/Makefile.am:
5457 Extra bonus points for whoever explains to ensonic that you are meant
5458 to test unit tests thoroughly before commiting them, especially if
5459 you know it's going to break.
5460 De-activated element/adder tests.
5462 2006-05-27 Edward Hervey <edward@fluendo.com>
5464 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
5465 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
5466 Marking caps conversion issues as GST_WARNING is way too verbose,
5467 Moving them to GST_LOG.
5469 2006-05-27 Tim-Philipp Müller <tim at centricular dot net>
5472 Replace current README (containing the release notes from
5473 some 0.9.x version) with a proper README taken from the core.
5475 2006-05-26 Wim Taymans <wim@fluendo.com>
5477 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
5478 (vorbis_dec_src_event), (vorbis_dec_sink_event), (vorbis_do_clip),
5479 (vorbis_dec_push), (vorbis_handle_data_packet), (vorbis_dec_chain),
5480 (vorbis_dec_change_state):
5483 Clip output samples to segment boundaries.
5485 2006-05-26 Jan Schmidt <thaytan@mad.scientist.com>
5487 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
5488 (gst_ximagesink_xcontext_get), (gst_ximagesink_show_frame):
5489 Improve the errors produced on bad output, including some human
5490 readable description strings.
5491 Handle the (theoretical for ximagesink) case where the XServer
5492 has a different idea about the size required for a particular
5493 frame and gives us too small a memory allocation.
5495 2006-05-26 Jan Schmidt <thaytan@mad.scientist.com>
5497 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
5498 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
5499 (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
5500 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
5501 Improve the errors produced on bad output, including some human
5502 readable description strings.
5503 Handle RGB Xv formats properly by transforming them into our
5504 big-endian caps description.
5505 Use gst_caps_truncate to ensure that we never try and choose a
5506 non-fixed caps in buffer_alloc.
5507 Handle the case where the XServer has a different idea about the size
5508 required for a particular frame and gives us too small a memory
5510 Use -1 to indicate 'no image format', because 0 is a valid XServer
5511 image format number.
5512 Put RGB Xv formats at the end of the caps, so that we always prefer
5514 Iterate the available Xv Encodings to determine the maximum width and
5515 height, and then return that in our caps.
5516 (Closes #315312, #337544)
5518 2006-05-25 Jan Schmidt <thaytan@mad.scientist.com>
5520 * gst/playback/gstdecodebin.c: (remove_fakesink), (pad_probe):
5521 When there is only one unfinished pad and it receives an event that
5522 doesn't match our requirements, we need to set alldone=FALSE so that
5523 the fakesink is not removed yet.
5525 2006-05-25 Tim-Philipp Müller <tim at centricular dot net>
5527 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
5528 Use gst_type_find_helper_for_buffer() to find the type
5529 of stream from the first packet.
5532 Bump requirements to core CVS (needed for vorbis
5533 typefinding to work).
5535 2006-05-24 Edward Hervey <edward@fluendo.com>
5537 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
5538 Added the 'prfl' atom type which MQV (no, it's not a typo) files
5539 contain. Else they play perfectly fine with qtdemux.
5541 2006-05-23 Stefan Kost <ensonic@users.sf.net>
5543 * ext/theora/theoradec.c:
5544 * ext/theora/theoraenc.c:
5545 * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
5546 * gst/audiorate/gstaudiorate.c:
5547 make more debug catagories static
5549 * tests/check/Makefile.am:
5550 * tests/check/elements/adder.c: (message_received),
5551 (test_event_message_received), (GST_START_TEST),
5552 (test_play_twice_message_received), (adder_suite):
5553 added test case for using element twice, extra bonus points for anyone
5554 who can make these test run reliably
5556 2006-05-23 Tim-Philipp Müller <tim at centricular dot net>
5558 * ext/theora/theoradec.c: (theora_dec_chain):
5559 Make work with time-stamped input buffers that do not
5560 have a granulepos in BUFFER_OFFSET_END (like theora
5561 buffers coming from matroskademux). Fixes #342448.
5563 2006-05-22 Tim-Philipp Müller <tim at centricular dot net>
5565 Patch by: Peter Kjellerstedt <pkj at axis com>
5567 * gst/tcp/Makefile.am:
5568 fdstresstest doesn't need Gtk+, fix compilation if
5569 gtk is not available (#342566).
5571 2006-05-19 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
5573 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
5575 Removed redundant floor()
5577 2006-05-19 Tim-Philipp Müller <tim at centricular dot net>
5579 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5580 On second thought, just skip JUNK chunks automatically, so
5581 the caller doesn't have to handle this. Fixes #342345.
5582 Also, return GST_FLOW_UNEXPECTED if we get a short read,
5585 2006-05-19 Tim-Philipp Müller <tim at centricular dot net>
5587 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5588 Don't bail out on JUNK chunks with a size of 0 (would try to
5589 pull_range 0 bytes before, which sources don't like too much).
5592 2006-05-19 Jan Schmidt <thaytan@mad.scientist.com>
5594 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5595 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5596 Use the gstutil scaling function to preserve 64 bits while calculating
5597 output width and height from the display-aspect-ratio. (A continuation
5600 2006-05-19 Jan Schmidt <thaytan@mad.scientist.com>
5602 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
5603 (gst_xvimagesink_buffer_alloc):
5604 * sys/xvimage/xvimagesink.h:
5605 When performing buffer allocations, remember the caps and image format
5606 we return so that if the same caps are asked for next time we can
5607 return them immediately without doing any caps intersections.
5609 2006-05-18 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
5611 * gst-libs/gst/rtp/README:
5612 Some new documentation
5613 * gst-libs/gst/rtp/gstrtpbuffer.h:
5614 Added GST_RTP_PAYLOAD_DYNAMIC_STRING for use by children
5615 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
5616 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5617 New RTP audio base payloader class. Supports frame or sample based
5618 codecs. Not enabled in Makefile.am until approved.
5620 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5622 * tests/check/elements/alsa.c: (test_device_property_probe):
5623 Fix test case: don't try to free NULL GValueArray when there
5626 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5628 * tests/check/Makefile.am:
5629 * tests/check/elements/alsa.c: (test_device_property_probe),
5630 (alsa_suite), (main):
5631 Add simple test that runs a device property probe on alsasrc,
5632 alsasink and alsamixer. Disable valgrind check for now (too
5633 many leaks in libasound, and valgrind ignored my suppressions
5636 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5638 * ext/alsa/gstalsadeviceprobe.c: (gst_alsa_get_device_list),
5639 (gst_alsa_device_property_probe_probe_property),
5640 (gst_alsa_device_property_probe_needs_probe),
5641 (gst_alsa_device_property_probe_get_values),
5642 (gst_alsa_type_add_device_property_probe_interface):
5643 * ext/alsa/gstalsadeviceprobe.h:
5644 * ext/alsa/gstalsamixerelement.c:
5645 (gst_alsa_mixer_element_init_interfaces):
5646 * ext/alsa/gstalsamixerelement.h:
5647 Clean up and simplify alsa device probing. Make it actually work
5648 for multiple classes. Don't cache results any longer.
5650 * ext/alsa/gstalsasink.c: (gst_alsasink_init_interfaces),
5651 (gst_alsasink_init):
5652 * ext/alsa/gstalsasrc.c: (gst_alsasrc_dispose),
5653 (gst_alsasrc_interface_supported), (gst_implements_interface_init),
5654 (gst_alsasrc_init_interfaces), (gst_alsasrc_set_property):
5655 Make alsasink and alsasrc implement the GstPropertyProbe interface
5656 for device probing (#342181).
5657 Patch by: Martin Szulecki <gnomebugzilla at sukimashita com>
5659 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5661 * gst/subparse/samiparse.c: (handle_start_font):
5662 Don't ignore return value of strtol (++compiler_happiness).
5664 2006-05-17 Tim-Philipp Müller <tim at centricular dot net>
5666 Patch by: Young-Ho Cha <ganadist chollian net>
5668 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5669 (gst_sub_parse_class_init), (gst_sub_parse_init),
5670 (gst_sub_parse_set_property), (gst_sub_parse_get_property),
5672 * gst/subparse/gstsubparse.h:
5673 Add 'encoding' property (#341681).
5675 * gst/subparse/samiparse.c: (characters_sami):
5676 Output is pango markup, so we need to escape text
5677 between tags (#342143).
5679 2006-05-16 Tim-Philipp Müller <tim at centricular dot net>
5681 * gst-libs/gst/audio/multichannel.c:
5682 (gst_audio_check_channel_positions):
5683 It's okay to have caps with channels=1 and a channel position
5684 different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
5685 (deinterleavers might want to keep the position in the caps,
5686 so that they can be re-interleaved again properly later).
5687 Leave check for unexpected 2-channel layouts intact for now.
5689 2006-05-16 Zaheer Abbas Merali <zaheerabbas at merali dot org>
5691 * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
5692 Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
5693 basesrc can do its job correctly.
5695 2006-05-16 Tim-Philipp Müller <tim at centricular dot net>
5697 * ext/alsa/Makefile.am:
5698 * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
5699 (gst_alsa_detect_formats), (get_channel_free_structure),
5700 (caps_add_channel_configuration), (gst_alsa_detect_channels),
5701 (gst_alsa_probe_supported_formats):
5702 * ext/alsa/gstalsa.h:
5703 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5704 Refactor and improve caps probing code: probe signedness
5705 when we probe the supported formats/widths; set endianness
5706 to the one we actually probed for (ie. cpu endianness).
5708 * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
5709 (gst_alsasrc_close):
5710 * ext/alsa/gstalsasrc.h:
5711 Implement caps probing for alsasrc.
5713 2006-05-15 Wim Taymans <wim@fluendo.com>
5715 * ext/theora/theoradec.c: (gst_theora_dec_reset),
5716 (theora_dec_src_query), (theora_dec_src_event),
5717 (theora_dec_sink_event), (theora_handle_comment_packet),
5718 (theora_handle_data_packet), (theora_dec_change_state):
5719 Cleanups, add some G_LIKELY.
5720 Use segment helpers instead of our own wrong code.
5721 Clear queued buffers on seek and READY.
5723 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
5724 (vorbis_dec_convert), (vorbis_dec_src_query),
5725 (vorbis_dec_src_event), (vorbis_dec_sink_event),
5726 (vorbis_handle_comment_packet), (vorbis_dec_push),
5727 (vorbis_handle_data_packet), (vorbis_dec_chain),
5728 (vorbis_dec_change_state):
5729 * ext/vorbis/vorbisdec.h:
5730 Remove old useless packetno variable.
5731 Do position query properly.
5733 Do cleanup of queued buffers in new helper function
5736 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5738 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5739 Query supported sample rates. Fixes #341732.
5741 2006-05-15 Julien MOUTTE <julien@moutte.net>
5743 * gst/playback/gstdecodebin.c: (cleanup_decodebin),
5744 (gst_decode_bin_change_state): Make decodebin reusable
5745 when going from PAUSE_TO_READY and then back to PAUSED.
5748 2006-05-15 Wim Taymans <wim@fluendo.com>
5750 * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
5751 (vorbis_dec_convert), (vorbis_dec_src_query),
5752 (vorbis_dec_sink_query), (vorbis_dec_src_event),
5753 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
5754 (vorbis_dec_clean_queued), (vorbis_dec_push),
5755 (vorbis_handle_data_packet), (vorbis_dec_change_state):
5756 Cleanups. Use refcounting and DEBUG_OBJECT.
5757 Reset segment on flush, use code methods instead of our
5759 Fix potential memleak.
5761 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5763 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
5764 (gst_alsasink_init):
5765 * ext/alsa/gstalsasink.h:
5766 Don't leak allocated snd_output_t structure if there's
5767 more than one alsasink instance at a time (#341873).
5768 Also fix GObject macros in header file.
5770 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5772 * gst/subparse/gstsubparse.c:
5773 (gst_sub_parse_data_format_autodetect):
5774 Don't use libxml functions in the typefinding code.
5776 2006-05-15 Wim Taymans <wim@fluendo.com>
5778 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
5779 Fix seeking performance in the case where a non-header
5780 packet has a 0 granulepos (busted theora case).
5782 (nvdr: thanks Wim for not mentioning who spotted and fixed it in
5783 the first place, you limelight stealer you)
5785 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5787 * gst/subparse/gstsubparse.c:
5788 (gst_sub_parse_data_format_autodetect):
5789 Improve SAMI typefinding: handle case where there are
5790 whitespaces or newlines in front of the first <SAMI>
5793 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5796 Build video4linux plugin even if there's no XVIDEO, just
5797 without implementing the GstXOverlay interface (#334002).
5799 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5802 * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
5804 Add tentative support for libvisual-0.4 (#336881).
5806 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5808 Patch by: Young-Ho Cha <ganadist at chollian net>
5810 * gst/subparse/samiparse.c: (handle_start_font):
5811 Need to map "silver" colour explicitly (#169936).
5813 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5815 Patch by: Young-Ho Cha <ganadist at chollian net>
5817 * gst/subparse/Makefile.am:
5818 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5819 (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
5820 (gst_sub_parse_format_autodetect), (feed_textbuf),
5821 (gst_subparse_type_find), (plugin_init):
5822 * gst/subparse/gstsubparse.h:
5823 * gst/subparse/samiparse.c:
5824 * gst/subparse/samiparse.h:
5825 Add support for SAMI subtitles (#169936).
5827 2006-05-14 Michael Smith <msmith@fluendo.com>
5829 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
5830 Fix #341696: crash when mixing L+R+C to mono or stereo.
5831 * tests/check/Makefile.am:
5832 * tests/check/elements/audioconvert.c: (set_channel_positions),
5833 (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
5834 (audioconvert_suite):
5835 Add test for the above, including some generic framework bits for
5836 testing multichannel things.
5838 === release 0.10.7 ===
5840 2006-05-14 Jan Schmidt <thaytan@mad.scientist.com>
5843 releasing 0.10.7, "Leave the gun"
5845 2006-05-13 Jan Schmidt <thaytan@mad.scientist.com>
5847 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5848 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5851 2006-05-12 Jan Schmidt <thaytan@mad.scientist.com>
5853 * docs/libs/gst-plugins-base-libs-docs.sgml:
5854 * docs/libs/gst-plugins-base-libs-sections.txt:
5855 * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
5856 * gst-libs/gst/video/video.h:
5857 * gst/videoscale/Makefile.am:
5858 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5859 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5860 * tests/check/Makefile.am:
5861 * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
5863 Fix integer overflow problem with pixel-aspect-ratio calculations
5864 in videoscale and xvimagesink (#341542)
5866 2006-05-12 Tim-Philipp Müller <tim at centricular dot net>
5868 * gst-libs/gst/tag/gstid3tag.c:
5869 Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
5871 2006-05-12 Sebastien Moutte <sebastien@moutte.net>
5874 update win32 files listing
5876 2006-05-11 Thomas Vander Stichele <thomas at apestaart dot org>
5878 patch by: Sjoerd Simons (sjoerd@luon.net)
5880 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
5881 (group_create), (group_destroy), (add_stream),
5882 (gst_play_base_bin_get_property),
5883 (gst_play_base_bin_get_streaminfo_value_array):
5884 * gst/playback/gstplaybasebin.h:
5885 API: GstPlayBaseBin::stream-info-value-array property
5886 use a more bindings-friendly way of exposing streaminfo
5887 using a GValueArray. Tested in ipython.
5890 2006-05-11 Wim Taymans <wim@fluendo.com>
5892 * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
5893 (queue_underrun_cb), (queue_filled_cb):
5894 Also catch queue underruns but don't do anything yet.
5895 Refactor and comment queue enlarging code a bit.
5897 * gst/playback/gstplaybasebin.c: (queue_overrun),
5898 (queue_threshold_reached), (queue_out_of_data),
5899 (gen_preroll_element):
5900 If a queue over/underruns check that we don't create nasty
5901 deadlocks when the min-threshold is not reached but the
5902 max-bytes is. In those cases disable max-bytes when we
5903 know that the queue is fed timed data.
5906 2006-05-11 Tim-Philipp Müller <tim at centricular dot net>
5908 * gst/playback/gstplaybin.c: (gen_audio_element):
5909 Make playbin automatically plug an 'audioresample'
5910 element before the audio sink as well. This solves
5911 problems with sinks that only accept a very specific
5912 sample rate, like esdsink (e.g. #340379).
5914 2006-05-11 Tim-Philipp Müller <tim at centricular dot net>
5916 * gst/playback/gstplaybasebin.c: (gen_source_element):
5917 Make http sources send special headers so that we receive
5918 icecast metadata if the http stream is an icecast stream
5919 (otherwise the server will just ignore them). This also
5920 means that from now on users will need the 'icydemux'
5921 element from gst-plugins-good installed if they want to
5922 listen to icecast radio streams. (#341432, #333657).
5924 2006-05-11 Thomas Vander Stichele <thomas at apestaart dot org>
5926 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
5927 (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
5928 remove stupid example from docs - it should come with a simple
5931 * tests/check/elements/multifdsink.c: (wait_bytes_served),
5932 (fail_if_can_read), (GST_START_TEST),
5933 (gst_multifdsink_create_streamheader), (multifdsink_suite):
5934 add a test for changing streamheader which exposes a bug in
5937 2006-05-11 Michael Smith <msmith@fluendo.com>
5939 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
5940 (gst_gnome_vfs_src_received_headers_callback):
5941 * ext/gnomevfs/gstgnomevfssrc.h:
5942 Don't set icy-caps unless we have a sane interval value. Move
5943 interval to a local variable; we never use it outside this function.
5945 2006-05-11 Wim Taymans <wim@fluendo.com>
5947 * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
5948 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
5949 Register special buffer types along with the objects so
5950 that they are not registered at runtime from N different
5951 streaming threads since they are not threadsafe.
5953 2006-05-10 Thomas Vander Stichele <thomas at apestaart dot org>
5955 * tests/check/elements/multifdsink.c: (wait_bytes_served),
5956 (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
5957 add two more tests, one doing streamheader
5959 2006-05-10 Thomas Vander Stichele <thomas at apestaart dot org>
5961 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
5962 clean up the bufqueue when shutting down
5963 * tests/check/Makefile.am:
5964 * tests/check/elements/multifdsink.c: (setup_multifdsink),
5965 (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
5967 add a test for the leak that was just fixed
5969 2006-05-10 Wim Taymans <wim@fluendo.com>
5971 * gst/adder/gstadder.c: (gst_adder_setcaps),
5972 (gst_adder_query_duration), (gst_adder_query), (forward_event),
5973 (gst_adder_src_event), (gst_adder_sink_event),
5974 (gst_adder_class_init), (gst_adder_finalize),
5975 (gst_adder_request_new_pad), (gst_adder_collected):
5976 * gst/adder/gstadder.h:
5977 Updated some docs. Added comments and FIXMEs all over the place.
5978 Improve debugging info.
5979 Fix leak on finalize by not calling the parent.
5980 Implement duration query.
5981 Make event forwarding threadsafe.
5982 Correctly send NEWSEGMENT at start and after flush.
5983 Handle EOS correctly.
5984 Post error when not negotiated.
5986 * tests/check/elements/adder.c: (GST_START_TEST):
5987 Added FIXME in the test.
5989 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
5991 * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
5992 (gst_text_overlay_halign_get_type),
5993 (gst_text_overlay_wrap_mode_get_type):
5994 * ext/theora/theoradec.c: (theora_handle_type_packet),
5995 (theora_handle_data_packet):
5996 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
5997 (theora_enc_sink_setcaps), (theora_enc_chain):
5998 * gst-libs/gst/cdda/gstcddabasesrc.c:
5999 (gst_cdda_base_src_mode_get_type):
6000 * gst/audiotestsrc/gstaudiotestsrc.c:
6001 (gst_audiostestsrc_wave_get_type):
6002 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
6003 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
6004 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
6005 (gst_sync_method_get_type), (gst_unit_type_get_type),
6006 (gst_client_status_get_type):
6007 * gst/videoscale/gstvideoscale.c:
6008 (gst_video_scale_method_get_type):
6009 * gst/videotestsrc/gstvideotestsrc.c:
6010 (gst_video_test_src_pattern_get_type):
6011 * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
6012 (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
6013 (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
6014 (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
6015 (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
6016 (paint_setup_RGB565), (paint_setup_xRGB1555):
6017 Const-ify GEnumValue and GFlagsValue arrays. Use
6018 GST_ROUND_UP_* macros instead of home-made ones.
6020 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
6023 Require core CVS for the new newsegment stuff.
6025 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
6027 Patch by: Sjoerd Simons <sjoerd at luon net>
6029 * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
6030 Register nick for enum value (#341160).
6032 2006-05-09 Stefan Kost <ensonic@users.sf.net>
6034 * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
6036 backout typefind patch #340375
6038 * tests/check/elements/adder.c: (message_received),
6039 (GST_START_TEST), (adder_suite):
6040 redo, signal-handling of test
6042 2006-05-09 Wim Taymans <wim@fluendo.com>
6044 * gst/adder/gstadder.c: (gst_adder_request_new_pad),
6045 (gst_adder_collected):
6046 * gst/adder/gstadder.h:
6047 Remove bogus segment merging and forwarding, we don't
6048 care about timestamps anyway and we just produce a
6050 Also create a nice NEWSEGMENT event when we start.
6051 Use _scale_int some more.
6053 2006-05-09 Edward Hervey <edward@fluendo.com>
6055 * tests/icles/stress-xoverlay.c:
6056 Fix if core was built without parsing support.
6058 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
6060 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6061 Add SEDG (Samsung MPEG-4) fourcc.
6063 2006-05-09 Edward Hervey <edward@fluendo.com>
6065 * tests/icles/stress-xoverlay.c:
6066 * tests/examples/volume/volume.c:
6067 Fix if core was built without parsing support.
6069 * tests/examples/seek/seek.c:
6070 Disable the parse_launch example if core was built without parsing
6073 2006-05-08 Edward Hervey <edward@fluendo.com>
6075 * autogen.sh: (CONFIGURE_DEF_OPT):
6076 libtoolize on Darwin/MacOSX is called glibtoolize
6078 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6080 * tests/check/Makefile.am:
6081 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
6082 Disable the adder test, until the build-slaves posses the kindness to
6083 either like it or to give valid reason for not doing so
6085 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6087 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
6089 Shuffle NULL state change around and raise timeout more
6091 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6093 * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
6094 (mp4_type_find), (plugin_init):
6095 Add typefind to distinguish between "audio/x-m4a" and new type
6096 "video/mp4". Fixes #340375
6098 * tests/check/elements/adder.c: (adder_suite):
6099 Raise timeout to make buildbot happy
6101 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6103 * gst/adder/gstadder.c: (gst_adder_sink_event),
6104 (gst_adder_request_new_pad), (gst_adder_change_state):
6105 * gst/adder/gstadder.h:
6106 * tests/check/Makefile.am:
6107 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
6108 (adder_suite), (main):
6109 Add sink-event handling to adder. It tries to merge incomming
6110 newsegment-events. Added test to check if segment_done is comming
6111 through. Fixes #340060
6113 2006-05-05 Andy Wingo <wingo@pobox.com>
6115 * ext/theora/theoraparse.c (gst_theora_parse_init)
6116 (theora_parse_src_convert, theora_parse_src_query):
6117 * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
6118 (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
6119 query functions on the source pads of the theora and vorbis parse
6120 elements. Fixes position querying when doing a remux.
6122 2006-05-05 Michael Smith <msmith@fluendo.com>
6124 * ext/theora/theoraparse.c: (parse_granulepos),
6125 (theora_parse_drain_queue_prematurely),
6126 (theora_parse_queue_buffer), (theora_parse_sink_event):
6128 Fix invalid granulepos outputs when starting with a non-keyframe.
6130 2006-05-05 Jan Schmidt <thaytan@mad.scientist.com>
6132 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
6133 (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
6134 Rearrange MPEG system stream detection, fixing some memleaks in the
6136 Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
6137 they clean up their data correctly.
6138 Remove unused ogganx caps and move the 'is_annodex' check to inside
6139 the 'is_ogg' if statement.
6141 2006-05-05 Wim Taymans <wim@fluendo.com>
6143 * gst/playback/gstdecodebin.c: (cleanup_decodebin):
6144 Properly remove ghostpads. Fixes #340392
6146 2006-05-04 David Schleef <ds@schleef.org>
6148 * gst/typefind/gsttypefindfunctions.c:
6150 2006-05-03 Jan Schmidt <thaytan@mad.scientist.com>
6152 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
6153 (mpeg_ts_probe_headers), (mpeg_ts_type_find):
6155 When typefinding an MP3 in push-based mode, don't penalise the
6156 probability down to 74% when we found 5 valid frames just because we
6157 can't peek the end of the file.
6159 Make the probability for detecting MPEG Transport Streams based on the
6160 number of sequential headers we successfully detected.
6162 2006-05-03 Wim Taymans <wim@fluendo.com>
6164 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
6165 (vorbis_dec_push), (vorbis_dec_chain):
6166 Still produce an error when we receive an empty packet.
6168 2006-05-03 Wim Taymans <wim@fluendo.com>
6170 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
6171 (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
6172 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
6173 Mark buffers with DISCONT after seek and after activating new
6176 * ext/theora/gsttheoradec.h:
6177 * ext/theora/theoradec.c: (gst_theora_dec_reset),
6178 (theora_get_query_types), (theora_dec_sink_event),
6179 (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
6180 (theora_dec_change_state):
6182 Detect and mark DISCONT buffers.
6184 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
6185 (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
6186 (vorbis_dec_change_state):
6187 * ext/vorbis/vorbisdec.h:
6189 Detect and mark DISCONT buffers.
6190 Don't crash on 0 sized buffers.
6192 2006-05-03 Wim Taymans <wim@fluendo.com>
6194 * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
6195 (volume_transform_ip):
6196 Increase "volume" property to 10.0. Fixes #340369.
6197 Set the process function to NULL when capsnego fails so that
6198 we properly error out.
6200 2006-05-02 Stefan Kost <ensonic@users.sf.net>
6202 * gst/playback/gstplaybin.c: (add_sink):
6203 * gst/playback/test.c: (main):
6204 * gst/playback/test5.c: (dump_element_stats):
6205 * gst/playback/test6.c: (main):
6206 free caps using gst_caps_unref, don't leak caps-strings
6208 2006-05-01 Tim-Philipp Müller <tim at centricular dot net>
6210 * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
6212 Refine musepack typefinding a bit. Return MAXIMUM
6213 probability when we detect stream version 7 to make
6214 sure the mpeg audio typefinder doesn't trump us.
6216 2006-04-29 Tim-Philipp Müller <tim at centricular dot net>
6218 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
6219 Protect against unexpected NULL strf_data buffer.
6221 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
6223 * tests/check/elements/audioconvert.c: (verify_convert),
6225 interpret the out[] buffer in the order the bytes are actually
6226 put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
6227 Other tests should use BYTE_ORDER since the array is filled in
6230 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
6232 * tests/check/elements/audioconvert.c: (verify_convert),
6234 when a test fails, give an indication of which it is
6236 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
6238 * gst-libs/gst/cdda/gstcddabasesrc.c:
6239 compile fix; strtol() needs <stdlib.h>
6241 2006-04-28 Stefan Kost <ensonic@users.sf.net>
6243 * ext/alsa/gstalsamixerelement.c:
6244 * ext/alsa/gstalsasrc.c:
6245 * ext/cdparanoia/gstcdparanoiasrc.c:
6246 * ext/gnomevfs/gstgnomevfssink.c:
6247 * ext/gnomevfs/gstgnomevfssrc.c:
6248 * ext/ogg/gstoggdemux.c:
6249 * ext/ogg/gstoggmux.c:
6250 * ext/ogg/gstoggparse.c:
6251 * ext/ogg/gstogmparse.c:
6252 * ext/pango/gstclockoverlay.c:
6253 * ext/pango/gsttextoverlay.c:
6254 * ext/pango/gsttextrender.c:
6255 * ext/pango/gsttimeoverlay.c:
6256 * ext/theora/theoradec.c:
6257 * ext/theora/theoraenc.c:
6258 * ext/vorbis/vorbisdec.c:
6259 * ext/vorbis/vorbisenc.c:
6260 * gst-libs/gst/audio/gstaudiofilter.c:
6261 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
6262 * gst/audioconvert/gstaudioconvert.c:
6263 * gst/audiorate/gstaudiorate.c:
6264 * gst/audioresample/gstaudioresample.c:
6265 * gst/audiotestsrc/gstaudiotestsrc.c:
6266 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6267 * gst/playback/gstdecodebin.c:
6268 * gst/playback/gstplaybin.c:
6269 * gst/playback/gststreamselector.c:
6270 * gst/subparse/gstsubparse.c:
6271 * gst/tcp/gstmultifdsink.c:
6272 * gst/tcp/gsttcpclientsink.c:
6273 * gst/tcp/gsttcpclientsrc.c:
6274 * gst/tcp/gsttcpserversink.c:
6275 * gst/tcp/gsttcpserversrc.c:
6276 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
6277 * gst/videorate/gstvideorate.c:
6278 * gst/videoscale/gstvideoscale.c:
6279 * gst/videotestsrc/gstvideotestsrc.c:
6280 * gst/volume/gstvolume.c:
6281 * sys/v4l/gstv4ljpegsrc.c:
6282 * sys/v4l/gstv4lmjpegsink.c:
6283 * sys/v4l/gstv4lmjpegsrc.c:
6284 * sys/v4l/gstv4lsrc.c:
6285 * sys/ximage/ximagesink.c:
6286 * sys/xvimage/xvimagesink.c:
6287 * tests/check/libs/cddabasesrc.c:
6288 make GstElementDetails const
6290 2006-04-28 Stefan Kost <ensonic@users.sf.net>
6292 * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
6294 send events from src-pad to all sink-pads fixes #338657
6296 2006-04-28 Stefan Kost <ensonic@users.sf.net>
6298 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
6299 (alsasink_parse_spec):
6300 query width capabilities from alsa, fixes #338919
6302 2006-04-28 Wim Taymans <wim@fluendo.com>
6304 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
6305 (gst_multi_fd_sink_remove_client_link):
6306 * gst/tcp/gstmultifdsink.h:
6307 Fix race condition in multifdsink that can lead to spurious
6308 duplicate clients. this patch adds a new signal that is fired when
6309 multifdsink has removed all references to the fd.
6311 Updated documentation.
6312 API: client-fd-removed signal added
6314 2006-04-28 Michael Smith <msmith@fluendo.com>
6316 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
6317 When asking g_value_array_new to prealloc elements, we may as well
6318 ask for the right number of elements.
6320 2006-04-28 Wim Taymans <wim@fluendo.com>
6322 * gst-libs/gst/audio/gstbaseaudiosink.c:
6323 (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
6324 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
6325 patch to make timestamp checking more tollerant to rounding
6326 errors given that real discontinuities are to be marked on
6327 buffers. Fixes some asf files and #338778.
6328 Also avoid some crashers when we receive an event in the
6331 2006-04-28 Michael Smith <msmith@fluendo.com>
6333 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
6334 (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
6335 (gst_gnome_vfs_src_get_property),
6336 (gst_gnome_vfs_src_send_additional_headers_callback),
6337 (gst_gnome_vfs_src_received_headers_callback),
6338 (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
6339 (gst_gnome_vfs_src_stop):
6340 * ext/gnomevfs/gstgnomevfssrc.h:
6341 Remove ICY handling (mostly) from gnomevfssrc, in favour of
6342 proper shared support within icydemux.
6344 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
6346 * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
6347 (gst_video_rate_swap_prev), (gst_video_rate_chain):
6349 fix a leak when no caps negotiated
6350 fix counting of input frames
6351 * tests/check/elements/.cvsignore:
6352 * tests/check/elements/videorate.c: (assert_videorate_stats),
6353 (GST_START_TEST), (videorate_suite):
6356 2006-04-28 Wim Taymans <wim@fluendo.com>
6358 * gst-libs/gst/audio/gstringbuffer.c:
6359 (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
6360 (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
6361 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
6362 (gst_ring_buffer_pause), (gst_ring_buffer_stop),
6363 (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
6364 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
6365 (gst_ring_buffer_commit), (gst_ring_buffer_read),
6366 (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
6367 (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
6368 Check arguments passed to public functions instead of
6371 2006-04-28 Wim Taymans <wim@fluendo.com>
6373 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
6374 (gst_base_audio_src_get_time), (gst_base_audio_src_create):
6375 GstBaseAudioSrc must be live or it does not work.
6377 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
6378 Don't set live to TRUE as this is the default in the parentclass.
6380 2006-04-28 Wim Taymans <wim@fluendo.com>
6382 * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
6383 (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
6384 Videoscale doesn't pass on pixel-aspect ratio. Handle all
6385 fixation cases better. Fixes #338991
6387 2006-04-28 Wim Taymans <wim@fluendo.com>
6389 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
6390 Handle 0/1 framerate correctly Fixes #331901.
6392 2006-04-28 Wim Taymans <wim@fluendo.com>
6394 * tests/check/elements/audioconvert.c: (get_float_caps),
6395 (GST_START_TEST), (audioconvert_suite):
6396 Added check for correct clipping when doing float samples
6399 2006-04-28 Wim Taymans <wim@fluendo.com>
6401 * gst/videorate/gstvideorate.c: (gst_video_rate_event),
6402 (gst_video_rate_chain):
6403 Print more debugging info.
6405 2006-04-28 Wim Taymans <wim@fluendo.com>
6407 * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
6408 (resample_set_state_from_caps):
6409 Add support for other formats audioresample can handle such as
6410 32 bits in and float and 64 bits float. Fixes #301759
6412 2006-04-28 Wim Taymans <wim@fluendo.com>
6414 * gst/audioconvert/audioconvert.c: (float):
6415 correctly clip float samples > 1.0. Fixes #338718
6417 2006-04-28 Tim-Philipp Müller <tim at centricular dot net>
6419 Patch by: Young-Ho Cha <ganadist at chollian net>
6421 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
6422 (gst_text_overlay_render_text):
6423 Don't strip newlines from the text. Also, center lines
6424 within multi-line paragraphs (#339405).
6426 2006-04-28 Tim-Philipp Müller <tim at centricular dot net>
6428 * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
6429 Fix wavpack typefinding to work in more cases (don't peek
6430 for chunks of multiple hundred kBs at once, but process
6431 things step-by-step in smaller units). Fixes #339786.
6433 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
6438 === release 0.10.6 ===
6440 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
6443 releasing 0.10.6, "Chao"
6445 2006-04-26 David Schleef <ds@schleef.org>
6447 * gst/videoscale/gstvideoscale.c: Add call to oil_init().
6450 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
6453 * win32/common/config.h:
6456 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
6458 patch by: Wim Taymans
6460 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
6461 (gst_ogg_demux_perform_seek):
6462 make sure correct newsegments are sent, so that the decoder
6463 and the demuxer agree on timestamps. Fixes playback of a lot
6464 of Ogg files that do not start from 0. Fixes #339833.
6466 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
6468 Patch by: Edward Hervey <edward@fluendo.com>
6470 * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
6471 * tests/check/Makefile.am:
6472 * tests/check/elements/videorate.c: (assert_videorate_stats),
6473 (setup_videorate), (cleanup_videorate), (GST_START_TEST),
6474 (videorate_suite), (main):
6475 Fix an infinite loop if frames are passed in with wrongly ordered
6476 timestamps. Fixes #339013.
6478 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
6480 Patch by: Tim-Philipp Müller <tim at centricular dot net>
6482 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
6483 fix typefinding on some ISO files. Fixes #339212.
6485 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
6487 Patch by: Tim-Philipp Müller <tim at centricular dot net>
6489 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6490 add another H264 fourcc. Fixes #339047.
6492 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
6494 Patch by: Jan Schmidt
6496 * gst/playback/gststreamselector.c:
6497 (gst_stream_selector_bufferalloc):
6498 Restore old StreamSelector behaviour.
6501 2006-04-12 Thomas Vander Stichele <thomas at apestaart dot org>
6504 * win32/common/config.h:
6507 2006-04-11 Tim-Philipp Müller <tim at centricular dot net>
6509 Patch by: Antoine Tremblay <hexa00 at gmail dot com>
6511 * gst-libs/gst/rtp/gstbasertpdepayload.c:
6512 (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
6513 Fix some memory leaks: on finalize, free buffers left in the queue
6514 before destroying the queue; in _push(), unref rtp_buf even if
6515 the process vfunc returned a NULL buffer as output buffer (#337548);
6516 demote some recuring debug messages to LOG level.
6518 2006-04-11 Wim Taymans <wim@fluendo.com>
6520 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6521 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6522 (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
6523 (gst_ogg_demux_loop):
6525 Respect segment stop when emiting EOS or SEGMENT_DONE.
6528 2006-04-11 Tim-Philipp Müller <tim at centricular dot net>
6530 * gst/playback/gststreamselector.c:
6531 (gst_stream_selector_get_property):
6532 Don't leak pad name.
6534 2006-04-10 Michael Smith <msmith@fluendo.com>
6536 * tests/check/Makefile.am:
6537 * tests/check/gst-plugins-base.supp:
6538 Suppress an old libtheora bug (fixed in more recent versions), so
6539 that FC4 buildslaves can pass.
6541 2006-04-10 Wim Taymans <wim@fluendo.com>
6543 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6544 (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
6545 (gst_ogg_demux_init), (gst_ogg_demux_finalize),
6546 (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
6547 (gst_ogg_demux_loop):
6549 Remember what error we got when finding chains, if we
6550 were shutdown, that would not be an error.
6552 2006-04-10 Wim Taymans <wim@fluendo.com>
6554 * gst-libs/gst/audio/gstbaseaudiosink.c:
6555 (gst_base_audio_sink_event):
6556 Starting the ringbuffer when we did not acquire it can cause
6557 a deadlock, is pointless and causes nasty things for
6559 Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
6561 2006-04-10 Wim Taymans <wim@fluendo.com>
6563 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6564 (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
6565 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6566 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
6567 (gst_ogg_demux_deactivate_current_chain),
6568 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
6569 (gst_ogg_demux_bisect_forward_serialno),
6570 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
6571 Add some more debugging.
6573 2006-04-10 Wim Taymans <wim@fluendo.com>
6575 * ext/theora/theoradec.c: (theora_dec_src_event),
6576 (theora_handle_data_packet):
6577 Some more debug info.
6579 * tests/examples/seek/seek.c: (start_seek), (main):
6580 Print element messages too.
6582 2006-04-09 Sebastien Moutte <sebastien@moutte.net>
6584 * gst/audioresample/debug.h:
6585 replace debug macros with variable number of parameters
6586 by a simple alias to gstreamer standard debug macros
6587 (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
6588 supported by MSVC 6.0 and 7.1)
6589 * gst/audioresample/resample.h:
6590 define M_PI and rint for WIN32
6591 * win32/common/libgstaudio.def:
6592 * win32/common/libgstriff.def:
6593 * win32/common/libgsttag.def:
6594 * win32/common/libgstvideo.def:
6595 add new exported functions
6597 update project files
6599 2006-04-08 Stefan Kost <ensonic@users.sf.net>
6601 * ext/alsa/gstalsamixeroptions.c:
6602 (gst_alsa_mixer_options_class_init):
6603 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
6604 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
6605 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
6606 * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
6607 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
6608 * gst-libs/gst/audio/gstaudiofilter.c:
6609 (gst_audio_filter_class_init):
6610 * gst-libs/gst/audio/gstaudiosink.c:
6611 (gst_audioringbuffer_class_init):
6612 * gst-libs/gst/audio/gstaudiosrc.c:
6613 (gst_audioringbuffer_class_init):
6614 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
6615 * gst-libs/gst/interfaces/colorbalancechannel.c:
6616 (gst_color_balance_channel_class_init):
6617 * gst-libs/gst/interfaces/mixeroptions.c:
6618 (gst_mixer_options_class_init):
6619 * gst-libs/gst/interfaces/mixertrack.c:
6620 (gst_mixer_track_class_init):
6621 * gst-libs/gst/interfaces/tunerchannel.c:
6622 (gst_tuner_channel_class_init):
6623 * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
6624 * gst-libs/gst/netbuffer/gstnetbuffer.c:
6625 (gst_netbuffer_class_init):
6626 * gst-libs/gst/rtp/gstbasertppayload.c:
6627 (gst_basertppayload_class_init):
6628 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
6629 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
6630 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
6631 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
6632 * gst/playback/gststreamselector.c:
6633 (gst_stream_selector_class_init):
6634 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
6635 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
6636 * sys/v4l/gstv4lcolorbalance.c:
6637 (gst_v4l_color_balance_channel_class_init):
6638 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
6639 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
6640 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
6641 * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
6642 (gst_v4l_tuner_norm_class_init):
6643 * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
6644 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
6645 * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
6646 Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
6648 2006-04-08 Stefan Kost <ensonic@users.sf.net>
6650 * ext/pango/gsttextrender.h:
6651 * gst-libs/gst/audio/gstaudiosink.h:
6652 * gst-libs/gst/audio/gstaudiosrc.h:
6653 * gst-libs/gst/audio/gstbaseaudiosink.h:
6654 * gst-libs/gst/audio/gstbaseaudiosrc.h:
6655 * gst-libs/gst/audio/gstringbuffer.h:
6656 * gst-libs/gst/rtp/gstbasertpdepayload.h:
6657 * gst-libs/gst/rtp/gstbasertppayload.h:
6658 * gst-libs/gst/video/gstvideofilter.h:
6659 * gst-libs/gst/video/gstvideosink.h:
6660 * gst/playback/gstplaybasebin.h:
6661 * gst/tcp/gstmultifdsink.h:
6662 * sys/v4l/gstv4lelement.h:
6663 Fix broken GObject macros
6665 2006-04-08 Stefan Kost <ensonic@users.sf.net>
6667 * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
6668 More debug to trace why my USB headset is not working with gst
6670 2006-04-07 Jan Schmidt <thaytan@mad.scientist.com>
6672 * gst/playback/gstplaybasebin.c: (group_destroy):
6673 Clean up our group elements properly in the case where it never
6674 got committed - it still got added unconditionally to the bin.
6676 2006-04-07 Wim Taymans <wim@fluendo.com>
6678 * ext/theora/theoradec.c: (theora_dec_sink_event),
6679 (theora_handle_data_packet), (theora_dec_chain):
6680 Unref unhandled events.
6681 Protect against empty buffers.
6682 Perform QoS on running time.
6684 2006-04-07 Michael Smith <msmith@fluendo.com>
6686 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
6687 (gst_vorbis_enc_chain):
6688 Remove leaks from vorbisenc.
6689 Mostly minor changes, the only significant one is that now the
6690 buffers we set as 'streamheader' on the caps are copies of the
6691 original buffers, to avoid circular refcounting problems.
6693 2006-04-07 Jan Schmidt <thaytan@mad.scientist.com>
6695 * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
6696 Don't remove our mute-probe if someone else already did so.
6697 Don't set a 2nd one if there is already one pending on the pad.
6699 * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
6701 When a seek fails, ensure that playbin is still set back to playing.
6703 * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
6704 (mpeg_ts_type_find), (plugin_init):
6705 Add a typefind function for mpeg-ts streams. (Closes: #336617)
6707 2006-04-06 Andy Wingo <wingo@pobox.com>
6709 * gst/videorate/gstvideorate.c (gst_video_rate_reset)
6710 (gst_video_rate_init): Caps-related parameters should not be reset
6711 by a flush -- move their inits to the instance init function.
6712 (gst_video_rate_flush_prev): Don't complain if gst_pad_push
6713 is not OK, just return the result.
6715 * gst/audiotestsrc/gstaudiotestsrc.c
6716 (gst_audio_test_src_class_init)
6717 (gst_audio_test_src_get_times): Re-enable is-live=true, as was
6718 broken by Stefan's commit on 24 March.
6720 * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
6721 buffers being pushed out. Fixes oggmux ! multifdsink.
6723 2006-04-05 Tim-Philipp Müller <tim at centricular dot net>
6725 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
6726 (gst_vorbis_dec_init), (vorbis_dec_finalize):
6727 * ext/vorbis/vorbisdec.h:
6728 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
6729 (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
6730 (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
6731 (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
6732 (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
6733 (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
6734 (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
6735 (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
6736 (gst_vorbis_enc_buffer_from_packet),
6737 (gst_vorbis_enc_buffer_from_header_packet),
6738 (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
6739 (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
6740 (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
6741 (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
6742 (gst_vorbis_enc_change_state):
6743 * ext/vorbis/vorbisenc.h:
6744 Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
6745 vorbisenc adhere to the official nomenclature; use boilerplate
6748 2006-04-04 Andy Wingo <wingo@pobox.com>
6750 * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6751 Whoops, fix bug introduced. Bad hacker!
6753 * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6754 Properly handle the case where you get EOS before any buffers are
6755 received. Use gst_buffer_make_metadata_writable where appropriate.
6757 * ext/theora/theoradec.c (theora_handle_data_packet): This value
6758 is often negative -- make it signed so as not to wrap around.
6759 Fixes segfaults introduced on 9 March.
6761 2006-04-03 Wim Taymans <wim@fluendo.com>
6763 * ext/theora/gsttheoradec.h:
6764 * ext/theora/theoradec.c: (theora_dec_src_event):
6765 Don't try to store a gdouble in a gboolean.
6768 2006-04-03 Michael Smith <msmith@fluendo.com>
6770 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
6772 Make it suck slightly less by writing out the final page.
6773 Still can't encode a vorbis-in-ogg file correctly, though.
6775 2006-04-03 Andy Wingo <wingo@pobox.com>
6777 * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
6780 * ext/theora/theora.c (plugin_init): Register theoraparse.
6782 * ext/theora/gsttheoraparse.h:
6783 * ext/theora/theoraparse.c: New files implementing a theora
6784 parser. Now we can properly remux ogg/theora+vorbis, yay.
6786 * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
6788 2006-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
6790 * gst/audiotestsrc/gstaudiotestsrc.c:
6791 Fixed the sample pipeline (see #323798)
6793 2006-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
6796 * win32/common/config.h:
6797 * win32/common/config.h.in:
6798 use AS_VERSION and AS_NANO
6801 2006-03-31 Andy Wingo <wingo@pobox.com>
6803 * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
6804 uninitialized variable return that would happen.
6806 * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
6807 uninitialized variable return that would never happen.
6809 * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
6810 (vorbis_parse_sink_event): Add an event function to flush our
6811 state on a seek, and to drain buffers on a premature EOS.
6812 (vorbis_parse_push_headers, vorbis_parse_clear_queue)
6813 (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely)
6814 (vorbis_parse_chain, vorbis_parse_queue_buffer)
6815 (vorbis_parse_drain_queue): Queue up buffers until we can set
6816 their timestamps and granulepos values.
6818 * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
6819 and keep track of data needed for deriving granulepos and
6820 timestamps for buffers.
6822 2006-03-29 Wim Taymans <wim@fluendo.com>
6824 Patch by: j^ <j at bootlab dot org>
6826 * ext/alsa/gstalsamixerelement.c:
6827 (gst_alsa_mixer_element_class_init):
6828 * ext/alsa/gstalsasink.c:
6829 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
6830 * ext/ogg/gstoggdemux.c:
6831 * ext/ogg/gstoggmux.c:
6832 * ext/ogg/gstoggparse.c:
6833 * ext/pango/gstclockoverlay.c:
6834 * ext/pango/gsttextoverlay.c:
6835 * ext/pango/gsttextrender.c:
6836 * ext/pango/gsttimeoverlay.c:
6837 * ext/theora/theoradec.c:
6838 * ext/theora/theoraenc.c:
6839 * ext/vorbis/vorbisdec.c:
6840 * ext/vorbis/vorbisenc.c:
6841 * gst/audioconvert/gstaudioconvert.c:
6842 * gst/subparse/gstsubparse.c:
6843 * gst/tcp/gstmultifdsink.c:
6844 * gst/tcp/gsttcpclientsink.c:
6845 * gst/tcp/gsttcpclientsrc.c:
6846 * gst/tcp/gsttcpserversink.c:
6847 * gst/tcp/gsttcpserversrc.c:
6848 better/unified long descriptions
6851 2006-03-29 Wim Taymans <wim@fluendo.com>
6853 * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
6855 Don't let double and triple clicks mess up our state.
6857 2006-03-28 Tim-Philipp Müller <tim at centricular dot net>
6859 * gst/playback/gstplaybin.c: (gen_video_element),
6860 (gen_text_element), (gen_audio_element), (gen_vis_element):
6861 Error out gracefully when we can't create any of the usual
6862 conversion elements for some reason. Also, don't try to
6863 create an audioscale (sic) element that's not used anyway.
6865 2006-03-28 Tim-Philipp Müller <tim at centricular dot net>
6867 * gst/playback/gstplaybasebin.c: (setup_source):
6868 Don't post RESOURCE_NOT_FOUND error when we can't find a source
6869 element for a particular protocol, that's confusing for users.
6870 Instead, post a RESOURCE_FAILED error, so that our own error
6871 message is actually shown in totem etc. (#336303).
6873 2006-03-27 Tim-Philipp Müller <tim at centricular dot net>
6875 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
6877 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
6878 (gst_gnome_vfs_src_get_icy_metadata):
6879 Fix some minor memory leaks (#336194).
6881 2006-03-27 Tim-Philipp Müller <tim at centricular dot net>
6883 * ext/gnomevfs/gstgnomevfs.c:
6884 (gst_gnome_vfs_location_to_uri_string):
6885 * ext/gnomevfs/gstgnomevfs.h:
6886 * ext/gnomevfs/gstgnomevfssink.c:
6887 (gst_gnome_vfs_sink_set_property):
6888 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
6889 Make gnomevfssink accept filenames as well as URIs for the
6890 "location" property, just like gnomevfssrc does (and
6891 filesrc/filesink do) (#336190).
6893 2006-03-24 Thomas Vander Stichele <thomas at apestaart dot org>
6895 * tests/check/generic/clock-selection.c: (GST_START_TEST):
6896 set to NULL before unreffing, fixes a valgrind leak.
6897 Why was this not triggering the error that an object needs to
6898 be NULL before unreffing ?
6899 * win32/common/config.h:
6902 2006-03-24 Tim-Philipp Müller <tim at centricular dot net>
6904 * gst/subparse/gstsubparse.c: (convert_encoding),
6905 (gst_sub_parse_change_state):
6906 * gst/subparse/gstsubparse.h:
6907 Text subtitle files may or may not be UTF-8. If it's not, we
6908 don't really want to see '?' characters in place of non-ASCII
6909 characters like accented characters. So let's assume the input
6910 is UTF-8 until we come across text that is clearly not. If it's
6911 not UTF-8, we don't really know what it is, so try the following:
6912 (a) see whether the GST_SUBTITLE_ENCODING environment variable
6913 is set; if not, check (b) if the current locale encoding is
6914 non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
6915 the current locale encoding is UTF-8 and the environment variable
6916 was not set to any particular encoding. Not perfect, but better
6917 than nothing (and better than before, I think) (fixes #172848).
6919 2006-03-24 Thomas Vander Stichele <thomas at apestaart dot org>
6922 update core requirement to 0.10.4.1 because of async_playback
6923 vmethod on GstBaseSink
6925 2006-03-24 Stefan Kost <ensonic@users.sf.net>
6927 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
6928 * gst/adder/gstadder.c: (gst_adder_init):
6929 use DEBUG_FUNCPTR for collectpads
6931 2006-03-24 Stefan Kost <ensonic@users.sf.net>
6933 * docs/plugins/Makefile.am:
6934 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6935 * docs/plugins/gst-plugins-base-plugins-sections.txt:
6936 * ext/cdparanoia/gstcdparanoiasrc.c:
6937 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
6938 (gst_gnome_vfs_sink_class_init):
6939 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
6940 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
6941 * ext/ogg/gstoggmux.c:
6942 * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
6943 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
6944 (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
6945 * ext/pango/gsttextoverlay.c:
6946 * ext/pango/gsttextrender.c:
6947 * ext/theora/theoradec.c:
6948 * ext/theora/theoraenc.c:
6949 * ext/vorbis/vorbisdec.c:
6950 * ext/vorbis/vorbisenc.c:
6951 * gst-libs/gst/audio/gstaudiofilter.c:
6952 (gst_audio_filter_base_init):
6953 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
6954 (gst_audio_filter_template_base_init):
6955 * gst/adder/gstadder.c: (gst_adder_get_type):
6956 * gst/adder/gstadder.h:
6957 * gst/audioconvert/gstaudioconvert.c:
6958 * gst/audiotestsrc/gstaudiotestsrc.c:
6959 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
6960 (gst_audio_test_src_create):
6961 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6962 * gst/playback/gstdecodebin.c:
6963 * gst/playback/gstplaybin.c:
6964 * gst/playback/gststreamselector.c:
6965 (gst_stream_selector_base_init):
6966 * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
6967 * gst/volume/gstvolume.c:
6968 * sys/v4l/gstv4lmjpegsink.c:
6969 * sys/v4l/gstv4lmjpegsrc.c:
6970 * tests/check/libs/cddabasesrc.c:
6971 * tests/old/examples/gob/gst-identity2.gob:
6972 Add docs for adder, use GST_ELEMENT_DETAILS macro,
6973 define GstElementDetails at the top
6975 2006-03-23 Sebastien Moutte <sebastien@moutte.net>
6977 * win32/common/libgstinterfaces.def:
6978 Add a lot of export functions for gst-python
6979 * win32/vs6/libgstinterfaces.dsp:
6980 Add a missing include folder in the project configuration
6982 2006-03-23 Wim Taymans <wim@fluendo.com>
6984 * gst-libs/gst/audio/gstbaseaudiosrc.c:
6985 (gst_base_audio_src_get_time), (gst_base_audio_src_create),
6986 (gst_base_audio_src_change_state):
6987 Fix audio sources, forgot to make the ringbuffer
6990 2006-03-23 Wim Taymans <wim@fluendo.com>
6992 * gst-libs/gst/audio/gstbaseaudiosrc.c:
6993 (gst_base_audio_src_get_time), (gst_base_audio_src_create),
6994 (gst_base_audio_src_change_state):
6995 unparent instead of unref the ringbuffer.
6997 2006-03-23 Wim Taymans <wim@fluendo.com>
6999 * gst-libs/gst/audio/gstbaseaudiosink.c:
7000 (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
7001 (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
7002 Implement new async_play vmethod to start slaving and allow
7003 playback start in case of async PLAY state changes.
7005 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7006 Enable QoS with new method in base class.
7008 2006-03-23 Wim Taymans <wim@fluendo.com>
7010 Patch by: Julien MOUTTE <julien at moutte dot net>
7012 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
7013 (gst_video_test_src_do_seek), (gst_video_test_src_create):
7014 Partially handle 0 framerate, only EOS after the first frame
7017 2006-03-23 Wim Taymans <wim@fluendo.com>
7019 Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
7021 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7022 (gst_riff_create_video_template_caps):
7023 * gst/ffmpegcolorspace/avcodec.h:
7024 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
7025 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
7026 (gst_ffmpegcsp_avpicture_fill):
7027 * gst/ffmpegcolorspace/imgconvert.c:
7028 Patch for support of YVU9 AVI files (#334822)
7030 2006-03-22 Edward Hervey <edward@fluendo.com>
7032 * docs/design/design-decodebin.txt:
7033 Added design document for new decodebin
7034 (Target Caps): text/x-pango-markup is also a default target caps.
7036 2006-03-22 Wim Taymans <wim@fluendo.com>
7038 * gst-libs/gst/audio/gstbaseaudiosink.c:
7039 (gst_base_audio_sink_dispose):
7040 Since we _parent the ringbuffer, we also need to
7041 _unparent instead of a plain _unref.
7043 2006-03-22 Wim Taymans <wim@fluendo.com>
7045 * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
7046 (stop_seek), (scrub_toggle_cb), (main):
7049 2006-03-21 Tim-Philipp Müller <tim at centricular dot net>
7051 * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
7052 (gst_ogg_parse_chain):
7053 Fix very inefficient usage of linked lists (#335365).
7055 2006-03-21 Edward Hervey <edward@fluendo.com>
7057 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
7058 * gst/playback/gstplaybin.c: (handoff):
7059 * gst/playback/gststreamselector.c:
7060 (gst_stream_selector_set_property):
7061 gcc 4.1 unreferenced pointer fixes.
7062 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
7063 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
7064 gst_buffer_ref() now takes a GstBuffer*.
7066 2006-03-20 Julien MOUTTE <julien@moutte.net>
7068 * sys/xvimage/xvimagesink.c:
7069 (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
7072 2006-03-19 Tim-Philipp Müller <tim at centricular dot net>
7074 * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
7075 (id3v1_type_find), (apetag_type_find), (plugin_init):
7076 Can't do tag preferences via probability, as tags would then
7077 lose against types that are recognised with MAXIMUM probability
7078 (like .wav); so let all tag typefinders return MAXIMUM themselves
7079 and order them via the rank. Split ID3v1 and ID3v2 typefinders so
7080 that we can prefer APE to ID3v1 (fixes #335028).
7082 2006-03-17 Wim Taymans <wim@fluendo.com>
7084 * gst-libs/gst/audio/gstbaseaudiosink.c:
7085 (gst_base_audio_sink_change_state):
7086 * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
7087 (gst_ring_buffer_may_start):
7088 * gst-libs/gst/audio/gstringbuffer.h:
7089 Only start playback if we are playing.
7092 2006-03-17 Jan Schmidt <thaytan@mad.scientist.com>
7094 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
7095 * win32/common/config.h:
7096 Revert accidental commits to these files.
7098 2006-03-16 Tim-Philipp Müller <tim at centricular dot net>
7100 Patch by: Michal Benes <michal dot benes at xeris dot cz>
7102 * tests/Makefile.am:
7103 Don't try to build tests in tests/icles if we
7104 don't have X (#323852)
7106 2006-03-16 Tim-Philipp Müller <tim at centricular dot net>
7108 * gst-libs/gst/tag/gstid3tag.c:
7109 Add TXXX frame identifiers for replaygain stuff as used
7110 by some taggers (see #323721).
7112 2006-03-16 Jan Schmidt <thaytan@mad.scientist.com>
7114 * gst/playback/gststreamselector.c:
7115 (gst_stream_selector_set_property),
7116 (gst_stream_selector_bufferalloc):
7117 Preserve the existing buggy streamselector behaviour by performing
7118 a fallback buffer allocation when downstream isn't linked yet.
7119 This should really be fixed in playbin by blocking pads until it's
7121 Also, use gst_pad_alloc_buffer instead of
7122 gst_pad_alloc_buffer_and_set.
7124 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
7126 * gst-libs/gst/tag/gstid3tag.c:
7127 Don't crash on unknown ID3v2 TXXX frames.
7129 2006-03-15 Jan Schmidt <thaytan@mad.scientist.com>
7131 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
7132 Chain up to the parent finalize method.
7133 Add 32-bit sample size to the template caps.
7135 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7136 (gst_riff_create_video_template_caps):
7137 Add the fourcc that the VMWare codec uses.
7139 * gst/playback/gststreamselector.c:
7140 (gst_stream_selector_set_property),
7141 (gst_stream_selector_bufferalloc),
7142 (gst_stream_selector_request_new_pad):
7143 For the active pad, forward buffer-alloc requests, otherwise
7144 return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
7145 having to memcpy every frame when used by playbin.
7147 * gst/tcp/gstmultifdsink.c:
7148 (gst_multi_fd_sink_handle_client_write):
7149 Get negotiated caps from the sink pad, rather than the sink
7152 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
7154 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
7156 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
7157 Don't forget to set src->callbacks_pushed to FALSE again when
7158 popping them, otherwise re-activation in a different mode won't
7161 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
7163 Patch by: Sebastien Moutte <sebastien moutte net>
7165 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
7166 (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
7167 (gst_ffmpeg_smpfmt_to_caps):
7168 Replace __VA_ARGS__ caps creation macros with varargs functions.
7169 Makes things compile on MSVC (#320765), looks nicer, and we can
7170 tell the compiler to check for the NULL terminator.
7172 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
7174 Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
7176 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7177 Make sure the buffer we copy into is really always big
7178 enough, this time for real (#333488).
7180 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
7182 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7183 Add support for 24bpp DIB (#305279).
7185 2006-03-14 Wim Taymans <wim@fluendo.com>
7187 * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
7188 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7189 * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
7190 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
7191 (gst_video_scale_init), (gst_video_scale_src_event):
7192 Re-enable QoS after the release.
7193 Rework videoscale to use the base class src_event handler.
7195 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
7200 === release 0.10.5 ===
7202 2006-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
7205 releasing 0.10.5, "Net"
7207 2006-03-13 Tim-Philipp Müller <tim at centricular dot net>
7209 * docs/plugins/Makefile.am:
7210 Part of previous cdparanoiasrc docs fixes, forgot to commit.
7212 2006-03-12 Tim-Philipp Müller <tim at centricular dot net>
7214 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7215 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7216 * docs/plugins/gst-plugins-base-plugins.hierarchy:
7217 Add cdparanoiasrc to docs.
7219 * gst-libs/gst/cdda/gstcddabasesrc.c:
7220 More GstCddaBaseSrc docs.
7222 2006-03-12 Tim-Philipp Müller <tim at centricular dot net>
7224 * docs/libs/gst-plugins-base-libs-sections.txt:
7225 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
7226 * gst-libs/gst/tag/tag.h:
7227 API: libgsttag: new method gst_tag_from_id3_user_tag().
7229 2006-03-11 Tim-Philipp Müller <tim at centricular dot net>
7231 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7232 NULL-terminate array of mpeg4 video file extensions.
7233 Fixes crash on PPC (#334226).
7235 2006-03-11 Tim-Philipp Müller <tim at centricular dot net>
7237 * ext/gnomevfs/gstgnomevfssrc.c:
7238 (gst_gnome_vfs_src_check_get_range):
7239 gnome_vfs_uri_is_local() alone is not a good indicator
7240 whether we can operate in pull-mode with a specific URI,
7241 as it returns FALSE for file:// URIs that point to an
7242 NFS-mounted path. Be more conservative here: whitelist
7243 local files, blacklist http URIs and use the old
7244 mechanism for anything else (fixes #334216).
7246 2006-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
7251 === release 0.10.4 ===
7253 2006-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
7256 releasing 0.10.4, "Power"
7258 2006-03-10 Jan Schmidt <thaytan@mad.scientist.com>
7260 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7261 Disable max-lateness by setting it to -1 for now, so that
7262 we can bed QoS stuff in thoroughly between now and the next
7265 2006-03-10 Tim-Philipp Müller <tim at centricular dot net>
7267 Patch by: Fabrizio Gennari
7269 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7270 Make sure we don't read beyond the palette buffer in case of
7271 broken or manipulated files (#333488)
7273 2006-03-10 Edward Hervey <edward@fluendo.com>
7275 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
7276 Fix for variable not initialized.
7278 2006-03-09 Wim Taymans <wim@fluendo.com>
7280 * ext/libvisual/visual.c: (gst_visual_get_type),
7281 (gst_visual_src_setcaps), (gst_vis_src_negotiate),
7285 * ext/theora/gsttheoradec.h:
7286 * ext/theora/theoradec.c: (gst_theora_dec_init),
7287 (gst_theora_dec_reset), (_theora_granule_time),
7288 (theora_dec_src_convert), (theora_dec_sink_convert),
7289 (theora_dec_src_query), (theora_dec_src_event),
7290 (theora_dec_sink_event), (theora_handle_comment_packet),
7291 (theora_handle_header_packet), (theora_dec_push),
7292 (theora_handle_data_packet), (theora_dec_chain),
7293 (theora_dec_change_state):
7296 2006-03-09 Wim Taymans <wim@fluendo.com>
7298 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
7299 (audiocast_register_listener), (gst_gnome_vfs_src_start):
7302 2006-03-09 Wim Taymans <wim@fluendo.com>
7304 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
7305 Don't try to activate NULL chains.
7307 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7309 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
7310 Fix invalid memory access to region before peek'd data (#332964).
7312 2006-03-09 Wim Taymans <wim@fluendo.com>
7314 Patch by: Christophe Fergeau
7316 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
7317 * ext/pango/gsttextrender.c: (gst_text_render_init):
7318 * gst/adder/gstadder.c: (gst_adder_init):
7319 Don't leak padtemplates, closes #333510.
7321 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7323 * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
7324 Fix invalid memory access: make sure string passed to
7325 regexec() is NUL-termianted.
7327 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7329 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
7331 Refactor mpeg/audio typefinding to make it more maintainable
7332 and easier to fine-tune. Make probing into middle of the file
7333 work properly (fixes #333900, also see #152688).
7335 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7337 * gst/typefind/gsttypefindfunctions.c:
7338 (utf8_type_find_have_valid_utf8_at_offset):
7339 Remove part from previous commit that was bogus:
7340 g_utf8_validate() does in fact not accept embedded
7341 zeroes, so we don't need to check for those (thanks
7342 to Mike for the hint).
7344 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
7346 * gst/typefind/gsttypefindfunctions.c:
7347 (utf8_type_find_count_embedded_zeroes),
7348 (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
7349 Make plain/text typefinder more conservative: firstly, check
7350 for embedded zeroes, which are perfectly valid UTF-8 characters,
7351 but also a fairly good sign that something is not a plain text
7352 file; secondly, probe into the middle of the file if possible.
7353 If we can't probe into the middle, limit the probability value
7354 to be returned to TYPE_FIND_POSSIBLE (see #333900).
7356 2006-03-08 Michael Smith <msmith@fluendo.com>
7358 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7359 Make typefind function name for mpeg4 video unique.
7361 2006-03-08 Wim Taymans <wim@fluendo.com>
7363 * ext/libvisual/visual.c: (gst_visual_init),
7364 (gst_visual_clear_actors), (gst_visual_dispose),
7365 (gst_visual_reset), (gst_visual_src_setcaps),
7366 (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
7367 (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
7368 (gst_visual_chain), (gst_visual_change_state):
7369 Cleanups, post nice errors.
7370 Handle sink and src events.
7371 Implement simple QoS.
7373 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7374 Use new basesink methods to configure max-lateness.
7377 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7378 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
7379 Debug statement cleanups.
7381 * gst/volume/gstvolume.c: (gst_volume_class_init):
7384 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
7386 * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
7387 (gst_text_overlay_init), (gst_text_overlay_set_property),
7388 (gst_text_overlay_get_property):
7389 Revert API/ABI break from March 1. Keep 'halign' and 'valign'
7390 as string type properties, but mark them deprecated. Add
7391 'halignment' and 'valignment' properties that use enums
7394 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
7396 Patch by: Fabrizio Gennari
7398 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7399 Allow palettes with less than 256 colours in AVI files
7402 2006-03-07 Julien MOUTTE <julien@moutte.net>
7404 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
7405 (gst_text_overlay_video_event): Fix wrong EOS handling on text
7406 pad. We were releasing the queued text buffer when we should keep
7407 it until video pad gets EOS or discard the text buffer because it's
7408 too old. That was eating the last subtitle buffer. Add some more
7411 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7413 * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
7414 (gst_text_overlay_video_chain):
7415 Fix invalid memory access (we can't access a buffer after it's been
7416 pushed downstream without taking a reference); fix memory leak (if
7417 there's no text to render, bail out before allocating stuff).
7419 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7421 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
7422 (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
7423 * ext/pango/gsttextoverlay.h:
7424 If input is plain text, escape it before passing it to
7425 pango_layout_set_markup().
7427 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7429 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
7430 Don't ignore flow return from gst_pad_push().
7432 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7434 Patch by: Fabrizio Gennari
7436 * ext/libvisual/visual.c: (gst_visual_getcaps),
7437 (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
7438 * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
7439 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
7440 (gst_vorbisenc_convert_sink):
7441 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
7442 (gst_audio_duration_from_pad_buffer):
7443 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
7444 (gst_audio_filter_chain):
7445 * gst-libs/gst/rtp/gstbasertpdepayload.c:
7446 (gst_base_rtp_depayload_setcaps):
7447 * gst-libs/gst/video/video.c: (gst_video_frame_rate),
7448 (gst_video_get_size):
7449 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
7450 Don't leak references returned by gst_pad_get_parent()
7453 2006-03-06 Stefan Kost <ensonic@users.sf.net>
7455 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
7456 change location param details
7457 * gst/volume/gstvolume.c: (plugin_init):
7458 correct plugin description
7460 2006-03-06 Tim-Philipp Müller <tim at centricular dot net>
7462 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
7463 (gst_gnome_vfs_src_check_get_range):
7464 Override GstBaseSrc::check_get_range() in order to avoid opening
7465 the resource just to check whether we can operate in pull-mode or
7466 not - we can predict that pretty well from the URI alone. Should
7467 fix problems with last.fm (#331690). (Requires latest core CVS).
7469 2006-03-06 Wim Taymans <wim@fluendo.com>
7471 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
7472 (gst_video_sink_class_init):
7473 Throw away frames that are later than 20 ms.
7475 2006-03-06 Tim-Philipp Müller <tim at centricular dot net>
7477 Patch by: Fabrizio Gennari
7479 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
7480 Set depth on WMA caps (#333545)
7482 2006-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
7484 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
7485 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
7486 put Theora BOS pages before others. This hardcodes
7487 the Ogg/Theora I profile, but hey.
7489 2006-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
7492 updated with some examples
7493 * ext/theora/theoraenc.c: (granulepos_to_timestamp),
7494 (granulepos_add), (theora_buffer_from_packet):
7495 * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
7496 (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
7497 (gst_vorbisenc_chain):
7498 implement strategy from ext/ogg/README
7499 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
7500 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
7501 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
7502 (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
7503 Fix muxer so that oggz-validate is happy with all streams;
7504 except for no eos mark, and the BOS page ordering
7505 * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
7506 (check_buffer_granulepos):
7507 * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
7508 update tests to check for OFFSET being set as requested
7509 fixed type of granulepos, it's not a ClockTime
7511 2006-03-05 Julien MOUTTE <julien@moutte.net>
7513 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
7514 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
7515 Check that the xvimage we are creating has a correct size
7516 before returning it. (#314897)
7518 2006-03-05 Tim-Philipp Müller <tim at centricular dot net>
7520 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7521 Give id3 and ape tag typefinders a rank slightly higher
7522 than PRIMARY to ensure they're always run before any of
7523 the other typefinders (in particular wav and mp3) (#324186).
7525 2006-03-05 Tim-Philipp Müller <tim at centricular dot net>
7527 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7528 Add support for '3IVD' fourcc (#333403).
7530 2006-03-04 Tim-Philipp Müller <tim at centricular dot net>
7533 Bump requirements to GStreamer CVS for the new error enum.
7535 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
7536 Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
7537 space left on the device (fixes #333352).
7539 2006-03-04 Sebastien Moutte <sebastien@moutte.net>
7542 add a project file for libgstvolume
7543 update the workspace
7545 2006-03-03 Thomas Vander Stichele <thomas at apestaart dot org>
7547 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
7548 * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
7550 Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
7551 Set IN_CAPS on header buffers
7553 2006-03-02 Wim Taymans <wim@fluendo.com>
7555 * docs/plugins/Makefile.am:
7556 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7557 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7558 Add audioresample to docs.
7560 * gst/audioconvert/gstaudioconvert.c:
7563 * gst/audioresample/gstaudioresample.c:
7564 (gst_audioresample_base_init), (gst_audioresample_class_init),
7565 (gst_audioresample_init), (gst_audioresample_dispose),
7566 (audioresample_get_unit_size), (audioresample_transform_caps),
7567 (resample_set_state_from_caps), (audioresample_transform_size),
7568 (audioresample_set_caps), (audioresample_event),
7569 (audioresample_do_output), (audioresample_transform),
7570 (audioresample_pushthrough), (gst_audioresample_set_property),
7571 (gst_audioresample_get_property), (plugin_init):
7572 * gst/audioresample/gstaudioresample.h:
7574 Small code cleanups.
7576 2006-03-02 Wim Taymans <wim@fluendo.com>
7578 * docs/plugins/Makefile.am:
7579 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7580 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7581 Added videoscale to docs.
7583 * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
7584 (gst_video_rate_swap_prev), (gst_video_rate_event),
7585 (gst_video_rate_chain):
7588 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
7589 (gst_video_scale_init), (gst_video_scale_prepare_size),
7590 (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
7591 (gst_video_scale_fixate_caps), (gst_video_scale_transform):
7592 * gst/videoscale/gstvideoscale.h:
7593 Added docs, examples.
7595 Post errors instead of g_warning.
7597 2006-03-02 Wim Taymans <wim@fluendo.com>
7599 * docs/libs/gst-plugins-base-libs-docs.sgml:
7600 * docs/libs/gst-plugins-base-libs-sections.txt:
7601 * docs/libs/gst-plugins-base-libs.types:
7602 * docs/plugins/Makefile.am:
7603 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7604 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7605 Added some more docs to libs and plugins.
7607 * gst-libs/gst/audio/gstringbuffer.c:
7608 (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
7609 * gst-libs/gst/audio/gstringbuffer.h:
7610 Document ringbuffer some more.
7612 * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
7613 (gst_video_rate_setcaps), (gst_video_rate_reset),
7614 (gst_video_rate_init), (gst_video_rate_flush_prev),
7615 (gst_video_rate_swap_prev), (gst_video_rate_event),
7616 (gst_video_rate_chain), (gst_video_rate_change_state):
7617 * gst/videorate/gstvideorate.h:
7618 Fix videorate to use segments.
7619 Make it work with 0/1 framerates (closes #331903)
7620 Handle EOS correctly.
7623 2006-03-02 Tim-Philipp Müller <tim at centricular dot net>
7625 * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
7626 (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
7627 (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
7628 In state change function, first chain up to parent class,
7629 then handle downwards state change stuff. Remove some
7630 commented out cruft from 0.8 code.
7632 2006-03-02 Tim-Philipp Müller <tim at centricular dot net>
7634 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
7635 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
7636 (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
7637 (gst_ogm_parse_chain):
7638 Don't remove/re-add source pad if the new caps are the same as
7639 the old caps anyway (#333042). When removing source pad, don't
7640 unref it afterwards - we didn't ref it when adding. Sprinkle some
7641 GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
7642 after using gst_pad_get_parent(). Return downstream flow return
7643 value in chain function.
7645 2006-03-02 Wim Taymans <wim@fluendo.com>
7647 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7648 * docs/plugins/gst-plugins-base-plugins.args:
7649 * docs/plugins/gst-plugins-base-plugins.hierarchy:
7650 * docs/plugins/gst-plugins-base-plugins.interfaces:
7651 * docs/plugins/gst-plugins-base-plugins.signals:
7652 Fix hierarchy, added some more elements to the docs.
7654 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7655 (gst_ffmpegcsp_get_type):
7656 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7657 Fix docs for ffmpegcolorspace.
7659 2006-03-01 Tim-Philipp Müller <tim at centricular dot net>
7661 * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
7662 (apetag_type_find), (ape_type_find), (plugin_init):
7663 Some typefinding fine-tuning:
7664 - rank ID3/APE tags in order of preference via probabilities, so that
7665 ID3v2 > APEv2 > APEv1 > ID3v1.
7666 - three or four bytes don't really justify MAXIMUM probability,
7667 change those to 'very likely' (musepack and monkeysaudio).
7669 2006-03-01 Wim Taymans <wim@fluendo.com>
7671 * docs/plugins/Makefile.am:
7672 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7673 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7674 * ext/alsa/gstalsamixer.c:
7675 * ext/alsa/gstalsamixer.h:
7676 * ext/alsa/gstalsamixerelement.c:
7677 (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
7678 * ext/alsa/gstalsamixerelement.h:
7679 * ext/alsa/gstalsasink.c:
7680 * ext/alsa/gstalsasink.h:
7681 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
7683 * ext/alsa/gstalsasrc.h:
7685 Small code cleanups.
7687 2006-03-01 Wim Taymans <wim@fluendo.com>
7689 * ext/theora/Makefile.am:
7690 Dist new header too,
7692 2006-03-01 Wim Taymans <wim@fluendo.com>
7694 * docs/plugins/Makefile.am:
7695 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7696 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7697 * ext/gnomevfs/gstgnomevfssink.h:
7698 * ext/gnomevfs/gstgnomevfssrc.h:
7699 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
7700 * ext/vorbis/vorbisdec.h:
7701 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
7702 * ext/vorbis/vorbisenc.h:
7703 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
7704 (vorbis_parse_chain), (vorbis_parse_change_state):
7705 * ext/vorbis/vorbisparse.h:
7706 * gst/audioconvert/gstaudioconvert.h:
7707 * gst/tcp/gsttcpserversink.h:
7708 * gst/videotestsrc/gstvideotestsrc.c:
7709 * gst/videotestsrc/gstvideotestsrc.h:
7710 * gst/volume/gstvolume.c:
7711 * gst/volume/gstvolume.h:
7713 Added docs for vorbisdec and vorbisparse.
7716 2006-03-01 Wim Taymans <wim@fluendo.com>
7718 * docs/plugins/Makefile.am:
7719 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7720 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7721 * ext/pango/gstclockoverlay.h:
7722 * ext/pango/gsttextoverlay.h:
7723 * ext/pango/gsttextrender.h:
7724 * ext/pango/gsttimeoverlay.h:
7725 * ext/theora/gsttheoradec.h:
7726 * ext/theora/gsttheoraenc.h:
7727 * ext/theora/theoradec.c:
7728 * ext/theora/theoraenc.c:
7729 * gst/audioconvert/gstaudioconvert.h:
7730 * gst/audiotestsrc/gstaudiotestsrc.h:
7731 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7732 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
7733 * gst/tcp/gstmultifdsink.h:
7734 Updated/added documentation.
7736 * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
7737 (gst_text_overlay_halign_get_type),
7738 (gst_text_overlay_wrap_mode_get_type),
7739 (gst_text_overlay_base_init), (gst_text_overlay_class_init),
7740 (gst_text_overlay_init), (gst_text_overlay_set_property),
7741 (gst_text_overlay_get_property):
7742 Fix up properties to be enums instead of string to make bindings,
7743 introspection and automatic GUI creation possible.
7744 Add getters for the properties.
7746 2006-02-28 Sebastien Moutte <sebastien@moutte.net>
7748 * gst/audiotestsrc/gstaudiotestsrc.c:
7749 added defines of M_PI and M_PI_2
7750 * gst/ffmpegcolorspace/avcodec.h:
7751 removed #include "stdint.h" for win32 as _stdint.h is
7752 autogenerated to win32/common
7753 * win32/common/libgstaudio.def:
7754 * win32/common/libgsttag.def:
7757 some project files bugs corrected
7759 project files are reset to the default vs7 configuration
7760 (they link to msvcr71.dll using default optimizations)
7762 2006-02-28 Wim Taymans <wim@fluendo.com>
7764 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
7767 2006-02-28 Edward Hervey <edward@fluendo.com>
7769 * ext/alsa/gstalsasrc.c:
7770 Set proper class on the ElementDetails:
7771 Source/Audio instead of Src/Audio/
7773 2006-02-28 Edward Hervey <edward@fluendo.com>
7775 * gst/videoscale/vs_scanline.c:
7776 (vs_scanline_resample_nearest_RGBA):
7777 Revert optimization in videoscale. It should go in liboil and have
7778 an appropriate liboil function.
7780 2006-02-28 Wim Taymans <wim@fluendo.com>
7782 * gst-libs/gst/audio/gstbaseaudiosink.c:
7783 (gst_base_audio_sink_provide_clock):
7784 Don't try to provide a clock in the NULL state.
7786 2006-02-28 Wim Taymans <wim@fluendo.com>
7788 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
7789 (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
7790 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7791 (gst_ogg_demux_deactivate_current_chain),
7792 (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
7793 (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
7794 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
7795 (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
7796 Use GstSegment infrastructure to remove duplicated code
7797 and handle more seek cases correctly.
7799 2006-02-28 Wim Taymans <wim@fluendo.com>
7801 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7802 (gst_ffmpegcsp_transform):
7803 Don't ignore return code from ffmpeg convert function.
7805 * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
7806 Split out some long statements to ease debugging.
7808 2006-02-27 Jan Schmidt <thaytan@mad.scientist.com>
7810 * ext/libvisual/visual.c: (gst_visual_init),
7811 (gst_vis_src_negotiate), (get_buffer), (plugin_init):
7812 Don't use gst_pad_use_fixed_caps, because it prevents downstream from
7813 being able to renegotiate the size. Instead, use the negotiation
7814 algorithm from the goom plugin to pick an initial output caps.
7816 Also, allow theoretical libvisual plugins that might support non-GL
7817 output even if they also do GL.
7819 2006-02-26 Julien MOUTTE <julien@moutte.net>
7821 * ext/libvisual/visual.c: (gst_visual_init),
7822 (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
7823 (plugin_init): Load only non GL plugins. Fix some memleaks and
7824 possible negotiation issues.
7826 2006-02-25 Julien MOUTTE <julien@moutte.net>
7828 * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
7830 2006-02-24 Michael Smith <msmith@fluendo.com>
7832 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
7833 (cmml_type_find), (plugin_init):
7834 Fix CMML type find function to not require a specific minor version
7837 Add an MPEG4 video elementary stream typefind function.
7839 2006-02-04 Michael Smith <msmith@fluendo.com>
7841 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
7842 (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
7843 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7844 (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
7845 (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
7846 (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
7847 Annodex support in ogg demuxer. Doesn't do very much without the
7848 other annodex patches (to come).
7850 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7852 Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
7854 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7855 Pick up palette for MS video v1 (#327028)
7857 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7859 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7860 (gst_ffmpegcsp_caps_remove_format_info),
7861 (gst_ffmpegcsp_get_unit_size):
7862 The 'palette_data' field from incoming RGB caps shouldn't be
7863 proxied on outgoing YUV caps; also, restrict unit size
7864 adjustment in case of paletted data only to the unit that
7865 actually has a palette. Fixes #330711.
7867 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7869 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7870 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
7871 (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
7872 (gst_ffmpegcsp_get_unit_size):
7873 Plug some memory leaks.
7875 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7877 * sys/ximage/Makefile.am:
7878 * sys/xvimage/Makefile.am:
7879 Add some _CFLAGS and _LIBS that seem to be missing
7880 and/or required for Cygwin (see #317048).
7882 2006-02-22 Wim Taymans <wim@fluendo.com>
7884 * ext/alsa/gstalsasrc.c:
7885 Fix description as pointed out by caugier.
7887 2006-02-22 Tommi Myöhänen <ext-tommi do myohanen at nokia dot com>
7889 Reviewed by : Edward Hervey <edward@fluendo.com>
7891 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
7893 Better 3gp typefinding (#331526).
7895 2006-02-21 Tim-Philipp Müller <tim at centricular dot net>
7897 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
7898 Don't send EOS event here, the base class will send one for us.
7900 * gst/playback/gstplaybasebin.c: (prepare_output):
7901 Subpictures without video stream aren't allowed either.
7903 * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
7904 Fix debug statement copy'n'paste-o.
7906 2006-02-21 Tim-Philipp Müller <tim at centricular dot net>
7908 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
7909 Fix issues with mixer keeping state when muting/unmuting
7910 and when changing the volume whilst muted (see #331763
7913 2006-02-20 Tim-Philipp Müller <tim at centricular dot net>
7915 * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
7916 (parse_subrip), (gst_sub_parse_format_autodetect):
7917 Set right caps given that we send escaped text. Also,
7918 honour <i></i>, <b></b> and <u></u> markers that can be found
7919 in .srt files (fixes #310202).
7921 2006-02-20 Tim-Philipp Müller <tim at centricular dot net>
7923 * gst-libs/gst/audio/mixerutils.c:
7924 (element_factory_rank_compare_func):
7925 Make order in which elements are tried more determinable.
7927 2006-02-20 Julien MOUTTE <julien@moutte.net>
7929 * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
7930 (remove_element_chain), (cleanup_decodebin),
7931 (gst_decode_bin_change_state): Make decodebin reusable by
7932 fixing remove_element_chain first and then introduce a
7933 cleaner in state change to ->NULL. (Closes #331678)
7935 2006-02-19 Wim Taymans <wim@fluendo.com>
7937 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
7938 use 0666 mask when creating files so umask gets applied
7939 correctly. Fixes #331295.
7941 2006-02-19 Tim-Philipp Müller <tim at centricular dot net>
7943 * gst/subparse/Makefile.am:
7944 * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
7945 (gst_ssa_parse_dispose), (gst_ssa_parse_init),
7946 (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
7947 (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
7948 (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
7949 (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
7950 * gst/subparse/gstssaparse.h:
7951 * gst/subparse/gstsubparse.c: (plugin_init):
7952 Add very basic parser for SSA subtitle streams (as often
7953 found in matroska files).
7955 2006-02-19 Tim-Philipp Müller <tim at centricular dot net>
7957 * gst/playback/gstdecodebin.c: (mimetype_is_raw):
7958 That should be text/x-pango-markup, not text/x-pango-layout.
7960 2006-02-19 Julien MOUTTE <julien@moutte.net>
7962 * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
7965 2006-02-19 Julien MOUTTE <julien@moutte.net>
7967 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
7968 (gst_text_overlay_finalize), (gst_text_overlay_init),
7969 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
7970 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
7971 (gst_text_overlay_text_event), (gst_text_overlay_video_event),
7972 (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
7973 (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
7974 Fix state change deadlock.
7976 2006-02-19 Julien MOUTTE <julien@moutte.net>
7978 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
7979 (gst_text_overlay_finalize), (gst_text_overlay_init),
7980 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
7981 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
7982 (gst_text_overlay_text_event), (gst_text_overlay_video_event),
7983 (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
7984 (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
7985 * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
7986 and subtitles files.
7988 2006-02-19 Julien MOUTTE <julien@moutte.net>
7990 * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
7991 should be considered as raw.
7993 2006-02-19 Julien MOUTTE <julien@moutte.net>
7995 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
7997 * gst/playback/gststreaminfo.h: Introduce language informations.
7999 2006-02-18 Jan Schmidt <thaytan@mad.scientist.com>
8001 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
8002 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
8003 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
8004 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
8005 Set shared memory segments to be deleted as soon as we have attached,
8006 that way they get cleaned up automatically if we crash.
8008 2006-02-18 Julien MOUTTE <julien@moutte.net>
8010 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text):
8011 * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
8012 functions are called with lock held.
8014 2006-02-18 Julien MOUTTE <julien@moutte.net>
8016 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
8017 (gst_text_overlay_finalize), (gst_text_overlay_init),
8018 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
8019 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
8020 (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
8021 (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
8022 (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
8023 (gst_text_overlay_change_state): Refactoring of textoverlay
8024 without collectpads. This now supports sparse subtitles coming
8025 from a demuxer instead of a sub file. Seeking is still broken
8026 though. Need to discuss with wtay some more on how to handle
8028 * ext/pango/gsttextoverlay.h:
8029 * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
8030 subtitles coming from the demuxer.
8032 2006-02-17 Wim Taymans <wim@fluendo.com>
8034 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
8035 (gst_vorbisenc_convert_sink):
8036 Use some more scaling functions.
8038 2006-02-17 Tim-Philipp Müller <tim at centricular dot net>
8040 * ext/cdparanoia/gstcdparanoiasrc.c:
8041 (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
8042 (gst_cd_paranoia_paranoia_callback),
8043 (gst_cd_paranoia_src_signal_is_being_watched),
8044 (gst_cd_paranoia_src_read_sector):
8045 * ext/cdparanoia/gstcdparanoiasrc.h:
8046 Add back 'transport-error' and 'uncorrected-error' signals and
8047 make them actually be fired when bad stuff happens (#319340).
8049 2006-02-17 Wim Taymans <wim@fluendo.com>
8051 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
8052 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
8053 (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
8054 (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
8055 (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
8056 (gst_ring_buffer_pause), (gst_ring_buffer_stop),
8057 (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
8058 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
8059 (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
8060 (gst_ring_buffer_clear):
8062 Added some G_LIKELY.
8064 2006-02-17 Wim Taymans <wim@fluendo.com>
8066 * gst-libs/gst/audio/TODO:
8069 * gst-libs/gst/audio/gstbaseaudiosink.c:
8070 (gst_base_audio_sink_get_offset):
8071 When trying to play samples ASAP and we don't have a
8072 previous sample, try to play at position 0 instead of
8073 an invalid position.
8075 2006-02-17 Wim Taymans <wim@fluendo.com>
8077 * ext/alsa/gstalsasink.c: (gst_alsasink_open),
8078 (gst_alsasink_reset):
8079 Also release lock when we get an error in _reset();
8080 fix an error message.
8082 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8084 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
8085 (gst_alsasink_init), (get_channel_free_structure),
8086 (caps_add_channel_configuration), (gst_alsasink_getcaps),
8087 (gst_alsasink_close):
8088 * ext/alsa/gstalsasink.h:
8089 Add support for more than 2 channels (#326720).
8091 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8093 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8094 Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
8095 with 4 or 6 channels, assume a default channel layout to make things
8096 work (not sure there's anything else we can do in those cases).
8098 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8100 * gst-libs/gst/audio/multichannel.c:
8103 * gst-libs/gst/riff/Makefile.am:
8104 * gst-libs/gst/riff/riff-ids.h:
8105 * gst-libs/gst/riff/riff-media.c:
8106 (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
8107 Add support for WAVEFORMATEX, eg. PCM audio with more than two
8108 channels and a channel layout map.
8110 2006-02-16 Mathieu Garcia <b0nk at free dot fr>
8112 Reviewed by Edward Hervey <edward@fluendo.com>
8114 * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA):
8115 C-level optimization of the RGBA nearest neighbour function.
8116 Eventually this might end up in liboil with vectorized versions.
8118 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8120 * gst-libs/gst/audio/multichannel.c:
8121 (gst_audio_get_channel_positions):
8122 When we have more than 2 channels, but no channel layout is
8123 specified in the caps, return some default channel layout
8124 to the caller and warn about about a possibly buggy element
8125 (could be buggy filtercaps as well of course) (#317038).
8127 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8129 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
8130 Add gst-libs/gst/cdda to list of lib search paths.
8132 2006-02-15 Andy Wingo <wingo@pobox.com>
8134 * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
8135 timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
8136 to the Lord Jesus that I do not have to touch the ogg muxer ever
8139 2006-02-15 Edward Hervey <edward@fluendo.com>
8141 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
8142 quicktime movie files can also contain 'uuid' atoms.
8144 2006-02-14 Tim-Philipp Müller <tim at centricular dot net>
8146 * gst/audioconvert/plugin.c: (plugin_init):
8147 Register the GstAudioChannelPosition enum type with the type
8148 system in the plugin_init function, so that it is known before
8149 any element actually makes use of multi-channel stuff. This is
8150 required for example if one wants to be able to deserialise/use
8151 a caps string with channel positions before any pipeline has
8152 been setup and started, like with gst-launch.
8154 2006-02-14 Wim Taymans <wim@fluendo.com>
8156 * gst-libs/gst/audio/gstringbuffer.c:
8157 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
8158 (gst_ring_buffer_samples_done), (wait_segment),
8159 (gst_ring_buffer_commit), (gst_ring_buffer_clear):
8160 Add some compiler G_(UN_)LIKELY help.
8161 SIGNAL the ringbuffer waiters when going to PAUSED as well to
8162 make sure they can exit their functions. Should fix #330748
8164 2006-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
8169 * win32/common/_stdint.h:
8170 Windows does not have long long; copy the generated _stdint.h
8171 * win32/common/interfaces-enumtypes.c:
8172 (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
8173 (gst_mixer_track_flags_get_type),
8174 (gst_tuner_channel_flags_get_type):
8175 * win32/common/multichannel-enumtypes.c:
8176 (gst_audio_channel_position_get_type):
8179 2006-02-13 Wim Taymans <wim@fluendo.com>
8181 * gst-libs/gst/audio/gstbaseaudiosink.c:
8182 (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
8183 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8184 Always sync on first sample we receive when starting.
8186 2006-02-13 Wim Taymans <wim@fluendo.com>
8188 * gst/playback/gstplaybin.c: (gen_vis_element):
8189 Update vis bin docs.
8190 Move queue after tee so we don't queue video buffers but
8191 audio samples instead. Fixes problems where the video queue
8192 is filled and the audio queue empty.
8194 2006-02-13 Tim-Philipp Müller <tim at centricular dot net>
8196 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
8197 No need to push an EOS event here, GstBaseSrc will do that for us
8198 when we return FLOW_UNEXPECTED.
8200 2006-02-12 Wim Taymans <wim@fluendo.com>
8202 * gst-libs/gst/audio/gstbaseaudiosink.c:
8203 (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
8204 (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
8205 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8206 Use scale functions when possible.
8208 Free clockid when after waiting for EOS.
8209 Use G_(UN_)LIKLY when it makes sense.
8210 Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
8212 2006-02-12 Edward Hervey <edward@fluendo.com>
8214 * gst/playback/gstplaybasebin.c: (prepare_output):
8215 Remove stray semi-colon (fixes #330888).
8217 2006-02-12 Jan Schmidt <thaytan@mad.scientist.com>
8219 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
8220 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
8221 Fix up the XShm call testing so that we catch errors, and don't
8222 cause new ones by attempting to detach from a segment we failed
8223 to attach to. Fixes #312439.
8225 2006-02-10 Edward Hervey <edward@fluendo.com>
8227 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
8228 Added flv file typefind (video/x-flv).
8230 2006-02-10 Edward Hervey <edward@fluendo.com>
8232 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
8233 (gst_riff_create_video_template_caps):
8234 Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
8235 Also added the caps to the default set of riff video caps.
8237 2006-02-09 Andy Wingo <wingo@pobox.com>
8239 * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
8240 time and the end time of the last packet in the page.
8241 (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
8242 on the pages in our queue, set the duration as well. Reflow a
8244 (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
8245 Fixes bad muxing order.
8247 2006-02-09 Thomas Vander Stichele <thomas at apestaart dot org>
8249 * gst-libs/gst/rtp/gstbasertppayload.c:
8250 (gst_basertppayload_setcaps), (gst_basertppayload_push):
8251 update seqnum before setting it on the packet; this makes sure
8252 that the timestamp and seqnum properties match after pushing
8255 2006-02-09 Andy Wingo <wingo@pobox.com>
8257 * gst-libs/gst/audio/gstringbuffer.c
8258 (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
8259 overflow after 13.5 hours of recording. Kapow!
8261 * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
8262 the buffer size -- we don't care about underrun/overrun reporting
8263 right now, just need to return a useful value.
8265 2006-02-09 Jan Schmidt <thaytan@mad.scientist.com>
8270 === release 0.10.3 ===
8272 2006-02-09 Jan Schmidt <thaytan@mad.scientist.com>
8275 releasing 0.10.3, "Under Pressure"
8277 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
8280 Drat. Bump libtool version number for new API.
8281 Prelease 0.10.2.3 (of 0.10.3)
8283 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
8286 * win32/common/config.h:
8287 0.10.2.2 prerelease (of 0.10.3).
8289 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
8291 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
8292 Revert Andy's newsegment change pending a more correct
8295 2006-02-08 Thomas Vander Stichele <thomas at apestaart dot org>
8297 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
8298 (qt_type_find), (plugin_init):
8299 detect more files as 3gp
8300 group and reorder the iso file formats
8302 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8304 * ext/vorbis/vorbis.c: (plugin_init):
8305 Register musicbrainz tags, so apps don't have to.
8307 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8309 * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
8310 (gst_tag_to_vorbis_tag):
8311 Make sure we called gst_tag_register_musicbrainz_tags()
8312 before possibly mapping a vorbiscomment string from/to a
8315 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8317 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
8318 In case we can't find the required number of consecutive
8319 mpeg audio frames to positively identify an MPEG audio
8320 stream, check if there's at least a valid mpeg audio
8321 frame right at offset 0 and if so suggest mpeg/audio
8322 caps with a very low probability (#153004).
8324 2006-02-07 Andy Wingo <wingo@pobox.com>
8326 * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
8327 a TIME segment if we get timestamped buffers. Requires recent
8328 fixes in core to work properly.
8330 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8332 * gst/playback/gstplaybasebin.c: (prepare_output):
8333 Don't print the URI as part of the error message, it
8334 makes error dialogs look rather ugly, especially if
8335 the URI is very long or has characters in it that
8338 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8340 * gst/playback/gstplaybasebin.c: (prepare_output):
8341 Error out if we have only text or subtitles, but nothing
8342 else. Also error out if we have subtitles but no video
8345 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8347 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
8348 Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
8349 Post an error message on the bus when we encounter an
8350 error, which will hopefully be more meaningful than the
8351 'Internal Flow Error' message users get to see if we
8352 just return GST_FLOW_ERROR.
8354 2006-02-07 Andy Wingo <wingo@pobox.com>
8356 * configure.ac (GST_MAJORMINOR): Update core version req to
8357 0.10.2.2, for the collectpads API addition (#330244).
8359 2006-02-06 Tim-Philipp Müller <tim at centricular dot net>
8361 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8362 Return FALSE from plugin_init() when GnomeVFS can't
8363 be initialised for some reason (#328423).
8365 2006-02-06 Julien MOUTTE <julien@moutte.net>
8367 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event):
8368 Stick to seeking theory until i find the bug.
8369 * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
8371 2006-02-06 Jan Schmidt <thaytan@mad.scientist.com>
8373 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8374 (theora_enc_finalize), (theora_enc_sink_setcaps),
8375 (theora_set_header_on_caps), (theora_enc_chain),
8376 (theora_enc_change_state):
8377 * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
8378 Make theoraenc and the tests leak free. Like, really.
8380 2006-02-06 Jan Schmidt <thaytan@mad.scientist.com>
8382 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8383 (theora_enc_finalize), (theora_enc_sink_setcaps):
8384 Add a finalize method to ensure we clean up state even if
8385 someone omitted the state change back to NULL.
8387 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
8388 (gst_vorbisenc_chain):
8389 Free some more leaked bits.
8391 * tests/check/pipelines/theoraenc.c: (start_pipeline),
8393 Wait for state changes to happen if they're ASYNC.
8395 This ought to teach those fancy pants buildbots a lesson.
8397 2006-02-05 Jan Schmidt <thaytan@mad.scientist.com>
8399 * gst-libs/gst/tag/gstid3tag.c:
8400 Add mapping for ID3 International Standard Recording Code
8403 2006-02-05 Jan Schmidt <thaytan@mad.scientist.com>
8405 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
8406 Don't leak tag names.
8408 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8410 * docs/libs/gst-plugins-base-libs-docs.sgml:
8411 * docs/libs/gst-plugins-base-libs-sections.txt:
8412 * gst-libs/gst/tag/gstid3tag.c:
8413 * gst-libs/gst/tag/gstvorbistag.c:
8414 * gst-libs/gst/tag/tags.c:
8415 Split libgsttag docs into multiple sections.
8417 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8419 * docs/libs/Makefile.am:
8420 * docs/libs/gst-plugins-base-libs-docs.sgml:
8421 * docs/libs/gst-plugins-base-libs-sections.txt:
8422 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
8423 * gst-libs/gst/tag/gstvorbistag.c:
8424 * gst-libs/gst/tag/tag.h:
8425 * gst-libs/gst/tag/tags.c:
8426 Add libgsttag to the docs.
8428 2006-02-05 Julien MOUTTE <julien@moutte.net>
8430 * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
8431 (gst_text_overlay_init), (gst_text_overlay_src_event),
8432 (gst_text_overlay_collected): Fix clockoverlay.
8434 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8436 * docs/libs/compiling.sgml:
8437 Fix typo: it's pkg-config, not pkg-gconfig
8439 * docs/libs/gst-plugins-base-libs-docs.sgml:
8440 * docs/libs/gst-plugins-base-libs-sections.txt:
8441 * docs/libs/tmpl/gstgconf.sgml:
8442 There is no libgstgconf in 0.10, remove it
8445 2006-02-05 Julien MOUTTE <julien@moutte.net>
8447 * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
8448 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
8449 (gst_text_overlay_src_event), (gst_text_overlay_collected):
8450 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
8451 (gst_sub_parse_class_init), (gst_sub_parse_init),
8452 (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
8453 (parse_mpsub), (parser_state_init), (handle_buffer),
8454 (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
8455 * gst/subparse/gstsubparse.h: Introduce seeking code.
8457 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8459 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
8460 Add comment about LANGUAGE tag inconsistency (we want
8461 ISO-639-1, but extract three-letter identifiers?)
8464 Add two translatable files.
8466 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8468 * gst-libs/gst/tag/Makefile.am:
8469 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
8470 * gst-libs/gst/tag/tag.h:
8471 * gst-libs/gst/tag/tags.c:
8472 (gst_tag_register_musicbrainz_tags_internal),
8473 (gst_tag_register_musicbrainz_tags):
8474 Forward-port some tags stuff from the 0.8 branch. This is
8475 mostly the addition of musicbrainz tags and their mapping
8476 to vorbistags, and a vorbistag mapping of the language tag.
8478 2006-02-05 Julien MOUTTE <julien@moutte.net>
8480 * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
8483 2006-02-04 David Schleef <ds@schleef.org>
8485 * ext/ogg/gstoggmux.c:
8486 * gst/typefind/gsttypefindfunctions.c:
8487 Add Dirac typefinding and add dirac format to oggmux.
8489 2006-02-03 Tim-Philipp Müller <tim at centricular dot net>
8491 * gst/playback/gstdecodebin.c: (try_to_link_1):
8492 Don't put essential function call into
8493 g_return_*() macro, otherwise it'll all be
8494 replaced by NOOPs when compiling with
8495 G_DISABLE_CHECKS defined.
8497 2006-02-03 Edgard Lima <edgard.lima@indt.org.br>
8499 * ext/ogg/gstoggdemux.c:
8500 * ext/ogg/gstoggparse.c:
8501 * gst/tcp/gsttcpserversink.c:
8502 * sys/v4l/v4lsrc_calls.c:
8503 * sys/v4l/v4lsrc_calls.h:
8504 Just make it compile with --disable-gst-debug.
8506 2006-02-03 Wim Taymans <wim@fluendo.com>
8508 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
8509 (gst_alsasink_class_init), (gst_alsasink_init),
8510 (gst_alsasink_write), (gst_alsasink_reset):
8511 * ext/alsa/gstalsasink.h:
8512 Add lock to protect alsa calls.
8513 Implement reset to flush samples ASAP, does not work
8516 2006-02-02 Wim Taymans <wim@fluendo.com>
8518 * gst-libs/gst/audio/gstbaseaudiosink.c:
8519 (gst_base_audio_sink_provide_clock):
8520 Ugh.. getting late I guess...
8522 2006-02-02 Wim Taymans <wim@fluendo.com>
8524 * gst-libs/gst/audio/gstbaseaudiosink.c:
8525 (gst_base_audio_sink_provide_clock),
8526 (gst_base_audio_sink_set_property),
8527 (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
8528 Don't try to provide a clock when we are not negotiated since
8529 we might not be able to make it run.
8531 2006-02-02 Tim-Philipp Müller <tim at centricular dot net>
8533 * gst/playback/gstdecodebin.c: (try_to_link_1):
8534 Unlinking two source pads is ... hard.
8536 2006-02-02 Wim Taymans <wim@fluendo.com>
8538 * gst-libs/gst/audio/TODO:
8541 * gst-libs/gst/audio/gstbaseaudiosink.c:
8542 (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
8543 On EOS, wait till the last sample is played before posting EOS.
8545 2006-02-01 Philippe Kalaf <burger at speedy dot org>
8547 * gst-libs/gst/rtp/gstbasertpdepayload.c:
8548 Patch by Kai Vehmanen : Adds ability to enable newsegment bypass by
8549 setting queue_delay to zero. Also avoid thread being started if
8550 queue_delay is zero.
8552 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8554 * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
8555 Make test work again by connecting fakesinks to each decoded pad,
8556 which makes the pipeline wait until each fakesink has a buffer
8557 queued before going to PAUSED state. At that point we know the
8558 decodebin pads are negotiated.
8560 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8562 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
8563 (gst_cdda_base_src_handle_event):
8564 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
8565 Pass unhandled queries to the parent class's query function.
8567 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8569 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
8570 (gst_ogg_pad_src_query):
8571 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
8572 * ext/theora/theoradec.c: (theora_dec_src_query),
8573 (theora_dec_sink_query):
8574 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
8575 (vorbis_dec_sink_query):
8576 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
8577 (gst_vorbisenc_sink_query):
8578 * gst/adder/gstadder.c: (gst_adder_query):
8579 Pass unhandled queries upstream instead of just
8580 dropping them (#326447). Also, fix supported
8581 query types list for some elements.
8583 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8585 * gst/typefind/gsttypefindfunctions.c: (au_type_find),
8586 (paris_type_find), (ilbc_type_find), (plugin_init):
8587 Fix typefinding for audio/x-au, audio/x-paris and
8588 audio/iLBC-sh. We cannot use the START_WITH macros
8589 here, because there can only be one typefind factory
8590 with the same name (caps), so the second one would
8591 replace the first one and the first one would never
8592 be called when doing typefinding (see #161712).
8595 2006-01-31 Wim Taymans <wim@fluendo.com>
8597 * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
8598 (vorbis_handle_header_packet), (vorbis_dec_push),
8599 (vorbis_handle_data_packet):
8600 Use scale_int when we can, add some more scaling.
8601 Check packettype before parsing it.
8603 2006-01-31 Wim Taymans <wim@fluendo.com>
8605 * ext/theora/theoradec.c: (_theora_granule_time),
8606 (theora_dec_src_convert), (theora_dec_sink_convert):
8607 Call right _scale functions.
8608 Use parameter instead of some other random value.
8610 2006-01-31 Wim Taymans <wim@fluendo.com>
8612 * ext/theora/theoradec.c: (_theora_granule_frame),
8613 (_theora_granule_time), (_inc_granulepos),
8614 (theora_dec_src_convert), (theora_dec_sink_convert),
8615 (theora_handle_type_packet), (theora_handle_data_packet),
8617 Use higher precision timestamps calculation.
8618 Convert some other conversions to _scale.
8620 2006-01-31 Stefan Kost <ensonic@users.sf.net>
8622 * gst/audiotestsrc/gstaudiotestsrc.c:
8623 (gst_audio_test_src_create_sine_table), (plugin_init):
8624 * gst/volume/gstvolume.c: (plugin_init):
8625 initialize gst_controller before using
8627 2006-01-31 Jan Schmidt <thaytan@mad.scientist.com>
8629 * tests/check/pipelines/theoraenc.c:
8630 * tests/check/pipelines/vorbisenc.c:
8631 Define constant using G_GINT64_CONSTANT to avoid errors when
8632 passing it around - otherwise it gets truncated to 32 bits.
8634 Fixes failing tests.
8636 2006-01-31 Andy Wingo <wingo@pobox.com>
8638 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
8639 caps being set doesn't have a framerate value. Basically a stopgap
8642 * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
8643 technically correct enough to put into core though.
8644 (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
8645 DURATION. Fixes theoraenc ! oggmux.
8647 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
8648 fraction, not double.
8650 2006-01-31 Sebastien Moutte <sebastien@moutte.net>
8653 add vs7 project files created by Sergey Scobich
8655 2006-01-30 Sebastien Moutte <sebastien@moutte.net>
8658 add vs8 project files created by Sergey Scobich
8660 2006-01-30 Andy Wingo <wingo@pobox.com>
8662 * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
8663 timestamp + duration, not just timestamp -- ogg pages should be
8664 ordered by stop time. Necessary fix given the change in vorbis
8667 * ext/theora/theoraenc.c (theora_enc_sink_setcaps)
8668 (gst_theora_enc_init): Pull the granule shift out of the encoder.
8669 (granulepos_add): New function, handles the messiness of adjusting
8671 (theora_buffer_from_packet):
8673 (theora_enc_sink_event): Use granulepos_add, not +.
8675 * tests/check/pipelines/theoraenc.c
8676 (check_buffer_granulepos_from_starttime): Just check the frame
8677 count, not the actual granulepos -- we can't dictate to the
8678 encoder when it should be placing keyframes.
8680 2006-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
8682 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
8683 SERVICE_NOT_AVAILABLE happens for example when you're trying to
8684 play an http:// stream from a server that's not serving
8686 2006-01-30 Andy Wingo <wingo@pobox.com>
8688 * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET):
8689 * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
8690 remove the UINT64_CONSTANT macro, doesn't appear to be needed or
8693 * ext/theora/gsttheoraenc.h:
8694 * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
8695 although theoraenc was timestamping correctly. Added handling of
8696 streams that start with nonzero timestamps.
8698 * tests/check/Makefile.am:
8699 * tests/check/pipelines/theoraenc.c: New file, basically does same
8702 * tests/check/pipelines/vorbisenc.c: I claim these bugs.
8704 2006-01-30 Wim Taymans <wim@fluendo.com>
8706 * gst-libs/gst/audio/gstaudiosink.c:
8707 (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
8708 (gst_audioringbuffer_pause):
8709 Implement pause that does not wait for completion.
8711 * gst-libs/gst/audio/gstbaseaudiosink.c:
8712 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8713 Don't drop buffers when going to PAUSED but perform preroll on
8714 remaining samples now that core base class supports this.
8716 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
8717 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
8718 (gst_ring_buffer_commit):
8719 Pause should not signal waiters.
8720 Implement return value of _commit correctly.
8722 2006-01-30 Andy Wingo <wingo@pobox.com>
8724 * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
8726 * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
8727 updated to timestamp from the first sample, not the last.
8728 (gst_vorbisenc_buffer_from_header_packet): New function, takes
8729 special care of granulepos and timestamp for header packets.
8730 (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
8731 when the first buffer has a nonzero timestamp.
8733 * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
8734 (GstVorbisEnc.subgranule_offset): New members. Take care of the
8735 case when the first audio buffer we get has a nonzero timestamp.
8736 (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
8737 properly timestamp vorbis buffers with the time of the first
8738 sample, not the last.
8740 * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
8741 vorbis_granule_time_copy -- now it takes the granule/subgranule
8742 offset into account.
8744 * tests/check/pipelines/vorbisenc.c: New test for correctness of
8745 timestamps, durations, and granulepos on buffers produced by
8748 2006-01-30 Jan Schmidt <thaytan@mad.scientist.com>
8750 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8751 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
8752 Patch from Eric Jonas to support conversions to/from UYVY
8755 2006-01-30 Julien MOUTTE <julien@moutte.net>
8757 * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
8758 (setup_subtitle), (setup_source), (set_active_source):
8759 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
8760 (gen_text_element), (gen_audio_element), (gen_vis_element),
8761 (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
8763 2006-01-29 Sebastien Moutte <sebastien@moutte.net>
8765 * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
8766 * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
8767 use gst_guint64_to_gdouble to be compliant with vs6
8768 * gst/playback/gstdecodebin.c: (try_to_link_1)
8769 * gst/videorate/videorate.c: (gst_video_rate_blank_data)
8770 use G_GINT64_CONSTANT for int64 constants
8771 * win32/common/libgstinterfaces.def:
8772 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
8774 update and add new project files
8776 2006-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
8780 * win32/common/interfaces-enumtypes.c:
8781 (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
8782 (gst_mixer_track_flags_get_type),
8783 (gst_tuner_channel_flags_get_type):
8784 * win32/common/interfaces-enumtypes.h:
8785 * win32/common/multichannel-enumtypes.c:
8786 (gst_audio_channel_position_get_type):
8787 * win32/common/multichannel-enumtypes.h:
8788 add a win32-update rule like in core, and copy over enumtypes files
8790 2006-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
8793 * win32/common/config.h:
8794 * win32/common/config.h.in:
8795 add config files just like in core
8797 2006-01-28 Tim-Philipp Müller <tim at centricular dot net>
8799 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
8800 Make gcc-4.1 happy (part of #327357).
8802 2006-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
8804 * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
8805 (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
8806 (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
8807 * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
8808 (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
8809 (gst_alsasrc_unprepare), (gst_alsasrc_read):
8810 Update all error messages. All of them should either use
8811 the default translated message, or actually provide a
8812 translatable string.
8813 Make the string for channel count problems meaningful.
8815 2006-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
8817 * sys/v4l/v4l_calls.c: (gst_v4l_open):
8818 check for and throw RESOURCE_BUSY
8820 2006-01-27 David Schleef <ds@schleef.org>
8822 * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
8823 checked in this change -- it requires liboil features not
8824 in 0.3.6. Revert parts.
8826 2006-01-27 David Schleef <ds@schleef.org>
8829 * configure.ac: update liboil requirement to 0.3.6
8830 * gst/videoscale/Makefile.am:
8831 * gst/videoscale/vs_scanline.c: liboilify
8833 2006-01-27 Jan Schmidt <thaytan@mad.scientist.com>
8835 * ext/libvisual/visual.c: (get_buffer):
8836 When pad_alloc returns a GstFlowReturn other
8837 than GST_FLOW_OK, make sure it is passed upstream.
8839 2006-01-27 Jan Schmidt <thaytan@mad.scientist.com>
8841 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
8842 (gst_alsasink_class_init):
8843 Free the device name string.
8845 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
8846 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
8847 (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
8848 Don't remove a pad from the collectpads structure until it
8849 is released - it's a request pad, and may receive data again
8850 if the element gets moved back to PLAYING state.
8852 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
8853 Ensure we turn on double buffering on the Xv port, and
8854 set the colour key to something dark and mysterious that
8857 2006-01-27 Thomas Vander Stichele <thomas at apestaart dot org>
8859 * ext/alsa/gstalsaplugin.c: (plugin_init):
8860 * ext/cdparanoia/gstcdparanoiasrc.c:
8861 (gst_cd_paranoia_src_base_init), (plugin_init):
8862 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8863 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
8864 - a library should not call setlocale. see "Libraries" node in
8866 - make sure all plugins that use translation do bindtextdomain
8867 to point to the localedir
8868 * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
8869 (setup_sinks), (plugin_init):
8870 all this, and check for NULL when creating sinks
8872 2006-01-27 Julien MOUTTE <julien@moutte.net>
8874 * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
8875 (plugin_init): Make typefinding of subtitles work again.
8877 2006-01-26 Tim-Philipp Müller <tim at centricular dot net>
8879 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
8880 (mp3_type_frame_length_from_header), (mp3_type_find),
8881 (wavpack_type_find), (m4a_type_find), (ircam_type_find),
8883 Backport a bunch of typefinding fixes from the 0.8 branch.
8884 Also, improve wavpack typefinding: if we can't peek the
8885 entire wavpack block, try to parse the bits we can get and
8886 see if we find what we're looking for in those.
8888 2006-01-26 Julien MOUTTE <julien@moutte.net>
8890 * sys/ximage/ximagesink.c:
8891 (gst_ximagesink_calculate_pixel_aspect_ratio):
8892 * sys/xvimage/xvimagesink.c:
8893 (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
8894 more cases of pixel aspect ratio.
8896 2006-01-26 Edward Hervey <edward@fluendo.com>
8898 * gst/playback/gstdecodebin.c: (pad_probe):
8899 Also consider the flush-start and tag events as unblockers
8902 2006-01-26 Julien MOUTTE <julien@moutte.net>
8904 * gst/playback/gstplaybin.c: (gst_play_bin_init),
8905 (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
8906 (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
8907 On the fly visualisation switch, works disabling, enabling as
8908 well but it won't be able to enable vis in a playbin that was
8909 created with no visualisation.
8911 2006-01-25 Wim Taymans <wim@fluendo.com>
8913 * gst-libs/gst/audio/gstbaseaudiosink.c:
8914 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8915 Undo previous commit that returned WRONG_STATE sooner, it breaks
8918 2006-01-25 Wim Taymans <wim@fluendo.com>
8920 * gst-libs/gst/audio/gstbaseaudiosink.c:
8921 (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
8922 (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
8924 Post error when caps cannot be parsed.
8925 Resync on discontinuity in the stream.
8926 Clip samples to segment boundaries.
8927 return WRONG_STATE sooner when we are flushing.
8929 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
8930 (gst_base_audio_src_get_time), (gst_base_audio_src_create):
8931 Make audiosrc operate in TIME.
8932 Set TIMESTAMP and DURATION on buffers.
8934 2006-01-24 Tim-Philipp Müller <tim at centricular dot net>
8936 * tests/examples/seek/seek.c: (main):
8937 Output tag messages as well.
8939 2006-01-23 Edward Hervey <edward@fluendo.com>
8941 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
8942 (free_pad_probes), (remove_fakesink), (pad_probe),
8943 (close_pad_link), (gst_decode_bin_change_state):
8944 Replace GstPadBlockCallback with pad probes that detect
8945 first buffer AND eos before removing fakesink.
8946 Fixes hang with demuxers doing EOS while pre-rolling.
8949 2006-01-23 Andy Wingo <wingo@pobox.com>
8951 * ext/alsa/gstalsasink.c:
8952 * gst-libs/gst/rtp/gstbasertpdepayload.c:
8953 (gst_base_rtp_depayload_setcaps),
8954 (gst_base_rtp_depayload_add_to_queue),
8955 (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
8957 Patch by: Jens Granseuer <jensgr at gmx dot net>
8959 2006-01-22 Julien MOUTTE <julien@moutte.net>
8961 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
8962 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
8963 (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some
8964 frames. We might get a frame destroyed after changing state to
8965 NULL, adding a safety check on xcontext.
8967 2006-01-22 Tim-Philipp Müller <tim at centricular dot net>
8969 * gst-libs/gst/interfaces/xoverlay.c:
8970 Fix prepare-xwindow-id code example in the docs - we need to
8971 ignore all messages that aren't element messages as well.
8973 2006-01-21 Julien MOUTTE <julien@moutte.net>
8975 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
8976 I think one day i'll completely undestand how caps negotiation
8977 is supposed to work. This refactoring handles buffer_alloc
8978 called with caps we can't handle. We definitely don't want a
8979 set_caps with those caps, so we define and allocate a buffer
8980 we would like to receive.
8982 2006-01-19 Tim-Philipp Müller <tim at centricular dot net>
8984 * gst/playback/gstplaybasebin.c: (setup_source):
8985 Free iterator when done.
8987 2006-01-17 Jan Schmidt <thaytan@mad.scientist.com>
8989 * gst-libs/gst/audio/gstbaseaudiosink.c:
8990 (gst_base_audio_sink_render):
8991 Fix playback of non-synchronised streams by assuming a rate
8992 of 1.0 instead of a random one.
8994 Makes this work again:
8996 gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
8997 endianness=(int)4321, signed=(boolean)true, width=(int)16,
8998 depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
8999 audioresample ! alsasink
9001 === release 0.10.2 ===
9003 2006-01-16 Thomas Vander Stichele <thomas at apestaart dot org>
9006 releasing 0.10.2, "Then the devil is six"
9008 2006-01-16 Jan Schmidt <thaytan@mad.scientist.com>
9010 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
9011 * gst/playback/gststreamselector.c:
9012 (gst_stream_selector_set_property):
9013 Comment out broken code that connects to the state-changed signal.
9014 At this point, changing current stream selection is broken, but
9015 stuff like gst-launch playbin current-audio=1 works and filters
9016 to the chosen stream.
9018 2006-01-16 Thomas Vander Stichele <thomas at apestaart dot org>
9020 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
9021 Fix #327216 (null dereference in vorbisdec)
9023 2006-01-16 Tim-Philipp Müller <tim at centricular dot net>
9025 * ext/theora/theoradec.c: (theora_handle_comment_packet):
9026 Post taglist actually on bus instead of just freeing it
9027 (fixes #327114 and totem bug #327080).
9029 * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
9030 Use gst_element_found_tags_for_pad(), so that the tags
9031 are sent downstream as an event as well.
9033 2006-01-15 Thomas Vander Stichele <thomas at apestaart dot org>
9035 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
9036 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
9037 (gst_ximagesink_buffer_alloc):
9038 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
9039 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
9040 (gst_xvimagesink_buffer_alloc):
9041 move all regularly occurring messages to GST_LOG level
9042 add some more object logs
9044 2006-01-14 Thomas Vander Stichele <thomas at apestaart dot org>
9046 * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
9047 fix a silly segfault
9049 2006-01-14 Tim-Philipp Müller <tim at centricular dot net>
9051 * docs/libs/gst-plugins-base-libs-docs.sgml:
9052 * docs/libs/gst-plugins-base-libs-sections.txt:
9053 * gst-libs/gst/audio/mixerutils.c:
9054 * gst-libs/gst/audio/mixerutils.h:
9055 Add docs for mixerutils stuff.
9057 2006-01-13 Tim-Philipp Müller <tim at centricular dot net>
9059 * gst/playback/gstplaybasebin.c: (setup_source):
9060 Fix playback for sources that emit raw audio or
9061 raw video streams (e.g.: cd audio sources) (#325984).
9063 2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
9065 * gst-libs/gst/audio/mixerutils.c:
9066 (gst_audio_mixer_filter_do_filter):
9067 actually save the element we create
9069 2006-01-12 Tim-Philipp Müller <tim at centricular dot net>
9071 * gst-libs/gst/cdda/gstcddabasesrc.c:
9072 (gst_cdda_base_src_handle_track_seek):
9073 No need to post a tag message on the bus when seeking
9074 within the same track, only post it when the current
9077 2006-01-11 Jan Schmidt <thaytan@mad.scientist.com>
9079 * gst/playback/gstplaybasebin.c: (group_destroy),
9080 (probe_triggered), (new_decoded_pad), (mute_group_type),
9081 (set_active_source):
9082 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
9083 * gst/playback/gststreamselector.c:
9084 (gst_stream_selector_base_init),
9085 (gst_stream_selector_set_property),
9086 (gst_stream_selector_request_new_pad):
9087 Reenable stream selection. These mechanisms need a complete overhaul
9088 in the face of 0.8->0.10 changes though.
9090 2006-01-11 Jan Schmidt <thaytan@mad.scientist.com>
9092 * ext/ogg/gstoggdemux.c:
9093 Change the pad template to src_%d to match the pads that
9094 are created from it. decodebin needs this information in order
9095 to decide that oggdemux is capable of producing multiple pads
9096 (and hence needs queues inserted).
9098 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
9099 (gst_ogg_mux_collected):
9100 Make debug output more useful by using GST_PTR_FORMAT.
9102 2006-01-11 Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
9104 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
9106 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
9107 Set depth and width for alaw/mulaw (fixes #326601).
9109 2006-01-11 Thomas Vander Stichele <thomas at apestaart dot org>
9111 * tests/icles/Makefile.am:
9112 don't build the tests if we don't have the libs
9114 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
9116 * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
9117 (gst_cd_paranoia_paranoia_callback):
9118 Don't try to free NULL pointers.
9120 2006-01-10 Edward Hervey <edward@fluendo.com>
9122 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
9123 (gst_audio_rate_change_state), (plugin_init):
9124 Add debugging category.
9126 Add case for incoming buffers without valid offset/offset_end.
9128 2006-01-10 Michael Smith <msmith@fluendo.com>
9130 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
9131 Don't leak GCond in audio sources.
9133 2006-01-10 Jan Schmidt <thaytan@mad.scientist.com>
9135 * gst/playback/gstplaybin.c: (gen_audio_element):
9136 Don't leak an autoaudiosink/alsasink when we generate
9137 a new audio element. (old code, I guess)
9139 2006-01-10 Michael Smith <msmith@fluendo.com>
9141 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
9142 Support float audio in audiorate.
9143 Use width rather than depth for selecting sample width.
9145 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
9147 * gst/videotestsrc/videotestsrc.h:
9148 Use GLib types here (that way we don't have to include the
9149 generated _stdint.h header, which makes life easier for win32
9150 folks that don't use autotools for the build) (#325990, patch
9151 by: Sergey Scobich).
9153 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
9155 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
9156 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
9157 (gst_ring_buffer_pause), (wait_segment):
9158 * gst-libs/gst/audio/gstringbuffer.h:
9159 Name (private) union, makes Forte compiler happy (this time
9160 for real) (#324900).
9162 2006-01-09 Tim-Philipp Müller <tim at centricular dot net>
9164 * gst-libs/gst/audio/Makefile.am:
9165 Link against libgstinterfaces, needed for mixer
9166 and property probe stuff.
9168 2006-01-09 Edward Hervey <edward@fluendo.com>
9170 * gst-libs/gst/Makefile.am:
9172 2006-01-09 Tim-Philipp Müller <tim at centricular dot net>
9174 * gst-libs/gst/audio/Makefile.am:
9175 * gst-libs/gst/audio/mixerutils.c:
9176 (gst_audio_mixer_filter_do_filter),
9177 (gst_audio_mixer_filter_check_element),
9178 (gst_audio_mixer_filter_probe_feature),
9179 (element_factory_rank_compare_func),
9180 (gst_audio_default_registry_mixer_filter):
9181 * gst-libs/gst/audio/mixerutils.h:
9182 Add gst_audio_default_registry_mixer_filter() utility
9185 2006-01-03 Michael Smith <msmith@fluendo.com>
9187 * gst/audioresample/resample.h:
9188 As before, but for o_buf
9190 2006-01-03 Michael Smith <msmith@fluendo.com>
9192 * gst/audioresample/resample.h:
9193 Declare struct _ResampleState.buffer as unsigned char *, not void *,
9194 since we do arithmetic on it.
9196 2006-01-02 Tim-Philipp Müller <tim at centricular dot net>
9198 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
9199 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
9200 (gst_ring_buffer_pause), (wait_segment):
9201 * gst-libs/gst/audio/gstringbuffer.h:
9202 Sun's Forte compiler doesn't seem to like anonymous structs,
9203 so use same setup as in GstBaseSrc (fixes #324900).
9205 2005-12-30 Stefan Kost <ensonic@users.sf.net>
9208 * gst/volume/Makefile.am:
9209 * gst/volume/demo.c:
9210 move old example to tests/examples/volume/volune.c
9211 * tests/examples/Makefile.am:
9212 * tests/examples/seek/seek.c: (main):
9213 change window-close event from "delete-event" to "destroy"
9214 * tests/examples/volume/Makefile.am:
9215 * tests/examples/volume/volume.c: (value_changed_callback),
9216 (setup_gui), (message_received), (eos_message_received), (main):
9217 fix event handling and bus usage
9219 2005-12-29 Stefan Kost <ensonic@users.sf.net>
9221 * gst/audiotestsrc/gstaudiotestsrc.c:
9222 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
9223 (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
9224 (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
9225 (gst_audio_test_src_create_square),
9226 (gst_audio_test_src_create_saw),
9227 (gst_audio_test_src_create_triangle),
9228 (gst_audio_test_src_create_silence),
9229 (gst_audio_test_src_create_white_noise),
9230 (gst_audio_test_src_create_pink_noise),
9231 (gst_audio_test_src_init_sine_table),
9232 (gst_audio_test_src_create_sine_table),
9233 (gst_audio_test_src_change_wave),
9234 (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
9235 (gst_audio_test_src_create), (gst_audio_test_src_set_property):
9236 * gst/audiotestsrc/gstaudiotestsrc.h:
9237 update to basesrc changes, implement segmented seeking and eos
9238 handling, add a 'sine-tab' waveform for performance critical playback
9240 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9243 ... and this time the other modified file that I missed last time.
9245 2005-12-29 Michael Smith <msmith@fluendo.com>
9247 * gst/playback/gstdecodebin.c: (new_pad):
9248 Fix non-C89 variable declaration not at the start of a block. Should
9249 help some compilers.
9251 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9253 * tests/check/Makefile.am:
9254 And now fix 'make distcheck' (builddir != srcdir)
9256 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9259 * ext/cdparanoia/Makefile.am:
9260 * ext/cdparanoia/gstcdparanoia.c:
9261 * ext/cdparanoia/gstcdparanoia.h:
9262 * ext/cdparanoia/gstcdparanoiasrc.c:
9263 (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
9264 (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
9265 (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
9266 (gst_cd_paranoia_paranoia_callback),
9267 (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
9268 (gst_cd_paranoia_src_set_property),
9269 (gst_cd_paranoia_src_get_property), (plugin_init):
9270 * ext/cdparanoia/gstcdparanoiasrc.h:
9271 New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
9272 plugin again (there are still fixes required to playbin to make
9273 cdda:// uris work there).
9275 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9277 * tests/check/Makefile.am:
9278 Fix test case compilation.
9280 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9282 * gst-libs/gst/cdda/gstcddabasesrc.c:
9283 (gst_cdda_base_src_update_duration),
9284 (gst_cdda_base_src_calculate_cddb_id):
9285 An integer is not a string. Fix access to uninitialised variable.
9287 * tests/check/Makefile.am:
9288 Add cddabasesrc unit test; also actually enable the vorbis test.
9290 * tests/check/generic/states.c:
9291 Blacklist new cd audio elements as well.
9293 * tests/check/libs/cddabasesrc.c:
9294 Unit test for GstCddaBaseSrc (discid calculation mostly).
9296 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
9298 * docs/libs/Makefile.am:
9299 * docs/libs/gst-plugins-base-libs-docs.sgml:
9300 * docs/libs/gst-plugins-base-libs-sections.txt:
9301 * docs/libs/gst-plugins-base-libs.types:
9302 Add docs for libgstcdda/GstCddaBaseSrc.
9304 * gst-libs/gst/interfaces/mixertrack.h:
9305 Do one struct member per line with a semicolon at the end, that way
9306 even gtk-doc might parse it without complaining.
9308 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
9311 * gst-libs/gst/Makefile.am:
9312 * gst-libs/gst/cdda/Makefile.am:
9313 * gst-libs/gst/cdda/base64.c:
9314 * gst-libs/gst/cdda/base64.h:
9315 * gst-libs/gst/cdda/gstcddabasesrc.c:
9316 (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
9317 (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
9318 (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
9319 (gst_cdda_base_src_get_property),
9320 (gst_cdda_base_src_get_track_from_sector),
9321 (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
9322 (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
9323 (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
9324 (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
9325 (gst_cdda_base_src_uri_get_protocols),
9326 (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
9327 (gst_cdda_base_src_uri_handler_init),
9328 (gst_cdda_base_src_setup_interfaces),
9329 (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
9330 (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
9331 (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
9332 (gst_cdda_base_src_add_tags),
9333 (gst_cdda_base_src_add_index_associations),
9334 (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
9335 (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
9336 (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
9337 (gst_cdda_base_src_create):
9338 * gst-libs/gst/cdda/gstcddabasesrc.h:
9339 * gst-libs/gst/cdda/sha1.c:
9340 * gst-libs/gst/cdda/sha1.h:
9341 Add new libgstcdda with GstCddaBaseSrc class.
9343 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
9345 * ext/gnomevfs/gstgnomevfssink.h:
9346 Use GstBaseSinkClass as parent_class member for class struct, not
9349 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
9351 Patch by: Michael Benes
9353 * gst/videotestsrc/gstvideotestsrc.c:
9354 (gst_video_test_src_class_init), (gst_video_test_src_start):
9355 Add start method to reset running time and number of frames sent
9356 when starting up (fixes #324696)
9358 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
9360 * docs/plugins/Makefile.am:
9361 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9362 * docs/plugins/gst-plugins-base-plugins-sections.txt:
9363 * docs/plugins/gst-plugins-base-plugins.args:
9364 * docs/plugins/gst-plugins-base-plugins.hierarchy:
9365 * docs/plugins/gst-plugins-base-plugins.signals:
9366 Add docs stuff for gnomevfssrc and gnomevfssink.
9368 * ext/gnomevfs/gstgnomevfssrc.c:
9369 Fix example pipeline in gtk-doc blurb.
9371 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
9373 * ext/gnomevfs/Makefile.am:
9374 * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
9375 (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
9376 (gst_gnome_vfs_handle_get_type), (plugin_init):
9377 * ext/gnomevfs/gstgnomevfs.h:
9378 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
9379 (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
9380 (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
9381 (gst_gnome_vfs_sink_set_property),
9382 (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
9383 (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
9384 (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
9385 (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
9386 (gst_gnome_vfs_sink_uri_get_type),
9387 (gst_gnome_vfs_sink_uri_get_protocols),
9388 (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
9389 (gst_gnome_vfs_sink_uri_handler_init):
9390 * ext/gnomevfs/gstgnomevfssink.h:
9391 Port gnomevfssink; add gtk-doc blurb.
9393 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
9394 (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
9395 (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
9396 (gst_gnome_vfs_src_uri_get_type),
9397 (gst_gnome_vfs_src_uri_get_protocols),
9398 (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
9399 (gst_gnome_vfs_src_uri_handler_init),
9400 (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
9401 (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
9402 (gst_gnome_vfs_src_send_additional_headers_callback),
9403 (gst_gnome_vfs_src_received_headers_callback),
9404 (gst_gnome_vfs_src_push_callbacks),
9405 (gst_gnome_vfs_src_pop_callbacks),
9406 (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
9407 (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
9408 (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
9409 * ext/gnomevfs/gstgnomevfssrc.h:
9410 s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
9411 file; add gtk-doc blurb with example pipelines.
9413 === release 0.10.1 ===
9415 2005-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
9418 releasing 0.10.1, "Dobro Dedek"
9420 2005-12-21 Edgard Lima <edgard.lima@indt.org.br>
9422 * gst/typefind/gsttypefindfunctions.c:
9423 iLBC30 and iLBC20 added to typefind.
9425 2005-12-20 Thomas Vander Stichele <thomas at apestaart dot org>
9427 * gst-libs/gst/audio/gstbaseaudiosink.c:
9428 (gst_base_audio_sink_class_init):
9429 * gst-libs/gst/audio/gstbaseaudiosrc.c:
9430 (gst_base_audio_src_class_init):
9431 update strings, values are in microseconds
9432 change the default sink buffer time to something that is smaller
9433 (to help software volume mixing have a slightly lower delay) but
9434 still be acceptable on Wim's laptop
9436 2005-12-20 Edward Hervey <edward@fluendo.com>
9438 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
9439 Made a quack, forgot to add DUCK to the riff video template.
9441 2005-12-19 Edward Hervey <edward@fluendo.com>
9443 * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
9444 (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
9445 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
9446 (gst_ogm_parse_chain):
9447 Make sure pads are initialized correctly.
9448 * gst-libs/gst/riff/riff-ids.h:
9449 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
9450 (gst_riff_create_video_template_caps):
9451 Add a whole bunch of FOURCC <=> MimeType.
9452 Extend the riff video pad template to support the newly added fourcc.
9454 2005-12-18 Jan Schmidt <thaytan@mad.scientist.com>
9456 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
9457 (gst_ogg_demux_activate_chain):
9458 Extra debug output when activating/deactivating chains.
9460 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
9461 (is_demuxer_element), (try_to_link_1), (remove_element_chain),
9463 Remove a queue from our list when it becomes unlinked.
9464 Don't add queues to elements in class 'Demux' if they
9465 can only produce one pad
9467 2005-12-18 Julien MOUTTE <julien@moutte.net>
9469 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
9470 (gst_video_sink_get_type): Add a debug category.
9472 2005-12-17 Philippe Khalaf <burger@speedy.org>
9474 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9475 (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
9476 Handle downstream newsegment by sending our own newsegment before the
9477 next buffer to be released. (#323900)
9479 2005-12-17 Philippe Khalaf <burger@speedy.org>
9481 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9482 (gst_base_rtp_depayload_set_gst_timestamp):
9483 add queue delay to new segment as well (as opposed to just the first
9484 buffer). (bug #322347)
9486 2005-12-16 Stefan Kost <ensonic@users.sf.net>
9488 * ext/libvisual/visual.c: (make_valid_name):
9489 change some char* into char[]
9490 * gst/audiotestsrc/gstaudiotestsrc.c:
9491 (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
9492 (gst_audio_test_src_create):
9493 * gst/audiotestsrc/gstaudiotestsrc.h:
9494 prepare to handle EOS and SEGMENT_DONE
9496 2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
9498 * tests/check/generic/states.c: (GST_START_TEST):
9499 Blacklist cdparanoia element in state test.
9501 2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
9503 Patch by: Benjamin Pineau
9506 * gst/tcp/gsttcpclientsink.c:
9507 * gst/tcp/gsttcpserversink.c:
9508 * gst/tcp/gsttcpserversrc.c:
9509 Add <string.h> includes for memset and FD_ZERO (fixes #323878)
9511 2005-12-15 Michael Smith <msmith@fluendo.com>
9513 * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
9514 (gst_video_rate_chain):
9515 Fix timestamping for videorate when the first buffer it sees has a
9516 non-zero timestamp. Fix some misleading debug output.
9518 2005-12-15 Michael Smith <msmith@fluendo.com>
9520 * gst/audioresample/gstaudioresample.c:
9521 Don't leak all input buffers to audioresample.
9523 2005-12-15 Tim-Philipp Müller <tim at centricular dot net>
9525 * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
9526 Don't operate on empty text buffers. Strip newlines and
9527 tabs only from the end of the text, but leave them intact
9528 in the middle. Fix typo in gtk-doc description.
9530 2005-12-15 Tim-Philipp Müller <tim at centricular dot net>
9532 * gst/playback/gstplaybasebin.c:
9533 * gst/playback/gstplaybin.c: (handoff):
9534 Make sure the video frame buffer we return to apps via the
9535 "frame" property always has caps set on it. Modify
9536 _gst_gvalue_set_object() macro to handle NULL objects
9539 2005-12-14 Stefan Kost <ensonic@users.sf.net>
9541 * gst/audiotestsrc/gstaudiotestsrc.c:
9542 (gst_audio_test_src_class_init), (gst_audio_test_src_init),
9543 (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
9544 (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
9545 (gst_audio_test_src_create):
9546 * gst/audiotestsrc/gstaudiotestsrc.h:
9547 Adjust to some recent api changes and add wtays new cool seeking
9550 2005-12-14 Tim-Philipp Müller <tim at centricular dot net>
9552 * ext/alsa/Makefile.am:
9553 * ext/alsa/gstalsadeviceprobe.c:
9554 * ext/alsa/gstalsadeviceprobe.h:
9555 Helper functions to add device probing via the GstPropertyProbe
9556 interface to a class.
9558 * ext/alsa/gstalsamixer.h:
9559 Comment out GST_ALSA_MIXER, it returns a struct that's not
9562 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
9563 Add some debug info.
9565 * ext/alsa/gstalsamixerelement.c:
9566 (gst_alsa_mixer_element_interface_supported),
9567 (gst_implements_interface_init),
9568 (gst_alsa_mixer_element_init_interfaces),
9569 (gst_alsa_mixer_element_class_init),
9570 (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
9571 (gst_alsa_mixer_element_set_property),
9572 (gst_alsa_mixer_element_get_property),
9573 (gst_alsa_mixer_element_change_state):
9574 * ext/alsa/gstalsamixerelement.h:
9575 Add 'device' and 'device-name' properties. Add GstPropertyProbe
9576 for device handling (gnome-volume-control will need that).
9578 2005-12-12 Christian Schaller <uraeus@gnome.org>
9580 * ext/Makefile.am: fix cdparanoia entry
9581 * gst-plugins-base.spec.in: add cdparanoia
9583 2005-12-12 Michael Smith <msmith@fluendo.com>
9585 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
9586 Use the correct function to free list of typefind factories.
9588 2005-12-12 Wim Taymans <wim@fluendo.com>
9590 * gst/videotestsrc/gstvideotestsrc.c:
9591 (gst_video_test_src_class_init), (gst_video_test_src_init),
9592 (gst_video_test_src_parse_caps), (gst_video_test_src_query),
9593 (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
9594 (gst_video_test_src_create):
9595 * gst/videotestsrc/gstvideotestsrc.h:
9596 Implement seeking in videotestsrc.
9599 2005-12-12 Wim Taymans <wim@fluendo.com>
9601 * ext/cdparanoia/Makefile.am:
9602 * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
9603 (gst_paranoia_endian_get_type), (_do_init),
9604 (cdparanoia_class_init), (cdparanoia_init),
9605 (cdparanoia_set_property), (cdparanoia_get_property),
9606 (cdparanoia_do_seek), (cdparanoia_is_seekable),
9607 (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
9608 (cdparanoia_convert), (cdparanoia_get_query_types),
9609 (cdparanoia_query), (cdparanoia_set_index),
9610 (cdparanoia_uri_set_uri):
9611 * ext/cdparanoia/gstcdparanoia.h:
9612 Partially ported cdparanoia now that basesrc can support a
9615 2005-12-12 Wim Taymans <wim@fluendo.com>
9617 * tests/examples/seek/scrubby.c: (main):
9618 Set higher priority for bus events so they don't get reordered with
9621 * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
9622 (flush_toggle_cb), (main):
9623 Added checkbox to disable flushing seeks.
9624 Disable scrubbing when doing non flushing seeks.
9626 2005-12-12 Tim-Philipp Müller <tim at centricular dot net>
9628 * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
9629 (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
9630 (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
9631 (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
9632 Implement some sort of event handling that doesn't rely on
9633 g_return_if_fail; make sure we always push the last chunk of an
9634 .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
9635 state change function; remove some old cruft. Seeking is still
9636 rather unlikely to work though.
9641 2005-12-11 Julien MOUTTE <julien@moutte.net>
9643 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
9644 Fixed a leak of the current image reference when cleaning up.
9645 Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
9647 2005-12-09 Michael Smith <msmith@fluendo.com>
9649 * tools/Makefile.am:
9650 * tools/gst-launch-ext-m.m:
9651 Remove gst-launch-ext. It doesn't work, and is no longer
9652 particularly useful.
9654 2005-12-08 Luca Ognibene <luogni@tin.it>
9656 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
9657 don't pass random values to ogmparse convert function.
9658 Make seeking possible in the exile1.ogm file.
9660 2005-12-07 Tim-Philipp Müller <tim at centricular dot net>
9662 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
9663 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
9664 Work around refcount problem with g_value_set_object() that occur
9665 if the core has been compiled against GLib-2.6 (g_value_set_object()
9666 will only g_object_ref() the element, but the caller will
9667 gst_object_unref() it and bad things will happen due to the way
9668 GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
9669 totem for people on FC4 using Thomas's 0.10 RPMs.
9671 2005-12-07 Edward Hervey <edward@fluendo.com>
9673 Time to welcome ogm to 0.10 :)
9675 * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
9676 (gst_ogg_pad_typefind):
9677 Oggdemux can now properly typefind elements with dynamic pads.
9678 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
9679 Properly set caps on src pad, and set caps on outgoing buffers.
9681 2005-12-06 Thomas Vander Stichele <thomas at apestaart dot org>
9683 * ext/alsa/gstalsamixer.h:
9684 * ext/alsa/gstalsamixerelement.h:
9685 * ext/alsa/gstalsamixeroptions.h:
9686 * ext/alsa/gstalsamixertrack.h:
9687 * ext/alsa/gstalsasink.c:
9688 * ext/alsa/gstalsasink.h:
9689 * ext/alsa/gstalsasrc.c:
9690 * ext/alsa/gstalsasrc.h:
9691 * ext/cdparanoia/gstcdparanoia.h:
9692 * ext/gnomevfs/gstgnomevfsuri.h:
9693 * ext/ogg/gstoggdemux.c:
9694 * ext/ogg/gstoggmux.c:
9695 * ext/pango/gsttextoverlay.h:
9696 * ext/theora/theoradec.c:
9697 * ext/theora/theoraenc.c:
9698 * ext/vorbis/vorbisdec.h:
9699 * ext/vorbis/vorbisenc.c:
9700 * ext/vorbis/vorbisenc.h:
9701 * ext/vorbis/vorbisparse.h:
9702 * gst-libs/gst/audio/gstaudioclock.h:
9703 * gst-libs/gst/audio/gstaudiosink.c:
9704 * gst-libs/gst/audio/gstaudiosink.h:
9705 * gst-libs/gst/audio/gstaudiosrc.c:
9706 * gst-libs/gst/audio/gstaudiosrc.h:
9707 * gst-libs/gst/audio/gstbaseaudiosink.c:
9708 * gst-libs/gst/audio/gstbaseaudiosink.h:
9709 * gst-libs/gst/audio/gstbaseaudiosrc.c:
9710 * gst-libs/gst/audio/gstbaseaudiosrc.h:
9711 * gst-libs/gst/audio/gstringbuffer.h:
9712 * gst-libs/gst/audio/multichannel.h:
9713 * gst-libs/gst/floatcast/floatcast.h:
9714 * gst-libs/gst/interfaces/colorbalance.c:
9715 * gst-libs/gst/interfaces/colorbalance.h:
9716 * gst-libs/gst/interfaces/colorbalancechannel.h:
9717 * gst-libs/gst/interfaces/mixer.h:
9718 * gst-libs/gst/interfaces/mixeroptions.h:
9719 * gst-libs/gst/interfaces/mixertrack.h:
9720 * gst-libs/gst/interfaces/navigation.h:
9721 * gst-libs/gst/interfaces/propertyprobe.h:
9722 * gst-libs/gst/interfaces/tuner.h:
9723 * gst-libs/gst/interfaces/tunerchannel.h:
9724 * gst-libs/gst/interfaces/tunernorm.h:
9725 * gst-libs/gst/interfaces/xoverlay.h:
9726 * gst-libs/gst/netbuffer/gstnetbuffer.h:
9727 * gst-libs/gst/riff/riff-ids.h:
9728 * gst-libs/gst/riff/riff-media.h:
9729 * gst-libs/gst/riff/riff-read.h:
9730 * gst-libs/gst/rtp/gstbasertpdepayload.h:
9731 * gst-libs/gst/rtp/gstbasertppayload.c:
9732 * gst-libs/gst/rtp/gstbasertppayload.h:
9733 * gst-libs/gst/rtp/gstrtpbuffer.c:
9734 * gst-libs/gst/rtp/gstrtpbuffer.h:
9735 * gst-libs/gst/tag/gsttageditingprivate.h:
9736 * gst-libs/gst/tag/gstvorbistag.c:
9737 (gst_tag_list_from_vorbiscomment_buffer):
9738 * gst-libs/gst/tag/tag.h:
9739 * gst-libs/gst/video/video.h:
9740 * gst/adder/gstadder.c:
9741 * gst/adder/gstadder.h:
9742 * gst/audioconvert/audioconvert.c:
9743 * gst/audioconvert/audioconvert.h:
9744 * gst/audioconvert/gstaudioconvert.c:
9745 * gst/audioconvert/gstchannelmix.c:
9746 * gst/audioconvert/gstchannelmix.h:
9747 * gst/audiorate/gstaudiorate.c:
9748 * gst/audioresample/buffer.h:
9749 * gst/audioresample/functable.h:
9750 * gst/audioresample/gstaudioresample.c:
9751 * gst/audioresample/resample.h:
9752 * gst/ffmpegcolorspace/avcodec.h:
9753 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9754 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
9755 * gst/ffmpegcolorspace/imgconvert.c:
9756 * gst/ffmpegcolorspace/imgconvert_template.h:
9757 * gst/playback/gstdecodebin.c:
9758 * gst/playback/gstplaybasebin.h:
9759 * gst/playback/gstplaybin.c:
9760 * gst/playback/gststreaminfo.h:
9761 * gst/tcp/gstfdset.c:
9762 * gst/tcp/gstfdset.h:
9763 * gst/tcp/gstmultifdsink.c:
9764 * gst/tcp/gstmultifdsink.h:
9766 * gst/tcp/gsttcpclientsrc.c:
9767 * gst/tcp/gsttcpclientsrc.h:
9768 * gst/tcp/gsttcpplugin.h:
9769 * gst/tcp/gsttcpserversink.c:
9770 * gst/tcp/gsttcpserversrc.c:
9771 * gst/typefind/gsttypefindfunctions.c:
9772 * gst/videorate/gstvideorate.c:
9773 * gst/videotestsrc/gstvideotestsrc.h:
9774 * gst/videotestsrc/videotestsrc.h:
9775 * sys/v4l/gstv4lcolorbalance.h:
9776 * sys/v4l/gstv4ltuner.h:
9777 * sys/v4l/gstv4lxoverlay.h:
9778 * sys/v4l/v4l_calls.h:
9779 * sys/v4l/videodev_mjpeg.h:
9780 * tests/check/elements/audioconvert.c:
9781 * tests/check/elements/audioresample.c:
9782 * tests/check/elements/audiotestsrc.c:
9783 * tests/check/elements/videotestsrc.c:
9784 * tests/check/elements/volume.c:
9785 * tests/examples/seek/scrubby.c:
9786 * tests/examples/seek/seek.c:
9789 === release 0.10.0 ===
9791 2005-12-05 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9794 releasing 0.10.0, "Mont-d'or"
9796 2005-12-05 Jan Schmidt <thaytan@mad.scientist.com>
9798 * tests/examples/seek/Makefile.am:
9799 Build fix for when gtk is not available.
9801 2005-12-05 Andy Wingo <wingo@pobox.com>
9803 * ext/libvisual/visual.c: (get_buffer):
9804 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
9805 * ext/pango/gsttextrender.c: (gst_text_render_chain):
9806 * ext/theora/theoradec.c: (theora_handle_data_packet):
9807 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
9809 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9810 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
9811 Update for alloc_buffer changes.
9813 2005-12-05 Andy Wingo <wingo@pobox.com>
9815 patch by: Kai Vehmanen <kv2004 eca cx>
9817 * gst-libs/gst/rtp/gstbasertpdepayload.c
9818 (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
9820 2005-12-04 Andy Wingo <wingo@pobox.com>
9822 patch by: Sebastien Cote <sebas642 yahoo ca>
9824 * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
9827 2005-12-02 Tim-Philipp Müller <tim at centricular dot net>
9829 * docs/plugins/Makefile.am:
9830 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9831 * docs/plugins/gst-plugins-base-plugins-sections.txt:
9832 * docs/plugins/gst-plugins-base-plugins.hierarchy:
9833 * ext/pango/gstclockoverlay.c:
9834 * ext/pango/gsttextoverlay.c:
9835 * ext/pango/gsttextrender.c:
9836 * ext/pango/gsttimeoverlay.c:
9837 Add gtk-doc blurbs to pango elements.
9839 2005-12-02 Wim Taymans <wim@fluendo.com>
9841 * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
9842 * gst/audioresample/buffer.h:
9843 * gst/audioresample/gstaudioresample.c:
9844 * gst/audioresample/gstaudioresample.h:
9845 * gst/audioresample/resample.c: (resample_input_flush),
9846 (resample_input_pushthrough), (resample_input_eos),
9847 (resample_get_output_size_for_input),
9848 (resample_get_input_size_for_output), (resample_get_output_size),
9849 (resample_get_output_data):
9850 * gst/audioresample/resample.h:
9851 * gst/audioresample/resample_ref.c: (resample_scale_ref):
9852 Fix audioresample, seek torture, new segments, reverse negotiation
9855 2005-12-02 Wim Taymans <wim@fluendo.com>
9857 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9860 2005-12-02 Wim Taymans <wim@fluendo.com>
9862 * gst/audioconvert/gstaudioconvert.c:
9863 (gst_audio_convert_transform):
9866 === release 0.9.7 ===
9868 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9871 releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
9873 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9879 add win32 MANIFEST file
9880 do something to the hungarian translation
9882 2005-12-01 Tim-Philipp Müller <tim at centricular dot net>
9885 Add $(PANGO_DIR) to SUBDIRS
9887 * ext/pango/gstclockoverlay.c:
9888 * ext/pango/gsttimeoverlay.c:
9889 Fix and improve element descriptions.
9891 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9893 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9894 * docs/plugins/inspect/plugin-libvisual.xml:
9895 * docs/plugins/inspect/plugin-pango.xml:
9896 add pango plugin to docs
9898 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9904 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9907 * tests/Makefile.am:
9908 * tests/icles/.cvsignore:
9909 * tests/icles/Makefile.am:
9910 * tests/icles/stress-xoverlay.c: (myclock), (open_display),
9911 (close_display), (resize_window), (move_window), (create_window),
9912 (terminate_playback), (pause_playback), (start_playback), (main):
9913 add stress test for xoverlay from Julien
9915 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9917 * docs/libs/tmpl/gstcolorbalance.sgml:
9918 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9919 * gst-libs/gst/rtp/gstbasertppayload.c:
9920 * gst-libs/gst/rtp/gstrtpbuffer.c:
9921 * gst-libs/gst/rtp/gstrtpbuffer.h:
9922 Do burger's rename for rtp payloaders and depayloaders
9924 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9927 add Visual Studio 6 build files
9929 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9931 * docs/libs/gst-plugins-base-libs-docs.sgml:
9932 * docs/libs/gst-plugins-base-libs-sections.txt:
9933 * docs/libs/tmpl/gstaudio.sgml:
9934 * docs/libs/tmpl/gstringbuffer.sgml:
9935 * gst-libs/gst/interfaces/xoverlay.c:
9936 * gst-libs/gst/video/gstvideofilter.c:
9937 * gst-libs/gst/video/gstvideosink.c:
9938 update documentation
9940 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9942 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
9943 (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
9944 (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
9945 (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
9946 (gst_multi_fd_sink_get_stats),
9947 (gst_multi_fd_sink_remove_client_link),
9948 (gst_multi_fd_sink_handle_client_read),
9949 (gst_multi_fd_sink_client_queue_data),
9950 (gst_multi_fd_sink_client_queue_caps),
9951 (gst_multi_fd_sink_client_queue_buffer),
9952 (gst_multi_fd_sink_new_client),
9953 (gst_multi_fd_sink_handle_client_write),
9954 (gst_multi_fd_sink_recover_client),
9955 (gst_multi_fd_sink_queue_buffer),
9956 (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
9957 (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
9958 (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
9959 (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
9960 * gst/tcp/gstmultifdsink.h:
9961 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
9962 (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
9963 (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
9964 (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
9965 (gst_tcp_client_sink_set_property),
9966 (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
9967 (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
9968 * gst/tcp/gsttcpclientsink.h:
9969 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
9970 (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
9971 (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
9972 (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
9973 (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
9974 (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
9975 * gst/tcp/gsttcpclientsrc.h:
9976 * gst/tcp/gsttcpplugin.c: (plugin_init):
9977 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
9978 (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
9979 (gst_tcp_server_sink_finalize),
9980 (gst_tcp_server_sink_handle_server_read),
9981 (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
9982 (gst_tcp_server_sink_set_property),
9983 (gst_tcp_server_sink_get_property),
9984 (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
9985 * gst/tcp/gsttcpserversink.h:
9986 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
9987 (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
9988 (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
9989 (gst_tcp_server_src_set_property),
9990 (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
9991 (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
9992 * gst/tcp/gsttcpserversrc.h:
9995 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9997 * docs/plugins/Makefile.am:
9998 * docs/plugins/gst-plugins-base-plugins.args:
9999 * docs/plugins/inspect/plugin-libvisual.xml:
10000 * gst/audioconvert/plugin.h:
10001 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
10002 (gst_audio_rate_base_init), (gst_audio_rate_class_init),
10003 (gst_audio_rate_setcaps), (gst_audio_rate_init),
10004 (gst_audio_rate_chain), (gst_audio_rate_set_property),
10005 (gst_audio_rate_get_property), (gst_audio_rate_change_state),
10007 * gst/audiotestsrc/gstaudiotestsrc.c:
10008 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
10009 (gst_audio_test_src_class_init), (gst_audio_test_src_init),
10010 (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
10011 (gst_audio_test_src_get_query_types),
10012 (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
10013 (gst_audio_test_src_create_square),
10014 (gst_audio_test_src_create_saw),
10015 (gst_audio_test_src_create_triangle),
10016 (gst_audio_test_src_create_silence),
10017 (gst_audio_test_src_create_white_noise),
10018 (gst_audio_test_src_init_pink_noise),
10019 (gst_audio_test_src_generate_pink_noise_value),
10020 (gst_audio_test_src_create_pink_noise),
10021 (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
10022 (gst_audio_test_src_create), (gst_audio_test_src_set_property),
10023 (gst_audio_test_src_get_property), (gst_audio_test_src_start),
10025 * gst/audiotestsrc/gstaudiotestsrc.h:
10026 * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
10027 (gst_sub_parse_base_init), (gst_sub_parse_class_init),
10028 (gst_sub_parse_init), (gst_sub_parse_formats),
10029 (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
10030 (convert_encoding), (get_next_line),
10031 (gst_sub_parse_data_format_autodetect),
10032 (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
10033 (gst_sub_parse_loop), (gst_sub_parse_chain),
10034 (gst_sub_parse_change_state), (gst_sub_parse_type_find),
10036 * gst/subparse/gstsubparse.h:
10037 * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
10038 (gst_video_rate_base_init), (gst_video_rate_class_init),
10039 (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
10040 (gst_video_rate_setcaps), (gst_video_rate_blank_data),
10041 (gst_video_rate_init), (gst_video_rate_event),
10042 (gst_video_rate_chain), (gst_video_rate_set_property),
10043 (gst_video_rate_get_property), (gst_video_rate_change_state),
10045 * gst/videoscale/gstvideoscale.c:
10046 (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
10047 (gst_video_scale_src_template_factory),
10048 (gst_video_scale_sink_template_factory),
10049 (gst_video_scale_get_type), (gst_video_scale_base_init),
10050 (gst_video_scale_class_init), (gst_video_scale_init),
10051 (gst_video_scale_set_property), (gst_video_scale_get_property),
10052 (gst_video_scale_transform_caps), (gst_video_scale_get_format),
10053 (gst_video_scale_prepare_size), (parse_caps),
10054 (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
10055 (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
10056 (gst_video_scale_transform), (gst_video_scale_handle_src_event),
10058 * gst/videoscale/gstvideoscale.h:
10059 * gst/videotestsrc/gstvideotestsrc.c:
10060 (gst_video_test_src_pattern_get_type),
10061 (gst_video_test_src_base_init), (gst_video_test_src_class_init),
10062 (gst_video_test_src_init), (gst_video_test_src_src_fixate),
10063 (gst_video_test_src_set_pattern),
10064 (gst_video_test_src_set_property),
10065 (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
10066 (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
10067 (gst_video_test_src_event), (gst_video_test_src_get_times),
10068 (gst_video_test_src_create), (plugin_init):
10069 * gst/videotestsrc/gstvideotestsrc.h:
10070 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
10071 (gst_video_test_src_smpte), (gst_video_test_src_snow),
10072 (gst_video_test_src_black):
10073 * gst/videotestsrc/videotestsrc.h:
10075 clean up docs a little
10077 2005-11-30 Wim Taymans <wim@fluendo.com>
10079 * gst-libs/gst/rtp/gstbasertpdepayload.h:
10080 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
10081 (gst_basertppayload_event), (gst_basertppayload_push),
10082 (gst_basertppayload_change_state):
10083 * gst-libs/gst/rtp/gstbasertppayload.h:
10086 2005-11-30 Julien MOUTTE <julien@moutte.net>
10088 * docs/libs/gst-plugins-base-libs-docs.sgml:
10089 * docs/libs/gst-plugins-base-libs-sections.txt:
10090 * gst-libs/gst/video/gstvideofilter.c:
10091 * gst-libs/gst/video/gstvideosink.c:
10092 * gst-libs/gst/video/gstvideosink.h: Adding docs.
10094 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
10114 * scripts/autoplugins.sh:
10117 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
10121 * examples/Makefile.am:
10122 * examples/capsfilter/Makefile.am:
10123 * examples/capsfilter/capsfilter1.c:
10124 * examples/gob/Makefile.am:
10125 * examples/gob/gst-identity2.gob:
10126 * examples/indexing/.cvsignore:
10127 * examples/indexing/Makefile.am:
10128 * examples/indexing/indexmpeg.c:
10129 * examples/seeking/.cvsignore:
10130 * examples/seeking/Makefile.am:
10131 * examples/seeking/cdparanoia.c:
10132 * examples/seeking/cdplayer.c:
10133 * examples/seeking/chained.c:
10134 * examples/seeking/scrubby.c:
10135 * examples/seeking/seek.c:
10136 * examples/stats/Makefile.am:
10137 * examples/stats/mp2ogg.c:
10138 * examples/switch/.cvsignore:
10139 * examples/switch/Makefile.am:
10140 * examples/switch/switcher.c:
10141 * tests/Makefile.am:
10142 * tests/check/generic/.cvsignore:
10143 * tests/check/pipelines/.cvsignore:
10144 * tests/examples/Makefile.am:
10145 * tests/examples/seek/Makefile.am:
10146 reorganize stuff under tests/
10148 2005-11-30 Edward Hervey <edward@fluendo.com>
10150 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
10151 Go away you stupid GstStaticPadTemplate memleak.
10153 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
10155 * gst-libs/gst/net/Makefile.am:
10156 * gst-libs/gst/net/README:
10157 * gst-libs/gst/net/gstnetbuffer.c:
10158 * gst-libs/gst/net/gstnetbuffer.h:
10159 this was moved to "netbuffer"
10161 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
10163 * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
10164 (gst_video_filter_class_init), (gst_video_filter_init):
10165 * gst-libs/gst/video/gstvideofilter.h:
10166 borgify name to bring in line with other classes
10168 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
10170 * gst/audioscale/.cvsignore:
10171 * gst/audioscale/Makefile.am:
10172 * gst/audioscale/README:
10173 * gst/audioscale/audioscale.vcproj:
10174 * gst/audioscale/dtof.c:
10175 * gst/audioscale/dtos.c:
10176 * gst/audioscale/functable.c:
10177 * gst/audioscale/gstaudioscale.c:
10178 * gst/audioscale/gstaudioscale.h:
10179 * gst/audioscale/private.h:
10180 * gst/audioscale/resample.c:
10181 * gst/audioscale/resample.h:
10182 * gst/audioscale/test.c:
10185 2005-11-30 Edward Hervey <edward@fluendo.com>
10187 * gst-libs/gst/netbuffer/Makefile.am:
10188 really, really tired
10190 2005-11-30 Edward Hervey <edward@fluendo.com>
10192 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
10193 Update for new GstTypeFindFactory _register()
10195 2005-11-30 Edward Hervey <edward@fluendo.com>
10197 * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir):
10198 Let's not override libgstnet from core for no reason...
10199 (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
10200 Ok, maybe not so quick next time.
10202 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
10205 * gst-libs/gst/Makefile.am:
10206 moved gst-libs/gst/net to netbuffer through CVS surgery
10207 remove old directory
10208 updating build to accomodate
10211 2005-11-29 Andy Wingo <wingo@pobox.com>
10213 * pkgconfig/gstreamer-plugins-base.pc.in:
10214 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
10215 * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
10218 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
10220 * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
10221 3rd time's the charm. Correct ref-counting for discarded buffers.
10223 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
10225 * gst/playback/gststreamselector.c:
10226 (gst_stream_selector_class_init),
10227 (gst_stream_selector_set_property),
10228 (gst_stream_selector_get_property),
10229 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
10232 2005-11-29 Tim-Philipp Müller <tim at centricular dot net>
10234 * gst/subparse/gstsubparse.c: (feed_textbuf):
10235 Don't access already unref'ed buffer.
10237 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
10239 * gst/playback/gststreamselector.c:
10240 (gst_stream_selector_class_init), (gst_stream_selector_init),
10241 (gst_stream_selector_dispose), (gst_stream_selector_set_property),
10242 (gst_stream_selector_get_property),
10243 (gst_stream_selector_get_linked_pad),
10244 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
10245 * gst/playback/gststreamselector.h:
10246 Add the active-pad property for playbin to use shortly. Ignore buffers
10247 from any other pad, returning GST_FLOW_NOT_LINKED
10249 2005-11-29 Julien MOUTTE <julien@moutte.net>
10251 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
10252 patch from bug #322704 (Alessandro Decina).
10254 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
10256 * gst-libs/gst/audio/Makefile.am:
10257 folded audiofilter into the audio library
10259 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
10261 * gst/videoscale/gstvideoscale.h:
10262 * gst/videoscale/gstvideoscale.c:
10263 remove unimplemented scale methods
10265 2005-11-28 Tim-Philipp Müller <tim at centricular dot net>
10267 * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
10270 2005-11-28 Julien MOUTTE <julien@moutte.net>
10272 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
10273 (gst_ximagesink_setcaps):
10274 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
10275 (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
10276 happens (only visible on ximagesink but bug is in xv too) set_caps was
10277 destroying the internal x[v]image used to memcpy non locally alloced
10278 buffers so that it got renewed on next _chain. The issue is that
10279 _expose will try to put that image as it reffed it in _put.
10280 Using gst_buffer_unref instead of destroy fixes it !
10282 2005-11-28 Edward Hervey <edward@fluendo.com>
10284 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
10285 (try_to_link_1), (queue_filled_cb):
10286 Better use of the queues. Start with a small size queue and only increase
10287 the size of the queues when the other queues are empty.
10289 2005-11-28 Thomas Vander Stichele <thomas at apestaart dot org>
10291 * gst-libs/gst/video/Makefile.am:
10292 compile in copied-over videofilter into the video library
10293 * gst-libs/gst/video/videosink.h:
10294 rename the header to gstvideosink.h since it's a base GstObject class
10295 * sys/ximage/ximagesink.h:
10296 * sys/xvimage/xvimagesink.h:
10299 2005-11-28 Wim Taymans <wim@fluendo.com>
10301 * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
10302 * gst/playback/gstplaybasebin.h:
10303 Prepare to handle errors betters.
10305 * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
10306 Set sinks to PAUSED first before adding and linking them so that
10307 we don't interrupt dataflow.
10309 2005-11-28 Wim Taymans <wim@fluendo.com>
10311 * gst-libs/gst/audio/TODO:
10314 * gst-libs/gst/audio/gstaudiosink.c:
10315 (gst_audioringbuffer_open_device),
10316 (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
10317 (gst_audioringbuffer_release):
10320 * gst-libs/gst/audio/gstbaseaudiosink.c:
10321 (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
10322 (gst_base_audio_sink_change_state):
10323 Slave to the master clock when going to PLAYING and unslave when
10326 * gst-libs/gst/audio/gstringbuffer.c:
10327 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
10328 (gst_ring_buffer_acquire), (gst_ring_buffer_release),
10329 (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
10330 (gst_ring_buffer_clear_all), (wait_segment),
10331 (gst_ring_buffer_commit), (gst_ring_buffer_read),
10332 (gst_ring_buffer_advance):
10333 * gst-libs/gst/audio/gstringbuffer.h:
10334 Add some docs and cleanups.
10336 2005-11-28 Julien MOUTTE <julien@moutte.net>
10338 * sys/xvimage/xvimagesink.c:
10339 (gst_xvimagesink_navigation_send_event): Fix navigation events
10340 coordinates translation with pixel aspect ratios.
10342 2005-11-28 Julien MOUTTE <julien@moutte.net>
10344 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
10345 Use calculated video geometry from _setcaps instead of buffer
10346 caps to respect pixel aspect ratio. (fixes #322388)
10348 2005-11-28 Julien MOUTTE <julien@moutte.net>
10350 * docs/libs/tmpl/gstcolorbalance.sgml:
10351 * docs/libs/tmpl/gstmixer.sgml:
10352 * docs/libs/tmpl/gstxoverlay.sgml:
10353 * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
10356 2005-11-28 Julien MOUTTE <julien@moutte.net>
10358 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
10359 Refuse to create an XvImage if we can't find the format.
10361 2005-11-28 Edward Hervey <edward@fluendo.com>
10363 * gst-libs/gst/riff/riff-media.c:
10364 (gst_riff_create_audio_template_caps):
10365 Add ATRAC3 to the list of riff-possible audio caps.
10366 I know we still don't have a plugin for atrac3, but it's saner to output
10367 that than a cryptic mimetype.
10369 2005-11-27 Edward Hervey <edward@fluendo.com>
10371 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
10372 Don't try to create a zero-sized subbuffer.
10374 2005-11-27 Julien MOUTTE <julien@moutte.net>
10376 * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
10377 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
10378 (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
10379 (gst_ximagesink_expose): Fixed a tricky race.
10380 * sys/ximage/ximagesink.h:
10381 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
10382 (gst_xvimagesink_expose): Fixed a tricky race.
10383 * sys/xvimage/xvimagesink.h:
10385 2005-11-27 Edward Hervey <edward@fluendo.com>
10387 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
10388 (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
10389 Remove unused properties, and add queues between demuxers and decoders
10390 so that a lot more files can preroll properly.
10392 2005-11-27 Thomas Vander Stichele <thomas at apestaart dot org>
10394 * gst-libs/gst/net/Makefile.am:
10395 * gst-libs/gst/rtp/Makefile.am:
10396 * gst-libs/gst/tag/Makefile.am:
10397 remove silly include
10398 * gst/tags/Makefile.am:
10399 * gst/tags/gsttagediting.c:
10400 * gst/tags/gsttageditingprivate.h:
10401 * gst/tags/tagedit.vcproj:
10402 remove directory, is as good as empty
10404 2005-11-27 Thomas Vander Stichele <thomas at apestaart dot org>
10407 added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
10408 * gst-libs/Makefile.am:
10409 * gst-libs/gst/audio/Makefile.am:
10410 * gst-libs/gst/interfaces/Makefile.am:
10411 * gst-libs/gst/net/Makefile.am:
10412 * gst-libs/gst/riff/Makefile.am:
10413 * gst-libs/gst/rtp/Makefile.am:
10414 * gst-libs/gst/tag/Makefile.am:
10415 * gst-libs/gst/video/Makefile.am:
10418 2005-11-27 Julien MOUTTE <julien@moutte.net>
10420 * docs/libs/tmpl/gstcolorbalance.sgml:
10421 * docs/libs/tmpl/gstmixer.sgml:
10422 * docs/libs/tmpl/gstxoverlay.sgml:
10423 * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
10424 * sys/ximage/ximagesink.h:
10425 * sys/xvimage/xvimagesink.h: More and more documentation.
10427 2005-11-26 Julien MOUTTE <julien@moutte.net>
10429 * docs/libs/gst-plugins-base-libs-docs.sgml:
10430 * docs/libs/gst-plugins-base-libs-sections.txt:
10431 * docs/libs/tmpl/gstcolorbalance.sgml:
10432 * docs/libs/tmpl/gstmixer.sgml:
10433 * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
10436 2005-11-26 Julien MOUTTE <julien@moutte.net>
10438 * docs/plugins/Makefile.am:
10439 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10440 * docs/plugins/gst-plugins-base-plugins-sections.txt:
10441 * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
10443 2005-11-26 Julien MOUTTE <julien@moutte.net>
10445 * docs/plugins/Makefile.am:
10446 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10447 * docs/plugins/gst-plugins-base-plugins-sections.txt:
10448 * docs/plugins/inspect/plugin-adder.xml:
10449 * docs/plugins/inspect/plugin-alsa.xml:
10450 * docs/plugins/inspect/plugin-audioconvert.xml:
10451 * docs/plugins/inspect/plugin-audiorate.xml:
10452 * docs/plugins/inspect/plugin-audioresample.xml:
10453 * docs/plugins/inspect/plugin-audiotestsrc.xml:
10454 * docs/plugins/inspect/plugin-decodebin.xml:
10455 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
10456 * docs/plugins/inspect/plugin-gnomevfs.xml:
10457 * docs/plugins/inspect/plugin-ogg.xml:
10458 * docs/plugins/inspect/plugin-playbin.xml:
10459 * docs/plugins/inspect/plugin-subparse.xml:
10460 * docs/plugins/inspect/plugin-tcp.xml:
10461 * docs/plugins/inspect/plugin-theora.xml:
10462 * docs/plugins/inspect/plugin-typefindfunctions.xml:
10463 * docs/plugins/inspect/plugin-video4linux.xml:
10464 * docs/plugins/inspect/plugin-videorate.xml:
10465 * docs/plugins/inspect/plugin-videoscale.xml:
10466 * docs/plugins/inspect/plugin-videotestsrc.xml:
10467 * docs/plugins/inspect/plugin-volume.xml:
10468 * docs/plugins/inspect/plugin-vorbis.xml:
10469 * docs/plugins/inspect/plugin-ximagesink.xml:
10470 * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
10471 * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
10473 2005-11-26 Edward Hervey <edward@fluendo.com>
10475 * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
10476 Properly return GstFlowReturn from gst_pad_push in chain functions.
10478 2005-11-25 Michael Smith <msmith@fluendo.com>
10480 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
10481 (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
10482 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
10483 (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
10484 Handle various conditions better when we don't understand a stream.
10485 Removes a heap of CRITICALs on ogg streams containing unknown data.
10487 2005-11-24 Andy Wingo <wingo@pobox.com>
10489 * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
10492 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10494 * configure.ac: back to HEAD
10496 === release 0.9.6 ===
10498 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10501 releasing 0.9.6, "White Eight"
10503 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10505 * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
10506 * docs/plugins/inspect/plugin-sine.xml:
10507 remove sinesrc some more
10509 2005-11-23 Wim Taymans <wim@fluendo.com>
10511 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
10512 If we are reading too slowly, jump forward in the ringbuffer
10513 instead of blocking.
10515 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
10517 * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
10518 (gst_visual_chain):
10519 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
10520 * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
10521 (gst_videorate_chain):
10522 * gst/videotestsrc/gstvideotestsrc.c:
10523 (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
10524 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
10525 (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
10526 (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
10527 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10528 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10529 Updates for API changes
10531 2005-11-23 Wim Taymans <wim@fluendo.com>
10533 * gst-libs/gst/audio/gstbaseaudiosink.c:
10534 (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
10535 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10536 Fix for calibration API change.
10538 2005-11-23 Michael Smith <msmith@fluendo.com>
10540 * gst-libs/gst/audio/multichannel.c:
10541 (gst_audio_get_channel_positions),
10542 (gst_audio_set_channel_positions),
10543 (gst_audio_set_structure_channel_positions_list),
10544 (gst_audio_fixate_channel_positions):
10545 Use gst_value_array_*() functions on value arrays, not
10546 gst_value_list_*().
10548 2005-11-23 Edward Hervey <edward@fluendo.com>
10551 eheh, sinesrc is gone. Replacing sample srcfile by existing one.
10554 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10556 * check/Makefile.am:
10557 * check/elements/videotestsrc.c: (setup_videotestsrc),
10558 (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
10560 add a test for videotestsrc
10562 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10564 * gst/sine/.cvsignore:
10565 * gst/sine/Makefile.am:
10566 * gst/sine/gstsinesrc.c:
10567 * gst/sine/gstsinesrc.h:
10568 * gst/sine/sinesrc.vcproj:
10569 and remove sinesrc from the repository. Closes #321446
10571 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10574 * gst-plugins-base.spec.in:
10575 remove sinesrc from the build
10577 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10579 * check/Makefile.am:
10580 * check/elements/audiotestsrc.c: (setup_audiotestsrc),
10581 (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
10583 add a test for audiotestsrc, testing all waves. Even seems
10584 leak-free at first glance, nice job Stefan
10586 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
10602 Translation string updates
10604 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10605 (gst_v4lsrc_set_caps):
10606 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10607 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10608 * sys/v4l/v4lsrc_calls.h:
10609 Improve v4lsrc, by making it work again.
10611 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
10613 * ext/libvisual/visual.c: (gst_visual_chain):
10614 Fix the fps calculations.
10616 * gst/ffmpegcolorspace/avcodec.h:
10617 Move structure element for clarity
10619 * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
10620 * gst-libs/gst/interfaces/tunernorm.h:
10621 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
10622 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
10623 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
10624 (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
10625 (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
10626 (gst_v4lmjpegsrc_getcaps):
10627 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10628 (gst_v4lsrc_set_caps):
10629 * sys/v4l/gstv4lsrc.h:
10630 * sys/v4l/v4l_calls.c: (gst_v4l_open):
10631 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10632 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10633 * sys/v4l/v4lsrc_calls.h:
10634 Fractional framerates...
10636 2005-11-22 Wim Taymans <wim@fluendo.com>
10638 * gst-libs/gst/audio/gstbaseaudiosink.c:
10639 (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
10640 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10641 And we provide a clock by default, of course...
10643 2005-11-22 Wim Taymans <wim@fluendo.com>
10645 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
10646 This clock can be slaved to a master clock now.
10648 * gst-libs/gst/audio/gstbaseaudiosink.c:
10649 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10650 (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
10651 (gst_base_audio_sink_set_clock),
10652 (gst_base_audio_sink_set_property),
10653 (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
10654 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10655 * gst-libs/gst/audio/gstbaseaudiosink.h:
10656 Handle slaving the internal clock to the clock selected in the
10658 Add property to make the basesink not provide a clock.
10660 * gst-libs/gst/rtp/gstbasertpdepayload.c:
10661 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
10662 (gst_base_rtp_depayload_wait):
10663 * gst-libs/gst/rtp/gstbasertpdepayload.h:
10664 We can use the clock in GstElement, no need to store it ourselves.
10666 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
10668 * docs/libs/tmpl/gstaudio.sgml:
10670 * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
10671 (gst_paranoia_endian_get_type):
10672 * ext/theora/theoraenc.c: (gst_border_mode_get_type):
10673 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
10674 * gst/audiotestsrc/gstaudiotestsrc.c:
10675 (gst_audiostestsrc_wave_get_type):
10676 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
10677 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
10678 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
10679 (gst_sync_method_get_type), (gst_unit_type_get_type),
10680 (gst_client_status_get_type), (gst_multifdsink_class_init),
10681 (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
10682 (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
10683 (gst_multifdsink_get_property):
10684 * gst/tcp/gstmultifdsink.h:
10685 * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
10686 * gst/videotestsrc/gstvideotestsrc.c:
10687 (gst_videotestsrc_pattern_get_type):
10688 remove deprecated properties
10689 fix up enums to correctly have short lowercase dashed nicks
10691 2005-11-22 Michael Smith <msmith@fluendo.com>
10693 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10694 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10697 2005-11-22 Michael Smith <msmith@fluendo.com>
10699 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10700 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10701 Use utility method for scaling clocktime for fractional framerates.
10703 2005-11-22 Jan Schmidt <thaytan@mad.scientist.com>
10705 * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
10706 (gst_visual_chain):
10707 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
10708 * ext/theora/theoradec.c: (theora_handle_type_packet):
10709 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
10710 (theora_enc_chain):
10711 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10712 * gst-libs/gst/video/video.c: (gst_video_frame_rate):
10713 * gst-libs/gst/video/video.h:
10714 * gst/ffmpegcolorspace/avcodec.h:
10715 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10716 (gst_ffmpeg_caps_to_pixfmt):
10717 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10718 (gst_ffmpegcsp_set_caps):
10719 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
10720 (gst_videorate_setcaps), (gst_videorate_blank_data),
10721 (gst_videorate_chain):
10722 * gst/videotestsrc/gstvideotestsrc.c:
10723 (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
10724 (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
10725 (gst_videotestsrc_event), (gst_videotestsrc_create):
10726 * gst/videotestsrc/gstvideotestsrc.h:
10727 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
10728 (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
10729 (gst_ximagesink_get_times), (gst_ximagesink_init):
10730 * sys/ximage/ximagesink.h:
10731 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
10732 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
10733 (gst_xvimagesink_get_times), (gst_xvimagesink_init):
10734 * sys/xvimage/xvimagesink.h:
10735 Convert elements to use fractions for their framerate.
10736 V4L elements to come later tonight.
10738 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
10740 * gst-libs/gst/audio/audio.c:
10741 * gst-libs/gst/audio/audio.h:
10742 remove some deprecated functions
10744 2005-11-22 Andy Wingo <wingo@pobox.com>
10746 * Update for gst_tag_setter API changes.
10748 2005-11-22 Andy Wingo <wingo@pobox.com>
10750 * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
10751 (gst_ogg_demux_perform_seek):
10752 * ext/theora/theoradec.c (theora_dec_sink_event):
10753 * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
10756 2005-11-22 Wim Taymans <wim@fluendo.com>
10758 * examples/seeking/seek.c: (main):
10759 Give higher priority to bus signals than the gtk events
10760 to fix a race condition in the segment looping.
10762 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
10764 * ext/theora/Makefile.am:
10765 * ext/vorbis/Makefile.am:
10766 * gst-libs/gst/tag/Makefile.am:
10767 * gst-plugins-base.spec.in:
10768 Rename libgsttagedit to libgsttag (#322117).
10770 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
10772 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
10773 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10774 Call gst_x_overlay_prepare_xwindow_id() to give applications
10775 a final chance to set their own xwindow id before the video
10776 sink creates its own window.
10778 2005-11-22 Julien MOUTTE <julien@moutte.net>
10780 * sys/xvimage/xvimagesink.c:
10781 (gst_xvimagesink_navigation_send_event): Handle navigation
10782 events correcly with borders if applicable.
10784 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
10786 Patch by: Luca Ognibene
10788 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10789 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
10790 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10791 (gst_ffmpegcsp_caps_remove_format_info):
10792 * gst/ffmpegcolorspace/imgconvert.c:
10793 * gst/ffmpegcolorspace/imgconvert_template.h:
10794 Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
10795 #318353); use gst_structure_has_name().
10797 2005-11-22 Julien MOUTTE <julien@moutte.net>
10799 * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
10800 (gst_ximagesink_class_init): Add debug macros on functions.
10801 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
10802 (gst_xvimagesink_xwindow_draw_borders),
10803 (gst_xvimagesink_xvimage_put),
10804 (gst_xvimagesink_xwindow_update_geometry),
10805 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
10806 (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
10807 (gst_xvimagesink_xcontext_clear),
10808 (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
10809 (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
10810 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
10811 (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
10812 (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
10813 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
10814 * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
10815 expose while being PAUSED, out of data flow navigation events, etc..
10817 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
10819 * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10820 * gst-libs/gst/audio/audio.h:
10821 fix prototype - wondering why the test worked regardless
10823 2005-11-21 Thomas Vander Stichele <thomas at apestaart dot org>
10825 * check/Makefile.am:
10826 * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10827 * gst-libs/gst/audio/audio.h:
10828 add a method that returns a proper GstClockTime
10830 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10832 * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
10833 (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
10834 * gst-libs/gst/interfaces/xoverlay.h:
10835 Remove everything having to do with the desired size; add
10836 gst_x_overlay_prepare_xwindow_id() function; remove the
10837 'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
10838 post a message on the bus instead (#321816).
10840 * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
10841 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
10842 (gst_xvimagesink_xoverlay_init):
10843 Remove desired size stuff (#321816).
10845 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10847 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
10848 (mpeg2_sys_type_find), (mpeg1_sys_type_find),
10849 (mpeg_video_type_find), (mpeg_video_stream_type_find):
10850 Terminate vararg functions with NULL instead of 0 to
10853 2005-11-21 Andy Wingo <wingo@pobox.com>
10855 patch by: Sebastien Cote <sebas642@yahoo.ca>
10857 * gst-libs/gst/rtp/gstrtpbuffer.h:
10858 * gst-libs/gst/rtp/gstrtpbuffer.c
10859 (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
10861 2005-11-21 Andy Wingo <wingo@pobox.com>
10863 * gst/playback/gstplaybin.c (gen_audio_element)
10864 (gen_video_element): Use the new MISSING_PLUGIN core error
10865 category. Closes #320060.
10867 * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event):
10868 * gst/videorate/gstvideorate.c (gst_videorate_event):
10869 * ext/theora/theoradec.c (theora_dec_sink_event):
10870 * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
10873 * gst/subparse/gstsubparse.c (gst_subparse_src_event):
10874 * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
10875 stream lock changes.
10877 2005-11-21 Wim Taymans <wim@fluendo.com>
10879 * gst-libs/gst/audio/gstbaseaudiosink.c:
10880 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10881 (gst_base_audio_sink_provide_clock),
10882 (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
10883 (gst_base_audio_sink_change_state):
10884 * gst/audioresample/gstaudioresample.c:
10885 Segment update fix.
10887 2005-11-21 Andy Wingo <wingo@pobox.com>
10890 * *.c: Ran scripts/update-macros. Oh yes.
10892 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10894 * sys/ximage/Makefile.am:
10895 * sys/ximage/ximage.c:
10896 Rename ximage plugin to ximagesink (#321426) (Don't forget to
10897 remove your old libgstximage.* manually if necessary).
10899 2005-11-21 Michael Smith <msmith@fluendo.com>
10901 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
10902 Minimal fix for bug #320200: set the min/max bitrate in the correct
10903 units. A better fix would be to upgrade to the RATEMANAGE2
10904 interface, rather than using the deprecated interface used here, but
10905 that would require an update in our libvorbis dependency (to 1.1),
10906 which is probably undesirable.
10908 2005-11-21 Jan Schmidt <thaytan@mad.scientist.com>
10910 * ext/libvisual/visual.c: (get_buffer):
10911 * gst-libs/gst/audio/gstbaseaudiosrc.c:
10912 (gst_base_audio_src_fixate):
10913 * gst/audioconvert/gstaudioconvert.c:
10914 (gst_audio_convert_fixate_caps):
10915 * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
10916 * gst/audiotestsrc/gstaudiotestsrc.c:
10917 (gst_audiotestsrc_src_fixate):
10918 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
10919 * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
10920 * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
10921 * gst/videotestsrc/gstvideotestsrc.c:
10922 (gst_videotestsrc_src_fixate):
10923 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
10924 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
10925 Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
10929 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10931 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
10932 (gst_riff_create_iavs_caps):
10933 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
10934 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
10935 (gst_riff_parse_info):
10936 * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
10937 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
10938 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10939 Fixes for GST_FOURCC_FORMAT API change.
10941 2005-11-21 Andy Wingo <wingo@pobox.com>
10943 patch by: Alessandro Dessina <alessandro nnva org>
10945 * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
10946 * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
10947 (gst_ogg_parse_chain):
10948 * ext/theora/theoraenc.c (theora_set_header_on_caps):
10949 * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
10950 * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
10951 gst_value_list calls on arrays. Fixes #321962.
10953 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10955 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
10956 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
10957 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
10958 * gst/adder/gstadder.c: (gst_adder_init),
10959 (gst_adder_request_new_pad), (gst_adder_collected),
10960 (gst_adder_change_state):
10961 Update for gst_collectpads_foo() to gst_collect_pads_foo()
10964 2005-11-21 Michael Smith <msmith@fluendo.com>
10966 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
10967 (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
10968 Properly handle pad_push return values.
10970 2005-11-20 Jan Schmidt <thaytan@mad.scientist.com>
10972 * gst-libs/gst/tag/Makefile.am:
10973 * gst-libs/gst/tag/gstvorbistag.c:
10974 (gst_tag_list_to_vorbiscomment_buffer):
10975 Remove obsolete vorbistag element and debug category.
10977 * gst/playback/gstplaybasebin.c: (check_queue):
10978 Don't divide by 0 when queue-threshold is 0.
10980 * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
10981 Don't modify an existing pixel-aspect-ratio if we fail to read
10984 2005-11-20 Wim Taymans <wim@fluendo.com>
10986 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
10987 (gst_vorbisenc_push_packet):
10988 GST_PAD_IS_USABLE is gone, use the return value of
10989 the push or pad_alloc_buffer instead.
10991 2005-11-18 Julien MOUTTE <julien@moutte.net>
10993 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
10994 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
10995 (gst_ximagesink_ximage_destroy),
10996 (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
10997 (gst_ximagesink_xwindow_new),
10998 (gst_ximagesink_xwindow_update_geometry),
10999 (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
11000 (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
11001 (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
11002 (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
11003 (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
11004 (gst_ximagesink_navigation_send_event),
11005 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
11006 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
11007 (gst_ximagesink_finalize), (gst_ximagesink_init),
11008 (gst_ximagesink_class_init):
11009 * sys/ximage/ximagesink.h: Refactoring of ximagesink.
11010 This new version brings correct software scaling, non flickering
11011 window while resizing, pixel aspect ratio handling, usage of
11012 hardware buffer pools, out of data flow event thread for
11013 navigation and handling of expose events even when being PAUSED,
11014 a new property to keep video aspect ratio when resizing, etc...
11016 2005-11-18 Julien MOUTTE <julien@moutte.net>
11018 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
11019 (gst_videoscale_fixate_caps): Introduce back caps fixate with
11022 2005-11-18 Edward Hervey <bilboed@dvdsrc.fluendo.com>
11024 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
11025 Unsetting IS_SINK flag from the fakesink, so decodebin
11026 never behaves as a sink.
11028 2005-11-17 Wim Taymans <wim@fluendo.com>
11030 * gst-libs/gst/audio/gstbaseaudiosrc.c:
11031 (gst_base_audio_src_change_state):
11032 Fix the audiosrc base class again, we did not unflush.
11034 2005-11-17 Julien MOUTTE <julien@moutte.net>
11036 * examples/seeking/seek.c: (make_dv_pipeline),
11037 (make_vorbis_theora_pipeline), (make_avi_pipeline),
11038 (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
11039 to ogg/vorbis/theora pipeline.
11041 2005-11-17 Wim Taymans <wim@fluendo.com>
11043 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
11044 (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
11045 (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
11046 Fix EOS on multiple streams.
11049 2005-11-16 Wim Taymans <wim@fluendo.com>
11051 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
11052 (gst_ogg_demux_perform_seek):
11053 Segment done must include stream time.
11055 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
11056 (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
11057 (gst_ogg_mux_change_state):
11058 Fix ogg muxer again.
11060 2005-11-16 Wim Taymans <wim@fluendo.com>
11062 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
11065 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
11067 * ext/libvisual/visual.c: (gst_visual_init):
11068 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
11069 * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
11070 (gst_ogg_parse_chain):
11071 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
11072 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
11073 * ext/theora/theoradec.c: (gst_theora_dec_init):
11074 * ext/theora/theoraenc.c: (gst_theora_enc_init):
11075 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
11076 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
11077 * gst/adder/gstadder.c: (gst_adder_class_init),
11078 (gst_adder_dispose):
11079 * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
11080 * gst/subparse/gstsubparse.c: (gst_subparse_init):
11081 * gst/videorate/gstvideorate.c: (gst_videorate_init):
11082 Fix a whole set of pad template leaks
11084 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
11086 * check/generic/states.c: (GST_START_TEST):
11087 fix the test so that it only checks for elements that are part of
11090 2005-11-16 Michael Smith <msmith@fluendo.com>
11092 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
11093 (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
11094 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11095 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11096 (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
11097 (gst_ogg_mux_change_state):
11098 Fix leaking collectpads.
11100 2005-11-16 Edward Hervey <edward@fluendo.com>
11102 * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
11103 (gst_videorate_event), (gst_videorate_chain):
11104 Handle segment seeks
11106 2005-11-16 Wim Taymans <wim@fluendo.com>
11108 * gst-libs/gst/audio/gstbaseaudiosink.c:
11109 (gst_base_audio_sink_provide_clock),
11110 (gst_base_audio_sink_change_state):
11111 Set ringbuffer to non-flushing when going to PAUSED, set to
11112 flushing again when going to READY.
11114 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
11115 (gst_ring_buffer_stop):
11116 Start in flushing mode by default.
11117 Don't set flushing in the _stop method, let the app call
11120 2005-11-16 Julien MOUTTE <julien@moutte.net>
11122 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
11123 * gst-libs/gst/video/videosink.h: Add helper function needed
11126 2005-11-16 Tim-Philipp Müller <tim at centricular dot net>
11128 * gst/videoscale/gstvideoscale.c:
11129 (gst_videoscale_handle_src_event):
11130 Don't leak reference to pad parent.
11132 2005-11-16 Wim Taymans <wim@fluendo.com>
11134 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
11135 Set ringbuffer to flushing when stopping so that we don't
11136 block on wait_segment anymore and livelock.
11138 2005-11-16 Wim Taymans <wim@fluendo.com>
11140 * examples/seeking/seek.c: (send_event), (do_seek),
11141 (loop_toggle_cb), (segment_done), (main):
11142 Added looping checkbox.
11144 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
11146 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
11147 (gst_ogg_demux_init):
11148 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
11149 (gst_vorbis_dec_init):
11150 revert unrefs, they don't pass make check
11152 2005-11-15 Johan Dahlin <johan@gnome.org>
11154 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
11155 (gst_ogg_demux_init), (gst_ogg_demux_finalize):
11156 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
11157 (gst_vorbis_dec_init):
11158 Fix pad template leaks.
11160 2005-11-15 Tim-Philipp Müller <tim at centricular dot net>
11162 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
11163 Make state change function thread safe.
11165 2005-11-15 Edward Hervey <edward@fluendo.com>
11167 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
11168 (gst_ogg_demux_class_init):
11169 Implement GstElement::send_event, so we can send seek events
11172 2005-11-14 Julien MOUTTE <julien@moutte.net>
11174 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
11175 Discovered how to take away flickering while resizing the
11176 window. Please don't put that in ximagesink, refactoring in
11179 2005-11-14 Michael Smith <msmith@fluendo.com>
11181 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
11182 (gst_multifdsink_render):
11183 Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
11185 2005-11-14 Tim-Philipp Müller <tim at centricular dot net>
11187 * gst/playback/gstplaybin.c: (gen_audio_element):
11188 Use autoaudiosink, it tends to be more widely available than
11191 2005-11-14 Andy Wingo <wingo@pobox.com>
11193 * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
11194 as well if it is available. Fixes #316442.
11196 2005-11-14 Michael Smith <msmith@fluendo.com>
11198 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
11199 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
11200 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11201 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11202 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
11203 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
11204 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
11205 (gst_vorbisenc_change_state):
11206 Fix a small memory leak in vorbisenc.
11207 Fix large memory leaks in oggmux, also fix lots of state change
11210 2005-11-14 Thomas Vander Stichele <thomas at apestaart dot org>
11212 * gst/videotestsrc/gstvideotestsrc.c:
11213 (gst_videotestsrc_class_init), (gst_videotestsrc_init),
11214 (gst_videotestsrc_src_fixate):
11215 move fixation to a fixate function
11216 remove negotiate function, basesrc's is good enough
11217 fixes a bug for check when using the element alone
11219 2005-11-13 Edward Hervey <edward@fluendo.com>
11221 * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
11222 (key_toggle_cb), (main):
11223 Added checkboxes for adding/removing the accurate and key_unit seek
11226 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
11228 * configure.ac: back to HEAD
11230 === release 0.9.5 ===
11232 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
11235 releasing 0.9.5, "No No Kia"
11237 2005-11-11 Edward Hervey <edward@fluendo.com>
11239 * examples/seeking/seek.c: (make_parselaunch_pipeline):
11240 Added parse-launch syntax seeking mode for the seeking example.
11241 This should help stress-test even more cases.
11242 Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
11244 2005-11-11 Tim-Philipp Müller <tim at centricular dot net>
11246 * sys/xvimage/xvimagesink.c:
11247 (gst_xvimagesink_navigation_send_event):
11248 Check whether peer pad exists before sending navigation events
11251 2005-11-11 Michael Smith <msmith@fluendo.com>
11253 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
11254 (gst_vorbisenc_buffer_from_packet):
11255 * ext/vorbis/vorbisenc.h:
11256 Set duration on encoded buffers. This allows oggmux's
11257 max_page_delay parameter to actually work.
11259 2005-11-11 Tim-Philipp Müller <tim at centricular dot net>
11261 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11262 (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
11263 (gst_ffmpegcsp_avpicture_fill):
11264 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11265 (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
11266 Make palettes work again (see #132341). Use our own macros
11269 2005-11-10 Andy Wingo <wingo@pobox.com>
11271 * gst/playback/gstplaybasebin.c (prepare_output): Fix format
11274 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
11276 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11277 (gst_ffmpegcsp_transform_caps):
11278 Prefer passthrough in transform_caps
11280 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
11282 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
11283 check for ALSA errors properly, instead of relying on ALSA's
11284 error strings to serve to the user.
11286 2005-11-10 Wim Taymans <wim@fluendo.com>
11288 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
11289 (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
11290 (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
11291 Modernise the seek code.
11293 2005-11-10 Michael Smith <msmith@fluendo.com>
11295 * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
11296 (setup_substreams), (set_active_source):
11297 Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
11298 trying to go to NULL if we failed to read a file.
11300 2005-11-10 Wim Taymans <wim@fluendo.com>
11302 * gst/audiotestsrc/gstaudiotestsrc.c:
11303 (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
11304 (gst_audiotestsrc_create):
11305 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
11306 (gst_sinesrc_get_times), (gst_sinesrc_create):
11307 * gst/videotestsrc/gstvideotestsrc.c:
11308 (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
11309 (gst_videotestsrc_create):
11310 The base class can now sync for us.
11312 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
11314 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
11315 a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
11316 name=source autoprobe=false autoprobe-fps=false copy-mode=1
11317 device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
11318 format=(fourcc)I420" ! xvimagesink
11320 2005-11-10 Tim-Philipp Müller <tim at centricular dot net>
11322 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
11323 (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
11324 (gst_sinesrc_newsegment):
11325 Send newsegment event in TIME format, set duration if
11326 num-buffers is set, fix duration querying.
11328 2005-11-10 Michael Smith <msmith@fluendo.com>
11330 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
11331 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11332 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11333 (gst_ogg_mux_collected):
11334 Fix EOS handling, partially. Now forwarding an EOS event once we have
11335 EOS on all pads works correctly. However, we still don't properly set
11336 EOS on the actual ogg stream pages.
11338 2005-11-09 Tim-Philipp Müller <tim at centricular dot net>
11340 * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
11341 Set elements to NULL state before disposing of them.
11343 2005-11-08 Sebastien Cote <sebas642 at yahoo dot ca>
11345 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
11347 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11348 (gst_base_rtp_depayload_init),
11349 (gst_base_rtp_depayload_set_gst_timestamp):
11350 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11351 We need to send a newsegment event for each instance, not
11352 just for the first instance of this class (get rid of
11353 static variable in function). (#321011).
11355 2005-11-08 Michael Smith <msmith@fluendo.com>
11357 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
11358 (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
11359 (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
11360 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
11361 Forward port rewrite of muxing strategy to 0.9 version of oggmux.
11362 This makes us mux things correctly according to the ogg muxing
11363 rules. Still not handling EOS correctly right now, though.
11365 2005-11-08 Tim-Philipp Müller <tim at centricular dot net>
11367 * gst/audioconvert/gstaudioconvert.c:
11370 2005-11-08 Tim-Philipp Müller <tim at centricular dot net>
11372 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
11373 (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
11374 Initialise segment_stop to GST_CLOCK_TIME_NONE when
11375 creating a new chain; should fix live streaming. Also
11376 add more debug output and fix a typo.
11378 2005-11-08 Brian Cameron <brian dot cameron at sun dot com>
11380 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
11382 * gst/volume/gstvolume.c: (volume_set_caps):
11383 Fix compilation on Solaris with Forte. (#320923)
11385 2005-11-08 Wim Taymans <wim@fluendo.com>
11387 * gst-libs/gst/audio/gstbaseaudiosink.c:
11388 (gst_base_audio_sink_render):
11389 No need to do a typecheck.
11391 2005-11-07 Tim-Philipp Müller <tim at centricular dot net>
11393 * ext/alsa/gstalsa.h:
11394 We register a debug category, so let's use it.
11396 2005-11-04 Zeeshan Ali <zeenix@gmail.com>
11398 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11399 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
11400 Fixed a small problem.
11402 2005-11-04 Wim Taymans <wim@fluendo.com>
11404 * examples/seeking/Makefile.am:
11405 * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
11406 (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
11407 (make_playerbin_pipeline), (format_value), (update_scale),
11408 (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
11409 (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
11410 (print_usage), (main):
11411 Added app for playback speed testing.
11413 * examples/seeking/seek.c: (dynamic_link),
11414 (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
11415 (make_mpeg_pipeline), (do_seek), (set_update_scale),
11416 (message_received), (main):
11417 Updated seek example.
11419 2005-11-04 Zeeshan Ali <zeenix@gmail.com>
11421 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11422 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
11423 (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
11424 (gst_base_rtp_depayload_set_clock):
11425 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11426 Don't sleep on the bench (system clock) when you have a nice
11427 comfortable bed (Gstreamer clock) to sleep on.
11429 2005-11-03 Wim Taymans <wim@fluendo.com>
11431 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11432 (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
11433 (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
11434 Handle the case where a pad_block failed.
11436 2005-11-02 Sebastien Cote <sebas642@yahoo.ca>
11438 reviewed by: Zeeshan Ali <zeenix@gmail.com>
11440 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11441 (gst_base_rtp_depayload_add_to_queue),
11442 (gst_base_rtp_depayload_push),
11443 (gst_base_rtp_depayload_set_gst_timestamp),
11444 (gst_base_rtp_depayload_queue_release):
11445 Fixes some bugs in the depayloader's queuing/de-queueing code.
11447 2005-10-31 Michael Smith <msmith@fluendo.com>
11449 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
11450 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
11451 (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
11452 Patch from Alessandro Decina <alessandro@nnva.org>.
11453 Make oggdemux only find the final time in a chain, not per-pad,
11454 since the per-pad information can be very expensive to locate, and
11455 it isn't used anywhere. This makes reading a file containing
11456 OggSkeleton reasonably fast.
11457 Also, make chain finding work when there are logical bitstreams that
11458 can't be decoded. Fixes #319110.
11460 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
11462 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11463 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
11464 (gst_base_rtp_depayload_chain),
11465 (gst_base_rtp_depayload_add_to_queue),
11466 (gst_base_rtp_depayload_push),
11467 (gst_base_rtp_depayload_set_gst_timestamp),
11468 (gst_base_rtp_depayload_queue_release),
11469 (gst_base_rtp_depayload_start_thread),
11470 (gst_base_rtp_depayload_set_property),
11471 (gst_base_rtp_depayload_get_property):
11472 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11473 Some random fixes, to fullfill the desires of thomas.
11475 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
11477 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11478 (gst_base_rtp_depayload_add_to_queue),
11479 (gst_base_rtp_depayload_push):
11480 Fixed the queueing algorithm.
11482 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
11484 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11485 (gst_base_rtp_depayload_push):
11488 2005-10-31 Wim Taymans <wim@fluendo.com>
11490 * gst-libs/gst/audio/gstringbuffer.h:
11493 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11494 (gst_ffmpeg_caps_to_pixfmt):
11495 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11496 (gst_ffmpegcsp_set_caps):
11497 Some more comments.
11498 Handle missing required caps fields better.
11500 2005-10-31 Wim Taymans <wim@fluendo.com>
11502 * gst-libs/gst/audio/gstbaseaudiosink.c:
11503 (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
11504 (gst_base_audio_sink_render):
11505 * gst-libs/gst/audio/gstringbuffer.c:
11506 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
11507 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
11508 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
11509 (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
11510 (gst_ring_buffer_read):
11511 * gst-libs/gst/audio/gstringbuffer.h:
11512 Add flushing mode to the ringbuffer so that it in all cases does
11513 not try to handle more audio. This makes sure it does not try to
11514 block anymore when flushing and fixes a livelock.
11516 2005-10-29 Tim-Philipp Müller <tim at centricular dot net>
11518 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
11519 (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
11520 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
11521 Explicitly check for -1 values before doing a conversion
11522 and always map them to -1. (#315545)
11524 2005-10-28 Thomas Vander Stichele <thomas at apestaart dot org>
11526 * gst/playback/gstplaybin.c: (gen_video_element):
11527 first try autovideosink, then xvimagesink, then error out
11529 add translatable file
11544 update translations
11546 2005-10-27 Philippe Khalaf <burger at speedy dot org>
11548 * gst-libs/gst/rtp/gstbasedepayload.c:
11549 * gst-libs/gst/rtp/gstbasedepayload.h:
11552 2005-10-27 Tim-Philipp Müller <tim at centricular dot net>
11554 * gst/playback/.cvsignore:
11555 * gst/playback/decodetest.c:
11556 * gst/playback/test3.c:
11557 Port these two tests as well.
11559 2005-10-27 Wim Taymans <wim@fluendo.com>
11561 * ext/theora/theoradec.c: (theora_dec_src_query),
11562 (theora_dec_sink_event):
11563 * ext/theora/theoraenc.c: (theora_enc_sink_event),
11564 (theora_enc_change_state):
11565 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
11566 (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
11567 Take proper locks when handling events.
11569 2005-10-27 Wim Taymans <wim@fluendo.com>
11571 * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
11572 (gst_adder_change_state):
11573 Fix timestamps and fix deadlock when stopping the collectpads.
11575 2005-10-27 Zeeshan Ali <zeenix@gmail.com>
11577 * gst-libs/gst/rtp/gstrtpbuffer.h:
11578 Declaring the payload types as strings too so that they can be used
11579 in the padtemplate inialization.
11581 2005-10-26 Andre Magalhaes <andrunko@gmail.com>
11583 reviewed by: Zeeshan Ali <zeenix@gmail.com>
11585 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11586 (gst_base_rtp_depayload_class_init):
11587 Fixes a small but nasty bug. The derived elements no longer segfaults
11590 2005-10-26 Michael Smith <msmith@fluendo.com>
11592 * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
11593 When clearing an audioconvert context, set tmpbufsize to zero, so
11594 we'll allocate it again later if required.
11595 This fixes audioconvert re-negotiating formats, which previously
11596 segfaulted with a NULL destination buffer.
11598 2005-10-26 Zeeshan Ali <zeenix@gmail.com>
11600 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11601 (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
11602 (gst_base_rtp_depayload_set_gst_timestamp),
11603 (gst_base_rtp_depayload_queue_release):
11604 Fixed a smalll memleak.
11606 2005-10-26 Zeeshan Ali <zeenix@gmail.com>
11607 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11608 (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
11609 (gst_base_rtp_depayload_finalize),
11610 (gst_base_rtp_depayload_setcaps),
11611 (gst_base_rtp_depayload_add_to_queue),
11612 (gst_base_rtp_depayload_push),
11613 (gst_base_rtp_depayload_set_gst_timestamp),
11614 (gst_base_rtp_depayload_queue_release),
11615 (gst_base_rtp_depayload_thread),
11616 (gst_base_rtp_depayload_change_state):
11617 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11618 Changed the C++ comments to C comments
11620 2005-10-26 Tim-Philipp Müller <tim at centricular dot net>
11622 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
11623 * gst/tcp/gsttcpclientsrc.h:
11624 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
11625 * gst/tcp/gsttcpserversrc.h:
11626 Remove unused 'curoffset' structure member.
11628 2005-10-25 Zeeshan Ali <zeenix@gmail.com>
11630 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11631 (gst_base_rtp_depayload_base_init),
11632 (gst_base_rtp_depayload_finalize):
11633 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11634 * gst-libs/gst/rtp/gstbasertppayload.h:
11635 The pad-template on the sinkpad should be set by the derived classes.
11636 Also added some useful macros.
11638 2005-10-24 Wim Taymans <wim@fluendo.com>
11640 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
11641 Correctly flush decoder samples even if we could not
11642 copy them to an output buffer. Fixes #319618.
11644 2005-10-24 Julien MOUTTE <julien@moutte.net>
11646 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
11647 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
11648 the caps against our xcontext caps.
11650 2005-10-24 Wim Taymans <wim@fluendo.com>
11652 * gst-libs/gst/audio/gstbaseaudiosink.c:
11653 (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11655 Use sync property from baseclass to disable sync.
11657 2005-10-24 Wim Taymans <wim@fluendo.com>
11659 * gst-libs/gst/audio/gstbaseaudiosink.c:
11660 (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11661 Buffers with no timestamps get aligned with previous buffers or
11662 on underrun, played ASAP.
11664 2005-10-24 Julien MOUTTE <julien@moutte.net>
11666 * gst-libs/gst/video/video.h:
11667 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11668 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
11669 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
11670 here comes my change on caps for framerate and geometry range.
11671 We are now accepting 1 to MAXINT for width and height, and from
11672 0.0 to MAXDOUBLE for framerate. That allows duration less png frames
11673 to be blended correctly in videomixer.
11675 2005-10-24 Thomas Vander Stichele <thomas at apestaart dot org>
11680 === release 0.9.4 ===
11682 2005-10-23 Thomas Vander Stichele <thomas at apestaart dot org>
11687 releasing 0.9.4, "Velociraptor"
11689 2005-10-23 Thomas Vander Stichele <thomas at apestaart dot org>
11691 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
11695 2005-10-21 Wim Taymans <wim@fluendo.com>
11697 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11698 (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
11699 (pad_blocked), (close_pad_link), (new_pad):
11700 Don't try to remove elements twice.
11702 2005-10-21 Wim Taymans <wim@fluendo.com>
11704 * ext/theora/theoradec.c: (theora_dec_src_query),
11705 (theora_dec_sink_event):
11706 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11707 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11708 (vorbis_handle_data_packet):
11709 * ext/vorbis/vorbisdec.h:
11712 * gst-libs/gst/audio/gstbaseaudiosink.c:
11713 (gst_base_audio_sink_render):
11714 Don't try to sync on buffers without a timestamp.
11716 2005-10-21 Wim Taymans <wim@fluendo.com>
11718 * ext/theora/theoradec.c: (theora_dec_src_query),
11719 (theora_dec_sink_event):
11720 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11721 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11722 (vorbis_handle_data_packet):
11723 * ext/vorbis/vorbisdec.h:
11726 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
11728 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
11729 (gst_vorbisenc_src_query):
11730 Implement position and duration queries.
11732 * gst/playback/test3.c: (update_scale), (main):
11733 Fix for async state changes and print nicer output.
11735 2005-10-20 Wim Taymans <wim@fluendo.com>
11737 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11738 (dump_element_stats), (main):
11739 * gst/playback/test6.c: (main):
11742 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
11744 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11745 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11746 Don't use functions for position queries when handling
11749 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
11751 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11752 (vorbis_handle_data_packet), (vorbis_dec_chain),
11753 (vorbis_dec_change_state):
11754 * ext/vorbis/vorbisdec.h:
11755 Vorbis streams can be embedded in other container formats
11756 than ogg, container formats where the demuxer might set
11757 timestamps on encoded vorbis buffers instead of those silly
11758 granulepos thingies. In short: make vorbisdec handle
11759 timestamps on incoming buffers as well.
11761 2005-10-20 Wim Taymans <wim@fluendo.com>
11763 * gst/playback/gstplaybasebin.c: (group_destroy),
11764 (gst_play_base_bin_change_state):
11766 Handle case where playbasebin is now ASYNC because
11769 2005-10-19 Tim-Philipp Müller <tim at centricular dot net>
11771 * gst/audioconvert/Makefile.am:
11772 * gst/audioconvert/bufferframesconvert.c:
11773 * gst/audioconvert/plugin.c: (plugin_init):
11774 * gst/audioconvert/plugin.h:
11775 And bye bye buffer-frames-convert
11777 2005-10-19 Wim Taymans <wim@fluendo.com>
11779 * check/elements/audioconvert.c:
11780 * docs/libs/tmpl/gstaudio.sgml:
11781 * docs/libs/tmpl/gstcolorbalance.sgml:
11782 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11783 (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
11784 * ext/vorbis/vorbisenc.c: (raw_caps_factory):
11785 * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
11786 * gst-libs/gst/audio/audio.h:
11787 * gst/audioconvert/audioconvert.h:
11788 * gst/audioconvert/gstaudioconvert.c:
11789 (gst_audio_convert_parse_caps):
11790 * gst/volume/gstvolume.c:
11791 Bye bye buffer-frames.
11793 2005-10-19 Wim Taymans <wim@fluendo.com>
11795 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
11796 (query_positions_elems), (query_positions_pads), (update_scale),
11797 (do_seek), (set_update_scale), (message_received), (main):
11798 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
11799 (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
11800 (gst_ogg_demux_loop):
11801 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
11802 * ext/theora/theoradec.c: (theora_dec_src_query),
11803 (theora_dec_sink_event):
11804 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11805 (vorbis_dec_sink_event), (vorbis_handle_data_packet):
11806 * gst/adder/gstadder.c: (gst_adder_query):
11807 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11808 * gst/playback/test3.c: (update_scale):
11809 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11810 (dump_element_stats), (main):
11811 * gst/playback/test6.c: (main):
11812 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11815 2005-10-19 Tim-Philipp Müller <tim at centricular dot net>
11817 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
11818 (xml_check_first_element), (xml_type_find), (smil_type_find),
11820 Add typefinding for SMIL and for generic XML. Based on patch by
11821 Akos Maroy (#308663).
11823 2005-10-18 Wim Taymans <wim@fluendo.com>
11825 * gst/playback/Makefile.am:
11826 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11827 (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
11828 (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
11829 (try_to_link_1), (new_pad), (no_more_pads), (type_found),
11830 (gst_decode_bin_change_state):
11831 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
11832 (gst_play_bin_send_event_to_sink):
11833 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11834 (dump_element_stats), (main):
11835 * gst/playback/test6.c: (main):
11836 Make playbin async, it'll commit state to paused when all streams
11839 Added test6.c to show async behaviour.
11841 2005-10-18 Wim Taymans <wim@fluendo.com>
11843 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
11844 (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
11845 Fix for segment-start/stop API change.
11847 2005-10-18 Wim Taymans <wim@fluendo.com>
11849 * check/Makefile.am:
11850 * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
11852 Add future test for clock selection.
11854 2005-10-18 Wim Taymans <wim@fluendo.com>
11856 * ext/alsa/gstalsasink.c: (gst_alsasink_init),
11857 (gst_alsasink_close):
11858 Set handle to NULL.
11860 * gst-libs/gst/audio/gstringbuffer.c:
11861 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
11862 (gst_ring_buffer_acquire), (gst_ring_buffer_release),
11863 (gst_ring_buffer_start), (gst_ring_buffer_pause),
11864 (gst_ring_buffer_stop), (gst_ring_buffer_commit),
11865 (gst_ring_buffer_read):
11868 2005-10-17 Stefan Kost <ensonic@users.sf.net>
11870 * gst/audiotestsrc/Makefile.am:
11871 * gst/sine/Makefile.am:
11872 * gst/volume/Makefile.am:
11873 fix broken build of controllerized plugins
11875 2005-10-17 Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
11877 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
11879 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
11880 (gst_riff_create_video_template_caps):
11881 Add support for Indeo-3 (IV32).
11883 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
11888 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
11890 * gst-libs/gst/video/video.c: (gst_video_get_size):
11891 * gst/audiotestsrc/gstaudiotestsrc.c:
11894 2005-10-17 Andy Wingo <wingo@pobox.com>
11896 * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
11897 with the collectpads change.
11898 (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
11900 * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
11902 * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
11904 * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
11905 alloc_buffer flow return to callers.
11906 (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
11907 change. Fix some memleaks in theoraenc.
11909 * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
11910 in strange circumstance.
11912 2005-10-17 Julien MOUTTE <julien@moutte.net>
11914 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11915 (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
11916 from caps, let's use the caps...
11918 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
11921 put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
11923 2005-10-16 Thomas Vander Stichele <thomas at apestaart dot org>
11925 * gst-libs/gst/interfaces/Makefile.am:
11928 2005-10-16 Andy Wingo <wingo@pobox.com>
11930 * gst/playback/gstdecodebin.c
11931 (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
11933 (try_to_link_1): Increase kraziness level.
11935 2005-10-16 Thomas Vander Stichele <thomas at apestaart dot org>
11938 restructure like the core one
11939 * gst-libs/gst/audio/Makefile.am:
11940 * gst-libs/gst/interfaces/Makefile.am:
11941 * gst-libs/gst/net/Makefile.am:
11942 * gst-libs/gst/riff/Makefile.am:
11943 * gst-libs/gst/rtp/Makefile.am:
11944 * gst-libs/gst/tag/Makefile.am:
11945 * gst-libs/gst/video/Makefile.am:
11946 use correct linker flags, now the libs are properly versioned
11947 * check/elements/audioconvert.c: (verify_convert):
11948 * ext/alsa/gstalsaplugin.c:
11949 * ext/cdparanoia/gstcdparanoia.c:
11950 * ext/gnomevfs/gstgnomevfs.c:
11951 * ext/libvisual/visual.c:
11952 * ext/ogg/gstogg.c:
11953 * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
11954 * ext/theora/theora.c:
11955 * ext/vorbis/vorbis.c:
11956 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
11957 * gst-libs/gst/tag/gsttagediting.c:
11958 * gst-libs/gst/video/video.c:
11959 * gst/adder/gstadder.c:
11960 * gst/audioconvert/plugin.c:
11961 * gst/audiorate/gstaudiorate.c:
11962 * gst/audioresample/gstaudioresample.c:
11963 * gst/audioresample/resample_ref.c: (resample_scale_ref):
11964 * gst/audioscale/gstaudioscale.c:
11965 * gst/audioscale/resample.c:
11966 * gst/audiotestsrc/gstaudiotestsrc.c:
11967 * gst/ffmpegcolorspace/gstffmpeg.c:
11968 * gst/playback/gstdecodebin.c: (close_pad_link):
11969 * gst/playback/gstplaybin.c: (gen_video_element),
11970 (gen_audio_element):
11971 * gst/sine/gstsinesrc.c:
11972 * gst/subparse/gstsubparse.c:
11973 * gst/tags/gsttagediting.c:
11974 * gst/tcp/gsttcpplugin.c:
11975 * gst/typefind/gsttypefindfunctions.c:
11976 * gst/videorate/gstvideorate.c:
11977 * gst/videoscale/gstvideoscale.c:
11978 * gst/videotestsrc/gstvideotestsrc.c:
11979 * gst/volume/gstvolume.c:
11980 * sys/v4l/gstv4l.c:
11981 * sys/ximage/ximage.c:
11982 * sys/xvimage/xvimagesink.c:
11985 2005-10-13 Tim-Philipp Müller <tim at centricular dot net>
11987 * ext/vorbis/vorbisenc.c:
11988 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
11989 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
11990 (gst_tag_to_vorbis_comments):
11991 Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
11993 2005-10-13 Stefan Kost <ensonic@users.sf.net>
11995 * examples/stats/mp2ogg.c:
11996 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11999 2005-10-13 Michael Smith <msmith@fluendo.com>
12001 * ext/ogg/gstoggmux.c:
12002 Use magic glib macros to define constants as 64 bit, to ensure
12003 appropriate vararg passing.
12005 2005-10-13 Michael Smith <msmith@fluendo.com>
12007 * ext/ogg/gstoggmux.c:
12008 * gst/audioconvert/audioconvert.c: (float):
12009 Don't use LL suffix, as it's not portable, and neither of these
12010 uses required it anyway.
12012 2005-10-12 Stefan Kost <ensonic@users.sf.net>
12014 * examples/indexing/indexmpeg.c: (main):
12015 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
12016 (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
12017 (cdparanoia_convert), (cdparanoia_query):
12018 * ext/cdparanoia/gstcdparanoia.h:
12019 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
12020 (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
12021 (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
12022 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
12023 * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
12024 * gst/playback/gststreamselector.c: (gst_stream_selector_init):
12025 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
12026 (gst_multifdsink_render), (gst_multifdsink_start),
12027 (gst_multifdsink_stop):
12028 * gst/tcp/gstmultifdsink.h:
12029 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
12030 (gst_tcpclientsink_render), (gst_tcpclientsink_start),
12031 (gst_tcpclientsink_stop):
12032 * gst/tcp/gsttcpclientsink.h:
12033 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
12034 (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
12035 (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
12036 * gst/tcp/gsttcpclientsrc.h:
12037 * gst/tcp/gsttcpserversink.h:
12038 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
12039 (gst_tcpserversrc_create), (gst_tcpserversrc_start),
12040 (gst_tcpserversrc_stop):
12041 * gst/tcp/gsttcpserversrc.h:
12042 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
12043 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
12044 * sys/ximage/ximagesink.c: (gst_ximagesink_init):
12045 renamed GST_FLAGS macros to GST_OBJECT_FLAGS
12046 moved bitshift from macro to enum definition
12048 2005-10-12 Wim Taymans <wim@fluendo.com>
12050 * examples/seeking/Makefile.am:
12053 2005-10-12 Wim Taymans <wim@fluendo.com>
12055 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12056 (gst_ring_buffer_read), (gst_ring_buffer_clear):
12057 Don't assert on normal stuff.
12059 * gst/playback/gstplaybin.c: (do_playbin_seek):
12062 2005-10-12 Wim Taymans <wim@fluendo.com>
12064 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12065 * examples/seeking/Makefile.am:
12066 * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
12067 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
12068 (do_seek), (set_update_scale), (message_received), (main):
12069 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12070 (gst_ring_buffer_read), (gst_ring_buffer_clear):
12071 Update for _get_state() API change.
12073 2005-10-11 Wim Taymans <wim@fluendo.com>
12075 * gst-libs/gst/audio/gstbaseaudiosink.c:
12076 (gst_base_audio_sink_render):
12077 * gst-libs/gst/audio/gstbaseaudiosrc.c:
12078 (gst_base_audio_src_create):
12079 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12080 (gst_ring_buffer_read):
12082 Commit and read from ringbuffer in samples rather than bytes.
12084 2005-10-11 Wim Taymans <wim@fluendo.com>
12086 * gst-libs/gst/audio/gstbaseaudiosink.c:
12087 (gst_base_audio_sink_render):
12088 Respect segment rate and accum when scheduling samples.
12090 2005-10-11 Julien MOUTTE <julien@moutte.net>
12092 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
12093 (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
12094 EOS correctly, that needs more work.
12096 2005-10-11 Wim Taymans <wim@fluendo.com>
12098 * check/generic/states.c: (GST_START_TEST):
12099 remove old property.
12101 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
12102 (gst_ogg_demux_perform_seek):
12103 * ext/theora/theoradec.c: (theora_dec_sink_event):
12104 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
12105 (vorbis_handle_data_packet):
12106 * gst-libs/gst/rtp/gstbasertpdepayload.c:
12107 (gst_base_rtp_depayload_set_gst_timestamp):
12108 * gst/videorate/gstvideorate.c: (gst_videorate_event):
12109 Update for newsegment API change.
12111 2005-10-11 Michael Smith <msmith@fluendo.com>
12113 * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
12114 (do_playbin_seek), (gst_play_bin_send_event):
12115 Override send_event differently, so that we can takes bits of
12116 functionality from GstPipeline (special handling for seeks,
12117 including pausing/resuming, and resetting stream time) and still get
12118 the appropriate behaviour of only forwarding event to a single sink,
12119 rather than all of them.
12120 Unfortunately requires a lot of code duplication, but the
12121 alternatives are equally ugly in the end.
12123 2005-10-11 Thomas Vander Stichele <thomas at apestaart dot org>
12125 * check/elements/audioconvert.c: (setup_audioconvert),
12126 (cleanup_audioconvert), (get_int_caps), (verify_convert),
12127 (GST_START_TEST), (audioconvert_suite):
12128 clean up tests a little, fix some leaks.
12130 2005-10-10 Wim Taymans <wim@fluendo.com>
12132 * ext/alsa/gstalsasink.c:
12133 Also allow unsigned int.
12135 * gst-libs/gst/audio/gstbaseaudiosrc.c:
12136 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
12139 2005-10-10 Wim Taymans <wim@fluendo.com>
12141 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12142 Small update, use API as stated in design docs.
12144 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
12145 (update_scale), (do_seek), (seek_cb), (set_update_scale),
12146 (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
12147 (message_received), (main):
12148 Updated seek example for GOption. Some usability improvements.
12150 2005-10-10 Wim Taymans <wim@fluendo.com>
12152 * gst/audioconvert/audioconvert.h:
12153 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
12154 (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
12155 Alloc temp storage somewhere else where we can do it more
12158 2005-10-10 Wim Taymans <wim@fluendo.com>
12160 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
12161 (gst_tcpserversrc_start):
12162 Don't block in accept while doing the state change, move
12163 to poll and make cancellable.
12165 2005-10-09 Philippe Khalaf <burger@speedy.org>
12167 * gst-libs/gst/rtp/rtpbasedepayload.c:
12168 Set timestamp and add queue delay to timestamp
12169 * gst-libs/gst/rtp/rtpbuffer.h:
12170 Set correct payload type for h263
12172 2005-10-09 Stefan Kost <ensonic@users.sf.net>
12174 * gst/audiotestsrc/gstaudiotestsrc.c:
12175 (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
12176 (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
12177 (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
12178 (gst_audiotestsrc_create_triangle),
12179 (gst_audiotestsrc_create_silence),
12180 (gst_audiotestsrc_create_white_noise),
12181 (gst_audiotestsrc_init_pink_noise),
12182 (gst_audiotestsrc_generate_pink_noise_value),
12183 (gst_audiotestsrc_create_pink_noise),
12184 (gst_audiotestsrc_change_wave):
12185 * gst/audiotestsrc/gstaudiotestsrc.h:
12186 fixed typo, added pink noise
12188 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
12190 * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
12192 Add wavpack and spc typefind functions from 0.8 branch.
12194 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
12196 * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
12197 (ar_type_find), (msdos_type_find), (plugin_init):
12198 Add typefind functions for tar archives, ar archives,
12199 RAR archives, and msdos-executables (dlls, exe, etc.).
12200 Some of those would be wrongly identified as mpeg
12201 streams of some sort before (#315550).
12203 2005-10-09 Stefan Kost <ensonic@users.sf.net>
12206 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12207 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12208 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
12209 * gst/audiotestsrc/Makefile.am:
12210 * gst/audiotestsrc/gstaudiotestsrc.c:
12211 (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
12212 (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
12213 (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
12214 (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
12215 (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
12216 (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
12217 (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
12218 (gst_audiotestsrc_create_silence),
12219 (gst_audiotestsrc_create_white_noise),
12220 (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
12221 (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
12222 (gst_audiotestsrc_start), (plugin_init):
12223 * gst/audiotestsrc/gstaudiotestsrc.h:
12224 add new plugin and element
12225 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
12228 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
12230 * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
12231 (gst_adder_init), (gst_adder_request_new_pad),
12232 (gst_adder_change_state):
12233 Add query function to source pad, so adder reports the correct
12234 time/sample position when queried (#315457); fix state change
12235 function; use GST_DEBUG_FUNCPTR() for pad functions.
12237 2005-10-08 Thomas Vander Stichele <thomas at apestaart dot org>
12239 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
12240 Fix leaks in typefind registration
12241 Clean up the gratuitous commenting and whitespacing a little
12243 2005-10-08 Wim Taymans <wim@fluendo.com>
12245 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
12246 Only actually wait for the thread to be stopped if it's
12249 2005-10-08 Wim Taymans <wim@fluendo.com>
12251 * gst-libs/gst/audio/gstbaseaudiosink.c:
12252 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
12253 If we receive EOS we can start playback of what we had.
12255 2005-10-08 Wim Taymans <wim@fluendo.com>
12257 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
12258 (gst_multifdsink_finalize), (multifdsink_hash_remove),
12259 (gst_multifdsink_stop):
12260 Fix crasher when going to NULL multiple times.
12262 2005-10-06 Wim Taymans <wim@fluendo.com>
12264 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
12265 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
12266 * gst-libs/gst/audio/gstbaseaudiosrc.h:
12267 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
12268 patch from Edgard Lima <edgard.lima@indt.org.br>
12269 Fixed gstbaseaudiosrc adding ring buffer sync to it.
12271 2005-10-06 Wim Taymans <wim@fluendo.com>
12273 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
12274 Report the FLOW_RETURN as string in the error message.
12276 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
12277 Don't assert when clearing an unnegotiated buffer.
12279 2005-10-04 Michael Smith <msmith@fluendo.com>
12281 * gst/playback/gstplaybasebin.c: (group_destroy),
12282 (gen_preroll_element), (remove_groups), (setup_source):
12283 * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
12284 (setup_sinks), (gst_play_bin_send_event),
12285 (gst_play_bin_change_state):
12286 Set state to NULL before removing from bin. Fix refcounting.
12288 2005-10-04 Michael Smith <msmith@fluendo.com>
12290 * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
12291 Correct refcounting in send_event() function. Previously was wrong
12292 if the first sink was unable to handle the event.
12294 2005-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
12297 back to development
12299 === release 0.9.3 ===
12301 2005-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
12304 Releasing 0.9.3, "De Facto"
12306 2005-10-03 Andy Wingo <wingo@pobox.com>
12308 * gst/playback/gstdecodebin.c (try_to_link_1)
12309 (remove_element_chain): set element to NULL before removing it.
12311 2005-10-02 Johan Dahlin <johan@gnome.org>
12313 * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols):
12314 protect gst_gnomevfs_get_supported_uris by a mutex, to make it
12317 2005-10-02 Andy Wingo <wingo@pobox.com>
12319 * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear)
12320 (gst_ring_buffer_prepare_read):
12321 * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
12324 2005-09-29 Wim Taymans <wim@fluendo.com>
12326 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
12327 * ext/theora/theoradec.c: (theora_handle_data_packet):
12328 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
12329 Propagate error codes from alloc_buffer too.
12331 2005-09-29 Wim Taymans <wim@fluendo.com>
12333 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
12336 * gst/playback/Makefile.am:
12337 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
12338 (dump_element_stats), (main):
12339 Added example stream introspection code.
12341 2005-09-28 Stefan Kost <ensonic@users.sf.net>
12343 * gst/adder/gstadder.c: (gst_adder_collected):
12344 fix adder for float elements
12346 2005-09-28 Wim Taymans <wim@fluendo.com>
12348 * gst-libs/gst/audio/gstbaseaudiosink.c:
12349 (gst_base_audio_sink_class_init),
12350 (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
12351 * gst-libs/gst/audio/gstbaseaudiosrc.c:
12352 (gst_base_audio_src_class_init),
12353 (gst_base_audio_src_provide_clock):
12354 get_clock -> provide_clock
12356 2005-09-28 Andy Wingo <wingo@pobox.com>
12358 * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
12361 * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
12364 * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
12365 Actually add the pad template.
12366 (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
12368 * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
12371 * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
12372 from fdsrc. Get caps in create() instead of start() so it can be
12373 interrupted. Interruption somewhat untested.
12375 * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
12376 Proper EOS handling.
12378 2005-09-27 Andy Wingo <wingo@pobox.com>
12380 * gst/tcp/gsttcpclientsrc.c: Cleaned up.
12382 * gst/tcp/gsttcpserversrc.c: Cleaned up.
12384 * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
12386 * gst/tcp/gsttcp.h:
12387 * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
12388 out of tcpclientsrc.c. Cancellable.
12389 (gst_tcp_socket_read): Made private, cancellable, with better
12390 diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
12391 (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
12392 whole buffer, and better diagnostics.
12393 (gst_tcp_gdp_read_caps): Same.
12395 * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
12397 2005-09-26 Andy Wingo <wingo@pobox.com>
12399 * gst/sine/gstsinesrc.h:
12400 * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
12401 change the 'sync' property to 'is-live' and implement it halfway,
12402 update for controller api change.
12404 * gst/volume/gstvolume.c (volume_transform_ip): Update for
12405 controller api change.
12407 2005-09-24 Wim Taymans <wim@fluendo.com>
12409 * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
12410 * gst-libs/gst/audio/gstaudiosink.c:
12411 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
12412 (gst_audioringbuffer_stop):
12413 * gst-libs/gst/audio/gstbaseaudiosink.c:
12414 (gst_base_audio_sink_event), (gst_base_audio_sink_render),
12415 (gst_base_audio_sink_change_state):
12416 * gst-libs/gst/audio/gstbaseaudiosink.h:
12417 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
12418 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
12419 (gst_ring_buffer_commit), (gst_ring_buffer_read):
12420 * gst-libs/gst/audio/gstringbuffer.h:
12421 Fix sync again. Moved sample alignment to basesink.
12423 2005-09-23 Thomas Vander Stichele <thomas at apestaart dot org>
12425 * docs/plugins/Makefile.am:
12426 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12427 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12428 * gst/volume/gstvolume.c:
12430 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
12431 * gst-libs/gst/audio/audio.h:
12432 add conversion macros for frames <-> clocktime
12434 2005-09-23 David Schleef <ds@schleef.org>
12436 * gst/audioresample/Makefile.am:
12437 * gst/audioresample/debug.h:
12438 * gst/audioresample/gstaudioresample.c:
12439 * gst/audioresample/resample.c: Convert to using gst debugging
12441 2005-09-22 Wim Taymans <wim@fluendo.com>
12443 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
12444 (gst_play_bin_send_event):
12445 Only seek on one sink, the first one that succeeds.
12447 2005-09-22 Michael Smith <msmith@fluendo.com>
12449 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
12450 (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
12451 Don't flush encoder state unless we have an initialised encoder.
12452 Clear out encoder state on PAUSED_TO_READY.
12454 2005-09-22 Wim Taymans <wim@fluendo.com>
12456 * gst-libs/gst/rtp/gstbasertppayload.c:
12457 (gst_basertppayload_class_init), (gst_basertppayload_init),
12458 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12459 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12460 (gst_basertppayload_is_filled), (gst_basertppayload_push),
12461 (gst_basertppayload_set_property),
12462 (gst_basertppayload_get_property),
12463 (gst_basertppayload_change_state):
12464 * gst-libs/gst/rtp/gstbasertppayload.h:
12465 Added max-ptime to control amount of data in the rtp packets.
12467 2005-09-21 Andy Wingo <wingo@pobox.com>
12469 * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
12472 * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
12473 can be called multiple times, dogs.
12475 2005-09-21 Wim Taymans <wim@fluendo.com>
12477 * gst-libs/gst/rtp/gstbasertppayload.c:
12478 (gst_basertppayload_class_init), (gst_basertppayload_init),
12479 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12480 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12481 (gst_basertppayload_push), (gst_basertppayload_get_property),
12482 (gst_basertppayload_change_state):
12485 2005-09-21 Stefan Kost <ensonic@users.sf.net>
12487 * docs/libs/compiling.sgml:
12490 2005-09-20 Wim Taymans <wim@fluendo.com>
12492 * gst-libs/gst/rtp/gstbasertppayload.c:
12493 (gst_basertppayload_class_init), (gst_basertppayload_init),
12494 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12495 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12496 (gst_basertppayload_push), (gst_basertppayload_set_property),
12497 (gst_basertppayload_get_property),
12498 (gst_basertppayload_change_state):
12499 * gst-libs/gst/rtp/gstbasertppayload.h:
12500 Added property to configure sequence number offsets.
12502 2005-09-20 Wim Taymans <wim@fluendo.com>
12504 * gst-libs/gst/rtp/gstbasertppayload.c:
12505 (gst_basertppayload_class_init), (gst_basertppayload_init),
12506 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12507 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12508 (gst_basertppayload_push), (gst_basertppayload_set_property),
12509 (gst_basertppayload_get_property),
12510 (gst_basertppayload_change_state):
12511 * gst-libs/gst/rtp/gstbasertppayload.h:
12512 Make timestamp offset configurable.
12514 2005-09-20 Thomas Vander Stichele <thomas at apestaart dot org>
12516 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12517 fix wrong pop/unref
12519 2005-09-19 Torsten Schoenfeld <kaffeetisch at gmx dot net>
12521 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
12523 * gst-libs/gst/interfaces/propertyprobe.c:
12524 (gst_property_probe_probe_property_name),
12525 (gst_property_probe_needs_probe_name),
12526 (gst_property_probe_get_values_name),
12527 (gst_property_probe_probe_and_get_values_name):
12528 Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
12529 G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
12531 2005-09-19 Thomas Vander Stichele <thomas at apestaart dot org>
12533 * check/Makefile.am:
12534 have some tests be disabled for valgrinding
12535 * check/elements/vorbisdec.c: (cleanup_vorbisdec),
12537 * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
12538 Fix A Leak. Chain To Parent Finalize.
12540 2005-09-19 Wim Taymans <wim@fluendo.com>
12542 * examples/seeking/seek.c: (make_wav_pipeline), (main):
12543 Fixed wav pipeline.
12545 2005-09-19 Wim Taymans <wim@fluendo.com>
12547 * gst-libs/gst/rtp/gstbasertppayload.c:
12548 (gst_basertppayload_class_init), (gst_basertppayload_init),
12549 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12550 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12551 (gst_basertppayload_push), (gst_basertppayload_get_property),
12552 (gst_basertppayload_change_state):
12553 Posting ERROR and WARNING messages is good.
12555 2005-09-19 Wim Taymans <wim@fluendo.com>
12557 * gst-libs/gst/rtp/gstbasertpdepayload.c:
12558 (gst_base_rtp_depayload_add_to_queue),
12559 (gst_base_rtp_depayload_push),
12560 (gst_base_rtp_depayload_set_gst_timestamp),
12561 (gst_base_rtp_depayload_queue_release):
12562 This one was not supposed to go in.
12564 2005-09-19 Wim Taymans <wim@fluendo.com>
12566 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12569 * gst-libs/gst/rtp/gstbasertpdepayload.c:
12570 (gst_base_rtp_depayload_chain),
12571 (gst_base_rtp_depayload_add_to_queue),
12572 (gst_base_rtp_depayload_push),
12573 (gst_base_rtp_depayload_set_gst_timestamp),
12574 (gst_base_rtp_depayload_queue_release):
12577 * gst-libs/gst/rtp/gstbasertppayload.c:
12578 (gst_basertppayload_class_init), (gst_basertppayload_init),
12579 (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
12580 (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12581 (gst_basertppayload_get_property),
12582 (gst_basertppayload_change_state):
12583 Added debugging category.
12585 2005-09-18 David Schleef <ds@schleef.org>
12587 * gst/playback/gstdecodebin.c: free plugin list correctly
12588 * gst/playback/gstplaybin.c: emit warning if autovideosink
12589 and autoaudiosink can't be found (instead of segfaulting)
12591 2005-09-17 Thomas Vander Stichele <thomas at apestaart dot org>
12593 * check/elements/audioconvert.c: (GST_START_TEST):
12594 try out 24 bit conversion
12596 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12598 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
12599 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
12600 (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
12601 * ext/vorbis/vorbisenc.h:
12602 Fix EOS handling. Still needs a fix in the ogg muxer to
12603 mark the last page as eos.
12605 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12607 * common/gtk-doc-plugins.mak:
12608 * docs/plugins/Makefile.am:
12609 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12610 * gst/ffmpegcolorspace/Makefile.am:
12611 * gst/ffmpegcolorspace/avcodec.h:
12612 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12613 * gst/tcp/gstmultifdsink.c:
12614 fix up ffmpegcolorspace docs; extract header
12616 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12618 * common/gtk-doc-plugins.mak:
12619 * docs/plugins/Makefile.am:
12620 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12621 * ext/theora/Makefile.am:
12622 * ext/theora/gsttheoraenc.h:
12623 * ext/theora/theoraenc.c:
12624 * ext/vorbis/vorbisenc.c:
12625 pick up signals and args for vorbis; add some docs for vorbis
12627 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12629 * common/gstdoc-scangobj:
12630 * common/gtk-doc-plugins.mak:
12631 * docs/libs/Makefile.am:
12632 * docs/plugins/gst-plugins-base-plugins.args:
12633 * docs/plugins/gst-plugins-base-plugins.hierarchy:
12634 * docs/plugins/gst-plugins-base-plugins.interfaces:
12635 * docs/plugins/gst-plugins-base-plugins.prerequisites:
12636 * docs/plugins/gst-plugins-base-plugins.signals:
12637 only scanobj stuff from our source module. Not sure yet
12638 if that's correct, given the hierarchy stuff :)
12640 2005-09-15 Wim Taymans <wim@fluendo.com>
12642 * gst/audioconvert/gstaudioconvert.c:
12643 And enable 24 bits mode as well..
12645 2005-09-15 Wim Taymans <wim@fluendo.com>
12647 * gst-libs/gst/rtp/Makefile.am:
12648 * gst-libs/gst/rtp/gstbasertppayload.c:
12649 (gst_basertppayload_get_type), (gst_basertppayload_base_init),
12650 (gst_basertppayload_class_init), (gst_basertppayload_init),
12651 (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
12652 (gst_basertppayload_chain), (gst_basertppayload_set_options),
12653 (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12654 (gst_basertppayload_set_property),
12655 (gst_basertppayload_get_property),
12656 (gst_basertppayload_change_state):
12657 * gst-libs/gst/rtp/gstbasertppayload.h:
12658 Added rtp payloader base class.
12660 2005-09-15 Andy Wingo <wingo@pobox.com>
12662 * configure.ac (plugindir): Remove the EOL matcher from the
12663 regexp, as it causes me problems. Libtool? Make? Who knows?
12665 2005-09-14 David Schleef <ds@schleef.org>
12667 * check/generic/states.c:
12668 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
12669 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
12670 Fixes for changes in registry API.
12672 * configure.ac: Only export gst_plugins_desc. Add -no-undefined
12673 to GST_PLUGIN_LDFLAGS.
12674 * ext/libvisual/visual.c: Make the library shut up.
12675 * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
12676 * gst-libs/gst/audio/gstaudiofilter.c: same
12678 2005-09-14 Thomas Vander Stichele <thomas at apestaart dot org>
12680 * docs/plugins/Makefile.am:
12681 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12682 * docs/plugins/inspect/plugin-libvisual.xml:
12683 * docs/plugins/tmpl/element-tcpserversink.sgml:
12684 * ext/theora/theoraenc.c:
12685 add libvisual plugin and theoraenc element to docs
12687 2005-09-14 Thomas Vander Stichele <thomas at apestaart dot org>
12689 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12690 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12691 * ext/theora/theoraenc.c:
12694 2005-09-13 Tim-Philipp Müller <tim at centricular dot net>
12696 * gst/audioconvert/Makefile.am:
12697 Audioconvert derives from GstBaseTransform and should
12698 link to the library with our base elements to avoid
12699 unresolved symbols. Makes things work with MinGW (#316160)
12701 * gst/playback/test4.c: (main):
12702 Fix MinGW build problem and use g_usleep() instead of
12705 2005-09-12 Wim Taymans <wim@fluendo.com>
12707 * gst/audioconvert/audioconvert.c: (float),
12708 (audio_convert_prepare_context), (audio_convert_convert):
12709 * gst/audioconvert/audioconvert.h:
12710 Cleanups, speedups, simplifications, added back support
12713 2005-09-11 Thomas Vander Stichele <thomas at apestaart dot org>
12715 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12716 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12717 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12718 * docs/plugins/tmpl/element-tcpserversink.sgml:
12719 * gst/ffmpegcolorspace/gstffmpeg.c:
12720 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12721 * gst/videotestsrc/gstvideotestsrc.c:
12722 * gst/volume/gstvolume.c:
12723 add more elements to the docs
12725 2005-09-09 Jan Schmidt <thaytan@mad.scientist.com>
12727 * check/Makefile.am:
12728 * check/pipelines/simple_launch_lines.c: (setup_pipeline),
12729 (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
12730 Add extra tests for basetransform based components.
12731 Comment out the test_element_negotiation test until we decide
12732 if it's testing correct behaviour.
12733 * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
12734 (gst_visual_chain), (gst_visual_change_state):
12735 Slightly more correct but still bogus timestamping.
12736 Fix state change function.
12737 * gst/audioconvert/gstaudioconvert.c:
12738 (gst_audio_convert_class_init):
12739 * gst/audioresample/gstaudioresample.c:
12740 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12741 (gst_ffmpegcsp_class_init):
12742 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
12743 (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
12744 (gst_videoscale_prepare_image):
12745 * gst/volume/gstvolume.c: (gst_volume_class_init),
12746 (volume_transform_ip):
12747 Basetransform updates. Enable passthrough modes.
12748 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12749 (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
12750 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
12751 Negotiation fix that allows the window to return to the original
12752 size and renegotiate passthrough upstream. Extra debug output.
12754 2005-09-09 Thomas Vander Stichele <thomas at apestaart dot org>
12756 * gst/sine/gstsinesrc.c:
12757 * gst/volume/gstvolume.c:
12758 fix up header include
12760 2005-09-09 Stefan Kost <ensonic@users.sf.net>
12762 * gst-libs/gst/audio/gstbaseaudiosink.c:
12763 (gst_base_audio_sink_render):
12764 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
12765 * gst/volume/gstvolume.c: (gst_volume_class_init),
12766 (volume_transform):
12767 fixing lost sync, some more debugging
12769 2005-09-08 Jan Schmidt <thaytan@mad.scientist.com>
12771 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12772 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
12773 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12774 (gst_xvimagesink_check_xshm_calls):
12775 Fix compilation when XShm is not available.
12777 2005-09-07 Jan Schmidt <thaytan@mad.scientist.com>
12779 * ext/libvisual/visual.c: (gst_visual_dispose),
12780 (gst_visual_getcaps), (gst_visual_src_setcaps),
12781 (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
12782 (gst_visual_change_state):
12783 Finish fixing up libvisual plugin so that it runs.
12785 2005-09-07 Stefan Kost <ensonic@users.sf.net>
12787 * ext/vorbis/vorbisenc.c:
12788 * gst-libs/gst/tag/gstvorbistag.c:
12789 gsttaginterface.h -> gsttagsetter.h
12791 2005-09-07 Stefan Kost <ensonic@users.sf.net>
12793 * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
12794 added another test that failes for me (test is not active by default)
12796 2005-09-07 Zaheer Abbas Merali <zaheerabbas at merali dot org>
12799 v4l2 is no longer in gst-plugins-base
12801 2005-09-07 Jan Schmidt <thaytan@mad.scientist.com>
12804 In the output at the end, don't show the first plugin on the same
12805 line as "Core plug-ins, always built:".
12806 Indent the output as for other plugin categories
12807 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
12808 #define that can be used to not use peer buffer_alloc functions for
12810 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12811 (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
12812 (gst_ximagesink_show_frame):
12813 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12814 (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
12815 (gst_xvimagesink_show_frame):
12816 Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
12817 fails gracefully instead of XError aborting or deadlocking.
12819 2005-09-07 Stefan Kost <ensonic@users.sf.net>
12821 * ext/libvisual/Makefile.am:
12822 link against gst-base-libs
12824 2005-09-06 David Schleef <ds@schleef.org>
12826 * configure.ac: Enable libvisual plugin.
12827 * ext/libvisual/Makefile.am:
12828 * ext/libvisual/visual.c: Fixes to make it compile.
12830 === release 0.9.2 ===
12832 2005-09-06 Thomas Vander Stichele <thomas at apestaart dot org>
12837 * docs/random/ChangeLog-0.8:
12838 releasing 0.9.2, "Spoon"
12840 2005-09-05 Michael Smith <msmith@fluendo.com>
12842 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
12843 libvorbis accepts quality as low as -0.1, not just 0.0. So accept
12844 that in the vorbisenc element.
12846 2005-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
12848 * common/gtk-doc-plugins.mak:
12849 * docs/plugins/Makefile.am:
12851 * gst/audioresample/resample.c:
12852 fix wrong docstring
12854 2005-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
12856 * common/gst-xmlinspect.py:
12857 * common/gtk-doc-plugins.mak:
12858 only inspect plugins for this given package
12859 require gst-python 0.9
12861 2005-09-03 Thomas Vander Stichele <thomas at apestaart dot org>
12865 * common/gst-xmlinspect.py:
12867 * docs/Makefile.am:
12868 * docs/plugins/inspect/plugin-alsa.xml:
12869 * docs/plugins/inspect/plugin-audioresample.xml:
12870 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12871 * docs/plugins/inspect/plugin-ogg.xml:
12872 * docs/plugins/tmpl/element-gnomevfssink.sgml:
12873 * docs/plugins/tmpl/element-multifdsink.sgml:
12874 * docs/plugins/tmpl/element-tcpserversink.sgml:
12875 * docs/plugins/tmpl/element-vorbisenc.sgml:
12876 * gst-plugins-base.spec.in:
12877 various doc-related updates
12879 2005-08-31 Wim Taymans <wim@fluendo.com>
12881 * gst-libs/gst/audio/gstbaseaudiosink.c:
12882 (gst_base_audio_sink_render):
12883 Resync if the buffer timestamps drift more than a 10th
12886 2005-08-31 Tim-Philipp Müller <tim at centricular dot net>
12888 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
12889 (gst_v4lsrc_get_property):
12890 The 'timestamp-offset' property is registered as an int64, so
12891 let's use g_value_{set|get}_int64() in our setter and getter
12892 functions (makes it work and fixes warnings with gst-inspect).
12894 2005-08-30 Wim Taymans <wim@fluendo.com>
12896 * check/elements/audioconvert.c: (setup_audioconvert):
12897 * check/elements/audioresample.c: (setup_audioresample):
12898 * check/elements/volume.c: (setup_volume):
12901 2005-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
12903 * common/gtk-doc-plugins.mak:
12904 * common/plugins.xsl:
12905 * docs/plugins/Makefile.am:
12906 make module a param
12908 2005-08-30 Stefan Kost <ensonic@users.sf.net>
12910 * examples/seeking/seek.c: (make_mp3_pipeline),
12911 (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
12912 (play_cb), (pause_cb), (stop_cb):
12915 2005-08-30 Stefan Kost <ensonic@users.sf.net>
12917 * gst/volume/gstvolume.c: (gst_volume_class_init),
12918 (volume_transform):
12919 do not update controlled params, if buffer has no timestamp
12921 2005-08-29 Stefan Kost <ensonic@users.sf.net>
12924 * gst/sine/Makefile.am:
12925 * gst/volume/Makefile.am:
12926 controllerized elements also need to link against controller-libs ;)
12928 2005-08-29 Stefan Kost <ensonic@users.sf.net>
12930 * docs/libs/tmpl/gstcolorbalance.sgml:
12931 * docs/libs/tmpl/gstgconf.sgml:
12932 * docs/libs/tmpl/gstmixer.sgml:
12933 * docs/libs/tmpl/gstringbuffer.sgml:
12934 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
12935 (gst_sinesrc_create):
12936 * gst/volume/gstvolume.c: (gst_volume_class_init),
12937 (volume_transform):
12938 controllerized two audio plugins
12940 2005-08-29 Andy Wingo <wingo@pobox.com>
12942 * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push)
12943 (vorbis_handle_data_packet): Fix some int overflow errors.
12945 * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
12947 (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
12949 (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
12950 if it's valid. Fixed streaming-mode playback.
12952 * check/elements/volume.c (cleanup_volume): Fix for running
12955 * check/elements/audioconvert.c: Convert from native endian, not
12958 2005-08-29 Michael Smith <msmith@fluendo.com>
12960 * ext/ogg/Makefile.am:
12961 * ext/ogg/gstogg.c: (plugin_init):
12962 * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
12963 (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
12964 (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
12965 (gst_ogg_parse_class_init), (gst_ogg_parse_init),
12966 (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
12967 (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
12968 (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
12969 (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
12970 Add an ogg parser element.
12972 2005-08-28 Andy Wingo <wingo@pobox.com>
12974 * Updates for two-arg init from GST_BOILERPLATE_FULL.
12976 2005-08-26 Wim Taymans <wim@fluendo.com>
12978 * gst/audioconvert/audioconvert.c: (if), (float),
12979 (audio_convert_get_func_index), (check_default),
12980 (audio_convert_clean_fmt), (audio_convert_prepare_context),
12981 (audio_convert_clean_context), (audio_convert_get_sizes),
12982 (audio_convert_convert):
12985 2005-08-26 Wim Taymans <wim@fluendo.com>
12987 * gst/audioconvert/audioconvert.c: (if), (float),
12988 (audio_convert_get_func_index), (check_default),
12989 (audio_convert_clean_fmt), (audio_convert_prepare_context),
12990 (audio_convert_clean_context), (audio_convert_get_sizes),
12991 (audio_convert_convert):
12992 More elegant and working temp buffer selection algo.
12994 2005-08-26 Wim Taymans <wim@fluendo.com>
12996 * gst/audioconvert/audioconvert.c: (if), (float),
12997 (audio_convert_get_func_index), (check_default),
12998 (audio_convert_clean_fmt), (audio_convert_prepare_context),
12999 (audio_convert_clean_context), (audio_convert_get_sizes),
13000 (get_temp_buffer), (audio_convert_convert):
13001 Use realloc else we lose our original data.
13003 2005-08-26 Thomas Vander Stichele <thomas at apestaart dot org>
13005 * gst/audioresample/gstaudioresample.c:
13006 use base class' newsegment to properly timestamp
13008 2005-08-26 Wim Taymans <wim@fluendo.com>
13010 * gst/audioconvert/audioconvert.c: (if), (float),
13011 (audio_convert_get_func_index), (check_default),
13012 (audio_convert_clean_fmt), (audio_convert_prepare_context),
13013 (audio_convert_clean_context), (audio_convert_get_sizes),
13014 (get_temp_buffer), (audio_convert_convert):
13015 * gst/audioconvert/gstaudioconvert.c:
13016 (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
13017 (gst_audio_convert_transform_caps),
13018 (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
13019 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
13020 Oops, allocate enough space to perform the channel mix.
13022 2005-08-26 Wim Taymans <wim@fluendo.com>
13024 * gst/audioconvert/Makefile.am:
13025 * gst/audioconvert/audioconvert.c: (if), (float),
13026 (audio_convert_get_func_index), (check_default),
13027 (audio_convert_clean_fmt), (audio_convert_prepare_context),
13028 (audio_convert_clean_context), (audio_convert_get_sizes),
13029 (get_temp_buffer), (audio_convert_convert):
13030 * gst/audioconvert/audioconvert.h:
13031 * gst/audioconvert/gstaudioconvert.c:
13032 (gst_audio_convert_class_init), (gst_audio_convert_init),
13033 (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
13034 (gst_audio_convert_get_unit_size),
13035 (gst_audio_convert_transform_caps),
13036 (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
13037 (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
13038 * gst/audioconvert/gstaudioconvert.h:
13039 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
13040 (gst_channel_mix_fill_identical),
13041 (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
13042 (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
13043 (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
13044 (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
13045 (gst_channel_mix_mix):
13046 * gst/audioconvert/gstchannelmix.h:
13047 Cleanups, librarify a bit, optimize, better negotiation and more.
13049 2005-08-26 Jan Schmidt <thaytan@mad.scientist.com>
13051 * ext/ogg/gstoggdemux.c: (ogg_find_peek):
13052 Another from MikeS:
13053 During typefinding, don't support negative offsets
13054 (offsets from the end of the stream) in our typefind->peek() function
13055 - nothing embedded in ogg ever needs them. However, we need to recognise
13056 those requests and reject them, otherwise we return invalid pointers.
13058 2005-08-26 Jan Schmidt <thaytan@mad.scientist.com>
13060 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
13061 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
13062 (vorbisdec_finalize), (vorbis_handle_type_packet):
13063 Big shout-out to MikeS for fixing this giant memory leak.
13066 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13068 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
13069 (audio_convert_get_unit_size):
13072 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13074 * check/Makefile.am:
13075 * check/elements/audioconvert.c: (setup_audioconvert),
13076 (cleanup_audioconvert), (get_int_caps), (verify_convert),
13077 (GST_START_TEST), (audioconvert_suite), (main):
13078 add a test for audioconvert
13079 * gst/audioresample/gstaudioresample.c:
13080 * gst/audioresample/gstaudioresample.h:
13081 set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
13082 note that for buffers of 1/3 sec this means DURATION(c) is
13083 one nanosecond more than for a and b
13085 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13087 * check/Makefile.am:
13088 * check/elements/audioresample.c: (setup_audioresample),
13089 (cleanup_audioresample), (fail_unless_perfect_stream),
13090 (test_perfect_stream_instance), (GST_START_TEST),
13091 add a check for audioresample
13092 (audioresample_suite), (main):
13093 * check/elements/volume.c: (GST_START_TEST):
13094 remove unused method
13095 * gst/audioresample/gstaudioresample.c:
13096 set correct buffer parameters since we're changing them
13097 * gst/audioresample/resample_ref.c: (resample_scale_ref):
13100 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13102 * gst/audioresample/debug.c:
13103 * gst/audioresample/gstaudioresample.c:
13104 add room for extra overlap samples when asked to transform size
13105 protect against possible mem corruption and check for discrepancies
13106 between written size and outbuffer's size so we can warn for
13108 * gst/audioresample/resample.c: (resample_init),
13109 (resample_get_output_size_for_input), (resample_get_output_size),
13110 (resample_set_n_channels), (resample_set_format):
13111 set debug level based on RESAMPLE_DEBUG env var
13112 make sure that get_output_size* returns a whole number of
13114 set sample_size each time either channel or format is set
13115 * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
13116 * gst/audioresample/resample_functable.c:
13117 (resample_scale_functable):
13118 * gst/audioresample/resample_ref.c: (resample_scale_ref):
13119 remove r->sample_size, it's done in resample.c now
13120 add some debugging to the ref implementation
13121 make sure we only give back bytes that are wholes of the sample
13124 2005-08-25 Jan Schmidt <thaytan@mad.scientist.com>
13125 * gst/playback/gstplaybasebin.c: (fill_buffer):
13126 Revert unpopular change for GST_MESSAGE_SRC to GObject.
13128 2005-08-25 Stefan Kost <ensonic@users.sf.net>
13130 * gst/volume/gstvolume.c:
13131 made set_caps function static
13133 2005-08-24 Wim Taymans <wim@fluendo.com>
13135 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
13136 (gst_vorbisenc_change_state):
13137 Stop leaking taglists.
13139 2005-08-24 Wim Taymans <wim@fluendo.com>
13141 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
13142 (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
13143 (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
13144 (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
13145 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13146 (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
13147 Parse seeking events better.
13149 Generate correct newsegment events, fixes seeking in live oggs.
13151 * ext/theora/theoradec.c: (theora_dec_src_query),
13152 (theora_dec_src_event), (theora_dec_src_getcaps),
13153 (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
13154 Use newsegment values to report correct play time.
13156 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
13157 (vorbis_dec_src_event), (vorbis_dec_sink_event):
13158 * ext/vorbis/vorbisdec.h:
13159 Parse and use newsegment values to report correct play time.
13161 * gst-libs/gst/audio/gstbaseaudiosink.c:
13162 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
13163 Clear ringbuffer on flush.
13164 Use newsegment values to calculate playback time.
13166 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
13167 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
13168 Basesink does newsegment calculations for us now.
13170 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13172 * check/Makefile.am:
13174 add core's plugins to the mix so that playbin works
13175 * check/generic/states.c: (GST_START_TEST):
13176 set a 0 timeout on pipelines, so they don't force the next
13178 * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
13179 (gst_play_base_bin_change_state):
13180 remove the crappy error handling and do GST error handling
13182 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13184 * check/Makefile.am:
13185 * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
13186 add same test as to core, it bitches out on playbin atm.
13188 2005-08-24 Wim Taymans <wim@fluendo.com>
13193 2005-08-24 Wim Taymans <wim@fluendo.com>
13195 * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
13196 (gst_videoscale_prepare_size), (parse_caps),
13197 (gst_videoscale_set_caps), (gst_videoscale_get_size),
13198 (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
13199 (gst_videoscale_transform):
13200 * gst/videoscale/gstvideoscale.h:
13201 Refactor, make use of BaseTranform really well.
13203 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13206 compile audioresample
13207 * gst/audioresample/Makefile.am:
13208 * gst/audioresample/buffer.c:
13209 * gst/audioresample/functable.c:
13210 * gst/audioresample/gstaudioresample.c:
13211 * gst/audioresample/gstaudioresample.h:
13212 * gst/audioresample/resample.c:
13213 (resample_get_output_size_for_input):
13214 * gst/audioresample/resample.h:
13215 * gst/audioresample/resample_chunk.c:
13216 * gst/audioresample/resample_functable.c:
13217 * gst/audioresample/resample_ref.c:
13218 port to use basetransform; doesn't work in all cases yet
13220 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13222 * gst/audioconvert/gstaudioconvert.c:
13223 (gst_audio_convert_class_init), (gst_audio_convert_init),
13224 (audio_convert_get_unit_size), (audio_convert_transform_caps),
13225 (audio_convert_fixate_caps), (audio_convert_set_caps),
13226 (audio_convert_transform),
13227 (gst_audio_convert_buffer_to_default_format),
13228 (gst_audio_convert_buffer_from_default_format),
13229 (gst_audio_convert_channels):
13230 * gst/audioconvert/gstchannelmix.c:
13231 * gst/audioconvert/gstchannelmix.h:
13232 port to basetransform
13233 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13234 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
13235 (gst_ffmpegcsp_get_unit_size):
13236 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
13237 (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
13238 fix for basetransform changes
13240 2005-08-24 Jan Schmidt <thaytan@mad.scientist.com>
13242 * check/Makefile.am:
13243 Add CHECK_CFLAGS and LDFLAGS
13245 * gst/playback/gstplaybasebin.c: (fill_buffer):
13246 GST_MESSAGE_SRC became a GObject
13248 2005-08-24 Wim Taymans <wim@fluendo.com>
13250 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
13251 (gst_ring_buffer_clear_all):
13252 * gst-libs/gst/audio/gstringbuffer.h:
13253 Added function to clear the ringbuffer.
13255 2005-08-24 Andy Wingo <wingo@pobox.com>
13257 * sys/v4l/gstv4lelement.c (gst_v4lelement_start)
13258 (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
13259 of _open and _close.
13261 * sys/v4l/gstv4lxoverlay.h:
13262 * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
13263 an Xv connection here, instead of all the time. Make Xv only be
13264 loaded if you axe for it. Kindof a workaround for buggy behaviour
13265 of Xv when using remote xservers (XvQueryExtension would block).
13266 (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
13267 replace the _open and _close public API. Only start the xv
13268 connection if necessary.
13269 (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
13271 2005-08-23 David Schleef <ds@schleef.org>
13273 * gst/audioresample/Makefile.am: Leet audioresampling code
13274 * gst/audioresample/buffer.c:
13275 * gst/audioresample/buffer.h:
13276 * gst/audioresample/debug.c:
13277 * gst/audioresample/debug.h:
13278 * gst/audioresample/functable.c:
13279 * gst/audioresample/functable.h:
13280 * gst/audioresample/gstaudioresample.c:
13281 * gst/audioresample/gstaudioresample.h:
13282 * gst/audioresample/resample.c:
13283 * gst/audioresample/resample.h:
13284 * gst/audioresample/resample_chunk.c:
13285 * gst/audioresample/resample_functable.c:
13286 * gst/audioresample/resample_ref.c:
13288 2005-08-23 Wim Taymans <wim@fluendo.com>
13290 * examples/seeking/seek.c: (make_vorbis_pipeline),
13291 (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
13292 Small seek updates.
13294 2005-08-23 Andy Wingo <wingo@pobox.com>
13296 * gst-libs/gst/audio/gstbaseaudiosrc.c
13297 (gst_base_audio_src_fixate): Only fixate endianness if it is
13298 present in the caps.
13300 2005-08-22 Andy Wingo <wingo@pobox.com>
13302 * ext/alsa/gstalsasink.c (gst_alsasink_get_property):
13303 * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
13304 device-name property.
13306 * gst-libs/gst/audio/gstaudiosrc.h:
13307 * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
13308 close_device in the ring buffer, like gstaudiosink.
13310 * ext/alsa/gstalsamixer.h:
13311 * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
13312 macro to implement the interface without much code. Cleanups.
13314 * ext/alsa/gstalsasrc.h:
13315 * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
13318 * ext/alsa/Makefile.am: Add new files.
13319 * ext/alsa/gstalsamixerelement.c:
13320 * ext/alsa/gstalsamixerelement.c: Split element code out from
13321 mixer code so that alsasrc can be a mixer too.
13323 2005-08-21 Thomas Vander Stichele <thomas at apestaart dot org>
13325 * check/elements/volume.c: (setup_volume), (cleanup_volume),
13327 * check/elements/vorbisdec.c: (setup_vorbisdec),
13328 (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
13329 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
13330 (vorbis_handle_identification_packet),
13331 (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
13332 (vorbis_handle_header_packet), (vorbis_dec_push),
13333 (vorbis_dec_chain):
13334 use the setup/teardown methods to save code. save code is good.
13336 2005-08-20 Thomas Vander Stichele <thomas at apestaart dot org>
13338 * check/Makefile.am:
13339 add ext dir for plugins
13340 add vorbisdec test conditionally
13341 * check/elements/volume.c: (setup_volume), (cleanup_volume),
13342 (GST_START_TEST), (volume_suite):
13343 add a test with wrong caps
13344 * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
13345 (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
13346 add a vorbisdec test
13347 * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
13348 (gst_ogg_demux_chain), (gst_ogg_demux_loop):
13349 clean up debug output
13350 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
13351 yay, fix a segfault/security issue in vorbisdec
13352 gst-launch fakesrc ! vorbisdec wasn't happy
13353 * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
13354 (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
13355 (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
13356 (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
13357 (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
13358 (gst_vorbisenc_set_metadata), (get_constraints_string),
13359 (update_start_message), (gst_vorbisenc_setup),
13360 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
13361 (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
13362 (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
13363 (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
13364 * ext/vorbis/vorbisenc.h:
13366 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13367 (gst_ffmpegcsp_transform):
13368 have the kow come home
13369 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
13371 * gst/volume/gstvolume.c: (volume_set_caps):
13374 2005-08-20 Thomas Vander Stichele <thomas at apestaart dot org>
13377 * check/.cvsignore:
13378 * check/Makefile.am:
13379 * check/elements/.cvsignore:
13380 * check/elements/volume.c: (chain_func), (event_func),
13381 (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
13384 add unit test structure for gst-plugins-base
13385 add a test for volume
13386 * gst/volume/gstvolume.c: (gst_volume_list_tracks),
13387 (gst_volume_set_volume), (gst_volume_get_volume),
13388 (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
13389 (volume_funcfind), (volume_process_float), (volume_process_int16),
13390 (volume_set_caps), (volume_transform), (volume_update_mute),
13391 (volume_update_volume), (volume_set_property),
13392 (volume_get_property):
13393 document a little; use basetransform vmethod _set_caps
13395 2005-08-19 Andy Wingo <wingo@pobox.com>
13397 * ext/alsa/gstalsamixertrack.h:
13398 * ext/alsa/gstalsamixertrack.c:
13399 * ext/alsa/gstalsamixeroptions.h:
13400 * ext/alsa/gstalsamixeroptions.c:
13401 * ext/alsa/gstalsamixer.h:
13402 * ext/alsa/gstalsamixer.c: Port to 0.9.
13404 * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
13405 Remove gstalsa.c and alsaclock. No more cruft here.
13407 2005-08-18 Wim Taymans <wim@fluendo.com>
13409 * gst-libs/gst/rtp/gstbasertpdepayload.c:
13410 (gst_base_rtp_depayload_chain),
13411 (gst_base_rtp_depayload_add_to_queue),
13412 (gst_base_rtp_depayload_push),
13413 (gst_base_rtp_depayload_queue_release):
13414 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13415 Fix for RTPBuffer changes.
13417 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
13418 (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
13419 (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
13420 (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
13421 (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
13422 (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
13423 (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
13424 (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
13425 (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
13426 (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
13427 (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
13428 (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
13429 (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
13430 (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
13431 (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
13432 (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
13433 (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
13434 (gst_rtpbuffer_get_payload):
13435 * gst-libs/gst/rtp/gstrtpbuffer.h:
13436 Don't subclass GstBuffer but add methods and helper functions
13437 to construct and manipulate RTP packets in regular GstBuffers.
13439 2005-08-18 Stefan Kost <ensonic@users.sf.net>
13441 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
13442 moved statement below switch
13443 * gst/volume/gstvolume.c: (gst_volume_class_init):
13446 2005-08-16 Wim Taymans <wim@fluendo.com>
13448 * gst-libs/gst/audio/gstbaseaudiosrc.c:
13449 (gst_base_audio_src_change_state):
13450 Open and close device in READY<->NULL state change.
13452 2005-08-16 Andy Wingo <wingo@pobox.com>
13454 * examples/seeking/Makefile.am: Don't compile non-compiling
13455 compiled objects with the compiler.
13457 * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
13460 2005-08-12 Philippe Khalaf <burger@speedy.org>
13461 * gst-libs/gst/rtp/gstbasertpdepayload.c:
13462 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13463 Made a thread to release the queue.
13464 Removed timestamp conversion for now.
13466 2005-08-10 Philippe Khalaf <burger@speedy.org>
13467 * gst-libs/gst/rtp/gstbasertpdepayload.c:
13468 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13469 Added rtp timestamp -> gst timestamp conversion.
13470 Fixed several problems with queue.
13472 2005-08-09 Tim-Philipp Müller <tim at centricular dot net>
13474 * gst-libs/gst/audio/gstaudioclock.h:
13475 * gst-libs/gst/audio/gstaudiofilter.h:
13476 * gst-libs/gst/audio/gstaudiosink.h:
13477 * gst-libs/gst/audio/gstaudiosrc.h:
13478 * gst-libs/gst/audio/gstbaseaudiosink.h:
13479 * gst-libs/gst/audio/gstbaseaudiosrc.h:
13480 * gst-libs/gst/audio/gstringbuffer.h:
13481 * gst-libs/gst/net/gstnetbuffer.h:
13482 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13483 * gst-libs/gst/rtp/gstrtpbuffer.h:
13484 Add padding (you will need to rebuild gst-plugins-base,
13485 gst-plugins and all applications afterwards!)
13487 2005-08-09 Tim-Philipp Müller <tim at centricular dot net>
13489 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
13490 (gst_riff_parse_chunk):
13491 Fix bug in debug message and add some more debug messages.
13493 2005-08-08 Edward Hervey <edward@fluendo.com>
13495 * gst-libs/gst/riff/riff-media.c:
13496 backported updates since branch
13498 2005-08-08 Andy Wingo <wingo@pobox.com>
13500 * gst-libs/gst/audio/gstbaseaudiosink.c
13501 (gst_base_audio_sink_change_state): Open the device in NULL->READY
13502 like good elements should. Close on READY->NULL too.
13504 * gst-libs/gst/audio/gstaudiosink.c
13505 (gst_audioringbuffer_open_device,
13506 (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
13507 (gst_audioringbuffer_release): Updates for new ring buffer API,
13508 hook into the new audio sink api.
13510 * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
13511 (GstAudioSinkClass.close): Just open and close the device -- no
13512 resource allocation or configuration.
13513 (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
13514 vmethods, handle device setup and resource allocation.
13516 * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
13517 (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
13520 * gst-libs/gst/audio/gstringbuffer.h
13521 (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
13524 * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
13525 (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
13526 New API functions. The device should be opened before acquiring
13527 and closed after releasing.
13529 2005-08-08 Tim-Philipp Müller <tim at centricular dot net>
13531 * gst-libs/gst/interfaces/mixer.h:
13532 Reset padding to GST_PADDING.
13534 2005-08-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13536 * gst/playback/gstplaybin.c: (remove_sinks):
13537 Remove visualization from parent explicitely; works around some
13538 apparent refcount issue that I haven't tracked down yet.
13540 2005-08-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13542 * ext/alsa/gstalsasink.c: (set_hwparams):
13543 Assign debug category, add negotiation debug msgs.
13545 2005-08-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13547 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
13548 Fix error code for file-not-found to NOT_FOUND.
13550 2005-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
13552 * common/gtk-doc-plugins.mak:
13553 * docs/plugins/Makefile.am:
13554 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13555 * docs/plugins/gst-plugins-base-plugins-sections.txt:
13556 renamed to actual element names, so much nicer to look at
13557 * docs/plugins/tmpl/gstmultifdsink.sgml:
13559 * docs/plugins/tmpl/multifdsink.sgml:
13560 * docs/plugins/tmpl/tcpserversink.sgml:
13562 * ext/alsa/gstalsa.c:
13563 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
13564 * ext/ogg/gstoggmux.c:
13565 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
13566 * gst/playback/gstdecodebin.c:
13567 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
13568 * gst/tcp/gsttcpserversink.c:
13569 various fixes and documentation additions
13571 2005-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
13573 * common/Makefile.am:
13574 * common/gstdoc-scangobj:
13575 * common/gtk-doc-plugins.mak:
13576 * common/gtk-doc.mak:
13577 add a custom scangobj that uses the registry
13578 add a custom gtk-doc-plugins.mak that uses it
13579 some doc build fixes
13581 * docs/Makefile.am:
13582 * docs/plugins/Makefile.am:
13583 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13584 * docs/plugins/gst-plugins-base-plugins-sections.txt:
13585 * docs/plugins/gst-plugins-base-plugins.types:
13586 * docs/plugins/tmpl/gstmultifdsink.sgml:
13587 add docs for one element, multifdsink
13588 * gst/adder/gstadder.h:
13589 * gst/volume/gstvolume.h:
13590 don't privatize enum
13591 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
13592 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
13593 (gst_sync_method_get_type), (gst_client_status_get_type),
13594 (gst_multifdsink_class_init),
13595 (gst_multifdsink_client_queue_buffer),
13596 (gst_multifdsink_handle_client_write):
13597 * gst/tcp/gstmultifdsink.h:
13598 * gst/tcp/gsttcp.h:
13599 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
13600 (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
13601 (gst_tcpclientsink_render):
13602 * gst/tcp/gsttcpclientsink.h:
13603 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
13604 (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
13605 (gst_tcpclientsrc_start):
13606 * gst/tcp/gsttcpclientsrc.h:
13607 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
13608 (gst_tcpserversrc_init), (gst_tcpserversrc_create):
13609 * gst/tcp/gsttcpserversrc.h:
13610 * gst/typefind/gsttypefindfunctions.c:
13611 remove superfluous Type stuff
13613 2005-08-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13615 * gst/playback/gstplaybin.c: (gen_video_element):
13618 2005-08-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13620 * gst-libs/gst/gconf/gconf.c:
13621 * gst-libs/gst/gconf/gconf.h:
13622 Fix some Andy Problem [tm].
13624 2005-08-04 Andy Wingo <wingo@pobox.com>
13626 * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
13627 * gst/ffmpegcolorspace/gstffmpegcolorspace.c
13628 (gst_ffmpegcsp_get_size): Adapt to API changes.
13630 * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
13631 Implement an in-place do-nothing transform.
13633 2005-08-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13635 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
13636 (gst_ximagesink_renegotiate_size):
13637 Do not set new window sizes yet if we prepare a new buffer size
13638 for upstream renegotiation (software scaling) at some point in the
13639 future, because this new size waqs not actually accepted yet. Once
13640 accepted, renegotiation later on will set the new sizes just fine.
13641 Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
13642 embedding testcase.
13644 2005-08-03 Andy Wingo <wingo@pobox.com>
13646 * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
13647 (gst_ximagesink_buffer_alloc):
13648 Protect the height, width, and desired_caps with the pool_lock.
13649 Fixes videotestsrc ! queue ! ximagesink.
13651 2005-08-02 Edward Hervey <edward@fluendo.com>
13653 * gst/volume/gstvolume.c:
13654 include left from controller cleanup
13656 2005-08-02 Jan Schmidt <thaytan@mad.scientist.com>
13657 * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
13658 Stop collectpads before calling the parent state
13659 change function on PAUSED->READY.
13661 2005-08-01 Jan Schmidt <thaytan@mad.scientist.com>
13663 When testing for X libs, use the X CFlags
13664 * gst/adder/gstadder.c: (gst_adder_change_state):
13665 Stop the collectpads before calling parent state change function
13666 on PAUSED->READY, otherwise we deadlock deactivating pads.
13668 2005-08-01 Stefan Kost <ensonic@users.sf.net>
13671 * docs/libs/tmpl/gstcolorbalance.sgml:
13672 * docs/libs/tmpl/gstmixer.sgml:
13673 * examples/Makefile.am:
13674 * gst/sine/Makefile.am:
13675 * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
13676 (gst_sinesrc_set_property), (plugin_init):
13677 * gst/sine/gstsinesrc.h:
13678 * gst/volume/Makefile.am:
13679 * gst/volume/gstvolume.c: (gst_volume_set_volume),
13680 (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
13681 (volume_process_float), (volume_process_int16),
13682 (volume_set_property), (plugin_init):
13683 * gst/volume/gstvolume.h:
13684 deactivate and remove dparams (libgstcontrol)
13686 2005-07-29 Wim Taymans <wim@fluendo.com>
13688 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
13689 Convert me to BaseTransform!! help..
13691 2005-07-29 Andy Wingo <wingo@pobox.com>
13693 * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
13696 * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
13697 support of both endiannesses.
13699 2005-07-28 Tim-Philipp Müller <tim at centricular dot net>
13701 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
13702 Fix confusing debug message (s/event/query/)
13704 2005-07-28 Tim-Philipp Müller <tim at centricular dot net>
13706 * gst/videotestsrc/videotestsrc.h:
13707 Use "_stdint.h" instead of <stdint.h>
13709 2005-07-27 Wim Taymans <wim@fluendo.com>
13711 * ext/vorbis/Makefile.am:
13712 Revert wrong commit.
13714 2005-07-27 Wim Taymans <wim@fluendo.com>
13716 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
13717 More compilation fixen.
13719 2005-07-27 Wim Taymans <wim@fluendo.com>
13721 * gst-libs/gst/audio/gstbaseaudiosink.c:
13722 (gst_base_audio_sink_event), (gst_base_audio_sink_render),
13723 (gst_base_audio_sink_create_ringbuffer),
13724 (gst_base_audio_sink_change_state):
13727 2005-07-27 Wim Taymans <wim@fluendo.com>
13729 * examples/seeking/seek.c: (setup_dynamic_link),
13730 (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
13731 (query_positions_elems), (query_positions_pads), (do_seek):
13732 Update seek example.
13734 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13735 (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
13736 (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
13737 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
13738 (gst_ogg_demux_handle_event),
13739 (gst_ogg_demux_deactivate_current_chain),
13740 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13741 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13742 (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
13743 (gst_ogg_demux_loop):
13744 * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
13745 * ext/theora/theoradec.c: (theora_dec_src_event),
13746 (theora_dec_src_getcaps), (theora_dec_sink_event),
13747 (theora_dec_push), (theora_dec_chain):
13748 * ext/vorbis/Makefile.am:
13749 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
13750 (vorbis_dec_sink_event), (vorbis_dec_push),
13751 (vorbis_handle_data_packet):
13752 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
13753 (gst_vorbisenc_chain):
13754 * gst/playback/gststreaminfo.c: (cb_probe):
13755 * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
13756 * gst/videorate/gstvideorate.c: (gst_videorate_event):
13757 * gst/videoscale/gstvideoscale.c:
13758 (gst_videoscale_handle_src_event):
13759 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
13760 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
13761 (gst_ximagesink_navigation_send_event):
13762 * sys/xvimage/xvimagesink.c:
13763 (gst_xvimagesink_navigation_send_event):
13764 Various event updates and cleanups
13766 2005-07-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13768 * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
13769 Fix segfault for I420/YV12.
13771 2005-07-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13773 * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
13776 2005-07-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13778 * gst/playback/gstplaybin.c: (gen_video_element),
13779 (gen_audio_element):
13780 Switch to auto*sink elements as default sinks; add volume element
13781 so that volume control in totem works.
13783 2005-07-21 Wim Taymans <wim@fluendo.com>
13785 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
13786 * gst/playback/gstplaybin.c: (setup_sinks),
13787 (gst_play_bin_change_state):
13788 Refcount fix and more comments.
13790 2005-07-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
13792 * sys/ximage/Makefile.am:
13793 * sys/ximage/ximage.c: (plugin_init):
13794 * sys/ximage/ximagesink.c:
13795 Prepare for adding ximagesrc, rename of plugin to ximage etc.
13798 2005-07-21 Wim Taymans <wim@fluendo.com>
13800 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13801 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13802 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13803 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13804 (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13805 (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
13806 (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
13807 (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
13808 (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
13809 Generate correct disconts for live chained oggs.
13811 * gst-libs/gst/audio/gstbaseaudiosink.c:
13812 (gst_base_audio_sink_render),
13813 (gst_base_audio_sink_create_ringbuffer),
13814 (gst_base_audio_sink_change_state):
13815 Handle discont math correctly.
13817 * gst/playback/gstplaybin.c: (add_sink):
13818 Some small debug cleanup.
13820 2005-07-21 Wim Taymans <wim@fluendo.com>
13822 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
13823 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13824 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13825 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13826 (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13827 (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
13828 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13829 (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
13830 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13831 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
13832 (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
13833 (gst_ogg_demux_change_state), (gst_ogg_print):
13834 Reorganize code to send the right disconts when in streaming
13837 2005-07-20 Andy Wingo <wingo@pobox.com>
13839 * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
13840 fix (?), fixes a seggie mcfalterson (#310894).
13842 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13844 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
13845 (gst_ogg_mux_set_header_on_caps):
13846 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
13847 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
13848 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
13849 * gst-libs/gst/audio/multichannel.c:
13850 (gst_audio_set_channel_positions),
13851 (gst_audio_set_structure_channel_positions_list):
13852 * gst/playback/gstdecodebin.c: (dynamic_create):
13853 * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
13854 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
13855 Fixes for API changes in core.
13857 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13859 * gst/playback/gstplaybasebin.c: (fill_buffer):
13860 Use _new_custom() so we can set custom message types for buffering
13863 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13866 * gst-libs/gst/Makefile.am:
13867 * gst-libs/gst/gconf/.cvsignore:
13868 * gst-libs/gst/gconf/Makefile.am:
13869 * gst-libs/gst/gconf/test-gconf.c:
13870 * pkgconfig/Makefile.am:
13871 * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
13872 * pkgconfig/gstreamer-gconf.pc.in:
13873 Remove gconf stuff, use gconf elements instead from now on.
13875 2005-07-20 Wim Taymans <wim@fluendo.com>
13877 * gst-libs/gst/audio/TODO:
13878 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
13879 (gst_audio_clock_get_internal_time):
13880 * gst-libs/gst/audio/gstaudioclock.h:
13881 * gst-libs/gst/audio/gstbaseaudiosink.c:
13882 (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
13883 (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
13884 (gst_base_audio_sink_render),
13885 (gst_base_audio_sink_create_ringbuffer),
13886 (gst_base_audio_sink_change_state):
13887 Make sure the audio clock always returns an increasing value.
13889 2005-07-19 Andy Wingo <wingo@pobox.com>
13891 * gst/videotestsrc/: Cleanups.
13893 2005-07-19 Wim Taymans <wim@fluendo.com>
13895 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
13898 2005-07-19 Wim Taymans <wim@fluendo.com>
13900 * examples/seeking/seek.c: (make_dv_pipeline),
13901 (make_vorbis_theora_pipeline), (query_rates),
13902 (query_positions_elems), (query_positions_pads), (do_seek):
13903 Make correct DV pipeline.
13905 2005-07-18 Andy Wingo <wingo@pobox.com>
13907 * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
13908 default. Also because it's the only thing that really works. (This
13909 is used in the GConf elements).
13910 Use AS_LIBTOOL_TAGS.
13912 2005-07-18 Wim Taymans <wim@fluendo.com>
13914 * gst/playback/gstdecodebin.c: (remove_element_chain):
13915 * gst/playback/gstplaybin.c: (add_sink):
13916 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
13917 (gst_stream_info_set_mute):
13918 * gst/playback/gststreamselector.c:
13919 (gst_stream_selector_get_linked_pad),
13920 (gst_stream_selector_getcaps), (gst_stream_selector_chain):
13921 More leak and compile fixes.
13923 2005-07-18 Wim Taymans <wim@fluendo.com>
13925 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
13926 (query_rates), (query_positions_elems), (query_positions_pads),
13927 (do_seek), (seek_cb), (stop_seek):
13928 Updated seek example.
13930 * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
13931 * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
13932 (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
13933 * gst/playback/gstplaybin.c: (add_sink):
13934 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
13935 (gst_stream_info_set_mute):
13936 Some refcount leak fixes.
13938 2005-07-16 Wim Taymans <wim@fluendo.com>
13940 * gst-libs/gst/audio/gstbaseaudiosink.c:
13941 (gst_base_audio_sink_render):
13942 Align samples even if we have roundoff errors in the
13943 timestamp conversion.
13945 2005-07-16 Wim Taymans <wim@fluendo.com>
13947 * docs/libs/tmpl/gstringbuffer.sgml:
13948 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
13949 (query_rates), (query_positions_elems), (query_positions_pads),
13950 (update_scale), (do_seek):
13951 Updated seek example.
13953 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
13954 (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
13955 (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
13956 (gst_ogg_demux_loop):
13957 Push out correct discont values.
13959 * ext/theora/theoradec.c: (theora_dec_src_convert),
13960 (theora_dec_sink_convert), (theora_dec_src_getcaps),
13961 (theora_dec_sink_event), (theora_handle_type_packet),
13962 (theora_handle_header_packet), (theora_dec_push),
13963 (theora_handle_data_packet), (theora_dec_chain),
13964 (theora_dec_change_state):
13965 Better timestamping.
13967 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
13968 (vorbis_dec_sink_event), (vorbis_dec_push),
13969 (vorbis_handle_data_packet), (vorbis_dec_chain):
13970 * ext/vorbis/vorbisdec.h:
13971 Better timestamping.
13973 * gst-libs/gst/audio/gstbaseaudiosink.c:
13974 (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
13975 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
13976 Handle syncing on timestamps instead of sample offsets. Make
13977 use of DISCONT values as described in design docs.
13979 * gst-libs/gst/audio/gstbaseaudiosrc.c:
13980 (gst_base_audio_src_get_time):
13981 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
13982 (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
13983 (gst_ring_buffer_read):
13984 * gst-libs/gst/audio/gstringbuffer.h:
13985 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
13986 (gst_ximagesink_show_frame):
13987 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
13988 Correcly convert buffer timestamp to stream time.
13990 2005-07-16 Wim Taymans <wim@fluendo.com>
13992 * gst/audioconvert/gstaudioconvert.c:
13993 (gst_audio_convert_get_buffer):
13994 Timestamp buffers correctly.
13996 * gst/playback/gstplaybin.c: (gen_video_element):
13997 Make internal fakesink silent.
13999 2005-07-15 Wim Taymans <wim@fluendo.com>
14001 * gst/ffmpegcolorspace/Makefile.am:
14002 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14003 (gst_ffmpegcsp_caps_remove_format_info),
14004 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
14005 (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
14006 (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
14007 (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
14008 Ported ffmpegcolorspace to basetransform.
14010 * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
14011 * gst/volume/gstvolume.c: (volume_transform):
14014 2005-07-14 Wim Taymans <wim@fluendo.com>
14016 * gst/videotestsrc/Makefile.am:
14017 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
14018 (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
14019 (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
14020 (gst_videotestsrc_init), (gst_videotestsrc_event),
14021 (gst_videotestsrc_create), (gst_videotestsrc_start),
14022 (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
14023 (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
14024 (gst_videotestsrc_get_property):
14025 * gst/videotestsrc/gstvideotestsrc.h:
14026 Make videotestsrc a pushsrc.
14028 2005-07-14 Wim Taymans <wim@fluendo.com>
14030 * gst/tcp/gstfdset.c: (gst_fdset_free):
14031 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
14032 (gst_multifdsink_add), (gst_multifdsink_remove),
14033 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
14034 (gst_multifdsink_remove_client_link),
14035 (gst_multifdsink_client_queue_data),
14036 (gst_multifdsink_client_queue_caps),
14037 (gst_multifdsink_client_queue_buffer),
14038 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
14039 (gst_multifdsink_stop):
14040 * gst/tcp/gstmultifdsink.h:
14043 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
14044 Also draw image when not from a pool.
14046 2005-07-14 Wim Taymans <wim@fluendo.com>
14048 * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
14049 (mute_stream), (silence_stream):
14050 Small debug additions.
14052 2005-07-14 Wim Taymans <wim@fluendo.com>
14054 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
14055 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
14056 (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
14057 Better error recovery, ignore unconnected pads and
14060 2005-07-14 Thomas Vander Stichele <thomas at apestaart dot org>
14062 * docs/libs/tmpl/gstaudio.sgml:
14063 * docs/libs/tmpl/gstcolorbalance.sgml:
14064 * docs/libs/tmpl/gstgconf.sgml:
14065 * docs/libs/tmpl/gstmixer.sgml:
14066 * docs/libs/tmpl/gstringbuffer.sgml:
14067 * docs/libs/tmpl/gsttuner.sgml:
14068 * gst-libs/gst/audio/gstbaseaudiosrc.c:
14069 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
14070 (gst_tcpclientsrc_class_init):
14071 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
14072 (gst_tcpserversrc_class_init):
14073 * sys/v4l/gstv4lelement.c:
14074 more autistic cleanliness in functions/names/defines
14076 2005-07-13 Thomas Vander Stichele <thomas at apestaart dot org>
14079 make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
14080 added manually to each Makefile.am so we are sure it goes
14081 *last* and doesn't add -L flags before linking in libs of our
14082 own, like, say, internal .la libs, that then accidentally pick
14083 up the installed copy.
14084 * docs/libs/Makefile.am:
14085 * ext/alsa/Makefile.am:
14086 * ext/cdparanoia/Makefile.am:
14087 * ext/gnomevfs/Makefile.am:
14088 * ext/libvisual/Makefile.am:
14089 * ext/ogg/Makefile.am:
14090 * ext/theora/Makefile.am:
14091 * ext/vorbis/Makefile.am:
14092 * gst-libs/gst/video/Makefile.am:
14093 * gst/adder/Makefile.am:
14094 * gst/audioconvert/Makefile.am:
14095 * gst/audiorate/Makefile.am:
14096 * gst/audioscale/Makefile.am:
14097 * gst/ffmpegcolorspace/Makefile.am:
14098 * gst/playback/Makefile.am:
14099 * gst/sine/Makefile.am:
14100 * gst/subparse/Makefile.am:
14101 * gst/tags/Makefile.am:
14102 * gst/tcp/Makefile.am:
14103 * gst/typefind/Makefile.am:
14104 * gst/videorate/Makefile.am:
14105 * gst/videoscale/Makefile.am:
14106 * gst/videotestsrc/Makefile.am:
14107 * gst/volume/Makefile.am:
14108 * sys/v4l/Makefile.am:
14109 * sys/ximage/Makefile.am:
14110 * sys/xvimage/Makefile.am:
14111 adapt properly to this change. This should make sure that
14112 plugins and libs properly link to the as-yet-uninstalled
14113 copies of stuff like libgstinterfaces and libgstvideo
14115 2005-07-13 Andy Wingo <wingo@pobox.com>
14117 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
14118 (gst_v4lsrc_fixate): Fixate on format as well.
14120 * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy)
14121 (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
14122 buffer points to it.
14123 (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
14124 rather just doing X calls ourselves. Also fixes a memleak.
14126 2005-07-12 Andy Wingo <wingo@pobox.com>
14128 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property)
14129 (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init)
14130 (gst_v4lsrc_create): Re-add the copy-mode property, default to
14131 TRUE to avoid deadlocks if an element holds on to our buffers.
14133 2005-07-11 Thomas Vander Stichele <thomas at apestaart dot org>
14135 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
14136 (gst_sinesrc_init), (gst_sinesrc_create),
14137 (gst_sinesrc_set_property), (gst_sinesrc_get_property),
14138 (gst_sinesrc_start):
14139 * gst/sine/gstsinesrc.h:
14140 removing num-buffers property before moving it
14142 2005-07-10 Thomas Vander Stichele <thomas at apestaart dot org>
14145 use overridable ERROR_CFLAGS
14146 * docs/libs/gst-plugins-base-libs.types:
14147 * docs/libs/tmpl/gstringbuffer.sgml:
14148 * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
14149 (gst_alsasink_class_init):
14150 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
14151 (gst_alsasrc_class_init):
14152 * gst-libs/gst/audio/audio.h:
14153 * gst-libs/gst/audio/gstaudioclock.h:
14154 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
14155 (gst_audio_filter_base_init), (gst_audio_filter_class_init),
14156 (gst_audio_filter_link), (gst_audio_filter_init),
14157 (gst_audio_filter_chain), (gst_audio_filter_set_property),
14158 (gst_audio_filter_get_property),
14159 (gst_audio_filter_class_add_pad_templates):
14160 * gst-libs/gst/audio/gstaudiofilter.h:
14161 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
14162 (gst_audio_filter_template_get_type),
14163 (gst_audio_filter_template_base_init),
14164 (gst_audio_filter_template_class_init),
14165 (gst_audio_filter_template_init),
14166 (gst_audio_filter_template_set_property),
14167 (gst_audio_filter_template_get_property), (plugin_init),
14168 (gst_audio_filter_template_setup),
14169 (gst_audio_filter_template_filter),
14170 (gst_audio_filter_template_filter_inplace):
14171 * gst-libs/gst/audio/gstaudiosink.c:
14172 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14173 (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
14174 (gst_audioringbuffer_release), (gst_audioringbuffer_start),
14175 (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
14176 (gst_audio_sink_base_init), (gst_audio_sink_class_init),
14177 (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
14178 * gst-libs/gst/audio/gstaudiosink.h:
14179 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
14180 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
14181 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14182 (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
14183 (gst_audioringbuffer_delay), (gst_audio_src_base_init),
14184 (gst_audio_src_class_init), (gst_audio_src_init),
14185 (gst_audio_src_create_ringbuffer):
14186 * gst-libs/gst/audio/gstaudiosrc.h:
14187 * gst-libs/gst/audio/gstbaseaudiosink.c:
14188 (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
14189 (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
14190 (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
14191 (gst_base_audio_sink_set_property),
14192 (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
14193 (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
14194 (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
14195 (gst_base_audio_sink_create_ringbuffer),
14196 (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
14197 * gst-libs/gst/audio/gstbaseaudiosink.h:
14198 * gst-libs/gst/audio/gstbaseaudiosrc.c:
14199 (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
14200 (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
14201 (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
14202 (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
14203 (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
14204 (gst_base_audio_src_event), (gst_base_audio_src_create),
14205 (gst_base_audio_src_create_ringbuffer),
14206 (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
14207 * gst-libs/gst/audio/gstbaseaudiosrc.h:
14208 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
14209 (gst_ring_buffer_class_init), (gst_ring_buffer_init),
14210 (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
14211 (gst_ring_buffer_debug_spec_caps),
14212 (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
14213 (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
14214 (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
14215 (gst_ring_buffer_start), (gst_ring_buffer_pause),
14216 (gst_ring_buffer_stop), (gst_ring_buffer_delay),
14217 (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
14218 (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
14219 (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
14220 (gst_ring_buffer_clear):
14221 * gst-libs/gst/audio/gstringbuffer.h:
14222 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
14223 (gst_video_sink_class_init), (gst_video_sink_get_type):
14224 * gst-libs/gst/video/videosink.h:
14225 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
14226 (gst_multifdsink_class_init),
14227 (gst_multifdsink_handle_client_write),
14228 (gst_multifdsink_change_state):
14229 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
14230 (gst_tcpclientsink_setcaps):
14231 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
14232 (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
14233 (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
14234 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
14235 (gst_ximagesink_send_pending_navigation),
14236 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
14237 (gst_ximagesink_class_init), (gst_ximagesink_get_type):
14238 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
14239 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
14240 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
14241 (gst_xvimagesink_send_pending_navigation),
14242 (gst_xvimagesink_navigation_send_event),
14243 (gst_xvimagesink_set_xwindow_id),
14244 (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
14245 (gst_xvimagesink_get_type):
14246 more macro splitting
14248 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
14250 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
14251 plug a memleak, allows me to import 1479 albums in one go
14253 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14254 (vorbis_handle_type_packet), (vorbis_dec_chain),
14255 (vorbis_dec_change_state):
14256 fix some format strings
14258 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
14260 * docs/libs/tmpl/gstcolorbalance.sgml:
14261 * docs/libs/tmpl/gstmixer.sgml:
14262 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
14263 (gst_alsasink_set_property), (gst_alsasink_get_property):
14264 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
14265 (gst_alsasrc_set_property), (gst_alsasrc_get_property):
14266 add device property
14268 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
14270 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
14271 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
14272 (audiocast_register_listener), (audiocast_thread_run),
14273 (gst_gnomevfssrc_send_additional_headers_callback),
14274 (gst_gnomevfssrc_received_headers_callback),
14275 (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
14276 (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
14277 (gst_gnomevfssrc_get_size):
14278 add/clean up debugging
14279 * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
14282 2005-07-07 Andy Wingo <wingo@pobox.com>
14284 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
14285 framerate. Need to get a handle on when exactly this function is
14288 * sys/v4l/v4lsrc_calls.h:
14289 * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
14290 (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
14291 (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
14293 * sys/v4l/v4l_calls.h: Cast to V4lElement.
14294 * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
14295 v4lelements are sources.
14297 * sys/v4l/gstv4lxoverlay.h:
14298 * sys/v4l/gstv4lxoverlay.c:
14299 * sys/v4l/gstv4ltuner.h:
14300 * sys/v4l/gstv4ltuner.c: Header loc fixen.
14302 * sys/v4l/gstv4lsrc.h:
14303 * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
14304 PushSrc/BaseSrc. Removed most sync-related properties, videorate
14305 or something should handle that. Made a live source.
14307 * sys/v4l/gstv4lelement.h:
14308 * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
14309 signals. Some cleanups.
14311 * sys/v4l/gstv4lcolorbalance.h: Interface header update.
14313 * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
14316 * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
14319 * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
14321 2005-07-07 Wim Taymans <wim@fluendo.com>
14323 * ext/theora/theoradec.c: (theora_get_query_types),
14324 (theora_dec_src_getcaps), (theora_dec_push):
14325 * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
14326 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
14327 Remove deprecated/unused query types.
14329 2005-07-06 Wim Taymans <wim@fluendo.com>
14331 * ext/alsa/Makefile.am:
14332 * ext/alsa/gstalsaplugin.c: (plugin_init):
14333 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
14334 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
14335 (gst_alsasrc_dispose), (gst_alsasrc_base_init),
14336 (gst_alsasrc_class_init), (gst_alsasrc_init),
14337 (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
14338 (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
14339 (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
14340 (gst_alsasrc_reset):
14341 * ext/alsa/gstalsasrc.h:
14342 * gst-libs/gst/audio/Makefile.am:
14343 * gst-libs/gst/audio/gstaudiosink.c:
14344 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14345 (gst_audioringbuffer_start):
14346 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
14347 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
14348 (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
14349 (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
14350 (gst_audioringbuffer_release), (gst_audioringbuffer_start),
14351 (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
14352 (gst_audiosrc_base_init), (gst_audiosrc_class_init),
14353 (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
14354 * gst-libs/gst/audio/gstaudiosrc.h:
14355 * gst-libs/gst/audio/gstbaseaudiosink.c:
14356 (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
14357 (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
14358 (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
14359 * gst-libs/gst/audio/gstbaseaudiosrc.c:
14360 (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
14361 (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
14362 (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
14363 (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
14364 (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
14365 (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
14366 (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
14367 (gst_baseaudiosrc_change_state):
14368 * gst-libs/gst/audio/gstbaseaudiosrc.h:
14369 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
14370 (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
14371 (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
14372 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
14373 (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
14374 (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
14375 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
14376 * gst-libs/gst/audio/gstringbuffer.h:
14377 Added audiosource base classes.
14378 Ported alsasrc, still very basic.
14380 2005-07-06 Wim Taymans <wim@fluendo.com>
14382 * ext/theora/theoradec.c: (theora_dec_src_getcaps),
14383 (theora_dec_push), (theora_handle_data_packet):
14384 Prepare for better timestamp fix later.
14386 * gst/audioconvert/gstaudioconvert.c:
14387 List most accurate caps first
14389 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
14390 Use proper pad task function.
14392 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
14393 (gst_xvimagesink_show_frame):
14394 Fix deadlock when alloc failed.
14396 2005-07-05 Andy Wingo <wingo@pobox.com>
14398 * ext/gnomevfs/gstgnomevfssrc.c:
14399 * gst/sine/gstsinesrc.c:
14400 * gst/tcp/gsttcpserversrc.c:
14401 * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
14403 * sys/v4l/: Port from 0.8.
14405 * Many files: Null if we got it....
14407 2005-07-05 Andy Wingo <wingo@pobox.com>
14409 * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read):
14410 * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
14413 2005-07-05 Wim Taymans <wim@fluendo.com>
14416 * gst/tcp/Makefile.am:
14418 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
14419 (gst_multifdsink_base_init), (gst_multifdsink_class_init),
14420 (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
14421 (is_sync_frame), (gst_multifdsink_handle_client_write),
14422 (gst_multifdsink_render), (gst_multifdsink_start),
14423 (gst_multifdsink_stop), (gst_multifdsink_change_state):
14424 * gst/tcp/gstmultifdsink.h:
14425 * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
14426 (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
14427 (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
14428 * gst/tcp/gsttcp.h:
14429 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
14430 (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
14431 (gst_tcpclientsink_render), (gst_tcpclientsink_start),
14432 (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
14433 * gst/tcp/gsttcpclientsink.h:
14434 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
14435 (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
14436 (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
14437 (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
14438 (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
14439 * gst/tcp/gsttcpclientsrc.h:
14440 * gst/tcp/gsttcpplugin.c: (plugin_init):
14441 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
14442 * gst/tcp/gsttcpserversink.h:
14443 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
14444 (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
14445 (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
14446 (gst_tcpserversrc_create), (gst_tcpserversrc_start),
14447 (gst_tcpserversrc_stop):
14448 * gst/tcp/gsttcpserversrc.h:
14449 * gst/tcp/gsttcpsink.c:
14450 * gst/tcp/gsttcpsink.h:
14451 * gst/tcp/gsttcpsrc.c:
14452 * gst/tcp/gsttcpsrc.h:
14453 Ported tcp plugins to 0.9.
14456 2005-07-05 Andy Wingo <wingo@pobox.com>
14458 * gst/playback/gstplaybasebin.c (fill_buffer):
14459 message_new_application fixen.
14461 * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
14464 2005-07-04 Wim Taymans <wim@fluendo.com>
14466 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
14467 Set caps on output buffer.
14469 2005-07-04 Andy Wingo <wingo@pobox.com>
14471 * ext/gnomevfs/gstgnomevfssrc.c
14472 (gst_gnomevfssrc_received_headers_callback)
14473 (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
14476 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
14477 No refcount leakage.
14479 * configure.ac: Enable -Werror.
14481 * ext/theora/theoradec.c (theora_dec_src_getcaps):
14482 * gst/audioconvert/bufferframesconvert.c
14483 (buffer_frames_convert_fixate):
14484 * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
14485 (gst_audio_convert_fixate):
14486 * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
14487 (gst_sinesrc_create): Fixate func changes.
14489 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
14490 (gst_ximagesink_buffer_alloc): Unused var.
14492 2005-07-01 Andy Wingo <wingo@pobox.com>
14494 * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
14495 getcaps to do explicit caps. Needs to be done in all decoders,
14496 possibly via a base class.
14498 * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
14500 * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
14501 caps on the sink pad, just rely on the pad template. Also, setting
14502 ANY caps on a pad is not valid because the caps are not fixed.
14504 * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
14505 caps on the buffer, and get the width from the desired_caps if
14507 (gst_ximagesink_renegotiate_size): Implement via setting the
14508 desired_caps on the ximagesink.
14509 (gst_ximagesink_setcaps): Only reset the width of the player if it
14510 wasn't already set. Not sure if this is right.
14511 (gst_ximagesink_show_frame): Memcpy only for normal buffers.
14513 * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
14514 that the user wants. NULL unless the window has been resized.
14516 * gst/volume/gstvolume.c (volume_transform): Adapt to
14517 basetransform refcount changes.
14519 2005-07-01 Andy Wingo <wingo@pobox.com>
14521 * gst/videoscale/gstvideoscale.c:
14522 * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
14523 from BaseTransform, implements a transform_caps. Removed dead code
14524 including some PAR stuff that was never reached -- should probably
14525 be added back somehow.
14527 2005-07-01 Andy Wingo <wingo@pobox.com>
14529 * gst/videoscale: Merge David's work from 0.8 branch. Changes to
14532 2005-06-30 Thomas Vander Stichele <thomas at apestaart dot org>
14535 * docs/libs/Makefile.am:
14536 * docs/libs/gst-plugins-libs.types:
14537 * ext/alsa/Makefile.am:
14538 * ext/alsa/gstalsamixer.h:
14539 * ext/alsa/gstalsamixeroptions.h:
14540 * ext/alsa/gstalsamixertrack.h:
14541 * gst-libs/gst/Makefile.am:
14542 * gst-libs/gst/colorbalance/.cvsignore:
14543 * gst-libs/gst/colorbalance/Makefile.am:
14544 * gst-libs/gst/colorbalance/colorbalance-marshal.list:
14545 * gst-libs/gst/colorbalance/colorbalance.c:
14546 * gst-libs/gst/colorbalance/colorbalance.h:
14547 * gst-libs/gst/colorbalance/colorbalance.vcproj:
14548 * gst-libs/gst/colorbalance/colorbalancechannel.c:
14549 * gst-libs/gst/colorbalance/colorbalancechannel.h:
14550 * gst-libs/gst/interfaces/Makefile.am:
14551 * gst-libs/gst/interfaces/colorbalance.c:
14552 (gst_color_balance_class_init):
14553 * gst-libs/gst/interfaces/colorbalance.h:
14554 * gst-libs/gst/interfaces/interfaces-marshal.list:
14555 * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
14556 * gst-libs/gst/interfaces/mixer.h:
14557 * gst-libs/gst/interfaces/mixeroptions.h:
14558 * gst-libs/gst/interfaces/navigation.c:
14559 * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
14560 * gst-libs/gst/interfaces/tuner.h:
14561 * gst/volume/Makefile.am:
14562 * gst/volume/gstvolume.c:
14563 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
14564 * sys/ximage/Makefile.am:
14565 * sys/ximage/ximagesink.c:
14566 * sys/xvimage/Makefile.am:
14567 * sys/xvimage/xvimagesink.c:
14568 fold in all interfaces into an interfaces dir, preserving CVS
14571 2005-06-30 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14573 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
14574 Fix build after riff changes.
14576 2005-06-30 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14578 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
14579 (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
14580 (gst_riff_create_video_template_caps),
14581 (gst_riff_create_audio_template_caps),
14582 (gst_riff_create_iavs_template_caps):
14583 * gst-libs/gst/riff/riff-media.h:
14584 * gst-libs/gst/riff/riff-read.h:
14585 * gst-libs/gst/riff/riff.c: (gst_riff_init):
14586 Add gst_riff_init() to initialize the debug category, instead
14587 of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
14589 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14591 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
14592 Oops, I shouldn't apply hacks.
14594 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14596 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
14597 Remove pad_loop function which doesn't work.
14599 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14601 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
14602 Send EOS when deactivating.
14603 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
14604 (check_queue), (queue_threshold_reached), (queue_out_of_data),
14605 (gen_preroll_element), (probe_triggered), (mute_stream),
14606 (silence_stream), (new_decoded_pad), (setup_substreams),
14607 (set_active_source):
14608 * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
14609 (remove_sinks), (add_sink):
14610 * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
14611 Change for new probe API.
14613 2005-06-29 Wim Taymans <wim@fluendo.com>
14615 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
14616 * gst-libs/gst/audio/gstbaseaudiosink.c:
14617 (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
14618 (gst_baseaudiosink_change_state):
14619 * gst-libs/gst/audio/gstbaseaudiosink.h:
14620 * gst-libs/gst/audio/gstringbuffer.c:
14621 (gst_ringbuffer_set_callback):
14622 Fix compilation error.
14623 Ringbuffer starts out as not running.
14624 Free our clock in dispose.
14625 When releasing the ringbuffer we need to renegotiate so
14626 clear the pad caps.
14628 2005-06-29 Thomas Vander Stichele <thomas at apestaart dot org>
14632 * docs/Makefile.am:
14633 * docs/libs/Makefile.am:
14634 * docs/libs/gst-plugins-libs-docs.sgml:
14635 * docs/libs/gst-plugins-libs-sections.txt:
14636 * docs/libs/gst-plugins-libs.types:
14637 * docs/libs/tmpl/gstaudio.sgml:
14638 * docs/libs/tmpl/gstcolorbalance.sgml:
14639 * docs/libs/tmpl/gstringbuffer.sgml:
14640 * gst-libs/gst/audio/gstringbuffer.c:
14641 (gst_ringbuffer_set_callback):
14642 reinstate gtk-doc docs for plugin libs
14644 2005-06-28 Wim Taymans <wim@fluendo.com>
14646 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14647 (gst_ogg_demux_init):
14648 Removed pad loop function.
14650 2005-06-28 Wim Taymans <wim@fluendo.com>
14652 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14653 If we're building a chain we are not in an error case
14654 when we queue a buffer.
14656 2005-06-28 Andy Wingo <wingo@pobox.com>
14658 * *.c: Don't cast to GstObject before reffing/unreffing.
14660 2005-06-27 Andy Wingo <wingo@pobox.com>
14662 * gst/videotestsrc/gstvideotestsrc.c
14663 (gst_videotestsrc_activate_push): Activation API changes.
14665 * gst/playback/gstdecodebin.c (gst_decode_bin_change_state)
14666 (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
14667 they have refs on the decodebin.
14669 * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
14671 (gst_ogg_pad_typefind): Don't leak a pad ref.
14672 (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
14673 (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push)
14674 (gst_ogg_demux_sink_activate_pull): Changes for activation API.
14676 2005-06-27 Edward Hervey <edward@fluendo.com>
14678 * ext/theora/theoradec.c: (theora_dec_change_state):
14679 re-arranged call to parent's state change in order to avoid locks (or
14682 2005-06-26 Edward Hervey <edward@fluendo.com>
14684 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
14685 2nd argument of 'unknow-type' signal is a GstCaps and not a
14688 2005-06-25 Jan Schmidt <thaytan@mad.scientist.com>
14689 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
14690 Set the worker thread's running flag to TRUE before starting the
14692 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
14693 Catch a failure to add typefind to the bin.
14695 2005-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
14697 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
14698 (gst_sinesrc_init), (gst_sinesrc_create),
14699 (gst_sinesrc_set_property), (gst_sinesrc_get_property),
14700 (gst_sinesrc_start):
14701 * gst/sine/gstsinesrc.h:
14702 add num-buffers and timestamp-offset properties
14703 * gst/videotestsrc/gstvideotestsrc.c:
14704 (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
14705 (gst_videotestsrc_get_property):
14706 add timestamp-offset property
14708 2005-06-23 Christian Schaller <uraeus@gnome.org>
14710 * configure.ac: add videorate
14711 * gst-plugins-base.spec.in: add videorate
14713 2005-06-23 Wim Taymans <wim@fluendo.com>
14715 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14716 (gst_videorate_getcaps), (gst_videorate_setcaps),
14717 (gst_videorate_event), (gst_videorate_chain):
14718 Fixed videorate, fixating an already fixated caps is not
14721 2005-06-23 Wim Taymans <wim@fluendo.com>
14724 * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
14725 Buffer on caps is not boxed anymore.
14727 2005-06-22 Wim Taymans <wim@fluendo.com>
14729 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
14730 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
14731 Set buffers on caps as miniobjects and not as boxed.
14733 2005-06-19 Thomas Vander Stichele <thomas at apestaart dot org>
14738 === release 0.9.1 ===
14740 2005-06-19 Thomas Vander Stichele <thomas at apestaart dot org>
14761 updates for release
14763 2005-06-09 Andy Wingo <wingo@pobox.com>
14765 * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
14767 2005-06-09 Andy Wingo <wingo@pobox.com>
14770 * gst-libs/gst/Makefile.am:
14771 * gst-libs/gst/net/Makefile.am:
14772 Add gstnet to build.
14774 2005-06-09 Andy Wingo <wingo@pobox.com>
14776 * gst-libs/gst/gconf/gconf.c:
14777 * gst/playback/test.c:
14778 * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
14781 * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
14783 * ext/theora/theoraenc.c (theora_enc_chain):
14784 * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
14786 * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
14789 2005-06-02 Wim Taymans <wim@fluendo.com>
14791 * gst-libs/gst/net/Makefile.am:
14792 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
14793 * pkgconfig/gstreamer-libs.pc.in:
14794 Added net stuff, version net lib.
14796 2005-06-02 Wim Taymans <wim@fluendo.com>
14798 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
14799 (query_rates), (query_positions_elems), (query_positions_pads),
14801 Updated seek example.
14803 2005-06-02 Andy Wingo <wingo@pobox.com>
14805 * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
14806 * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
14809 * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
14810 remove the typefind, the bin dispose will do it for us. When it's
14811 removed and unreffed, the signal handler will be disconnected,
14813 (unlinked): It's too difficult to disconnect from unlinked
14814 handlers, as they are on pads not elements. Just punt if the pads
14815 aren't grandkids of the bin.
14817 2005-06-02 Wim Taymans <wim@fluendo.com>
14820 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14821 (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
14822 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
14823 * ext/theora/theoradec.c: (theora_dec_src_query),
14824 (theora_handle_data_packet):
14825 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
14826 (theora_enc_chain):
14827 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14828 (vorbis_handle_data_packet):
14829 * gst/audioconvert/bufferframesconvert.c:
14830 (buffer_frames_convert_chain):
14831 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14832 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14833 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14834 (gst_ffmpegcsp_chain):
14835 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14836 (gst_videorate_getcaps), (gst_videorate_setcaps),
14837 (gst_videorate_event), (gst_videorate_chain):
14838 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
14839 (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
14840 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14841 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
14842 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
14843 (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
14844 (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
14845 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
14846 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
14847 Cleanups and buffer alloc.
14849 2005-05-31 Wim Taymans <wim@fluendo.com>
14851 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
14852 Don't try to call the delay method when the device is not
14855 2005-05-31 Wim Taymans <wim@fluendo.com>
14857 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
14858 Get actual segment size and buffer size after opening
14861 2005-05-30 Wim Taymans <wim@fluendo.com>
14863 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
14864 (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
14865 Also FLUSH upstream, makes the loop function exit faster.
14867 * ext/theora/theoradec.c: (theora_dec_src_query):
14868 Some more debug info in the query.
14870 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14871 (gst_ximagesink_setcaps):
14872 Release lock on par error, better error reporting.
14874 2005-05-26 Wim Taymans <wim@fluendo.com>
14876 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14877 (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
14878 (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
14879 Clear chains in READY
14880 Queue packets until the chain is activated.
14882 2005-05-25 Wim Taymans <wim@fluendo.com>
14884 * gst-libs/gst/audio/gstaudiosink.c:
14885 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14886 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
14887 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14888 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
14889 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
14890 (gst_audiosink_create_ringbuffer):
14891 * gst-libs/gst/audio/gstbaseaudiosink.c:
14892 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
14893 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
14894 (gst_baseaudiosink_set_property), (build_linear_format),
14895 (debug_spec_caps), (debug_spec_buffer),
14896 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
14897 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
14898 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
14899 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
14900 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
14901 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
14902 (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
14903 (gst_ringbuffer_play), (gst_ringbuffer_pause),
14904 (gst_ringbuffer_stop), (gst_ringbuffer_delay),
14905 (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
14906 (wait_segment), (gst_ringbuffer_commit),
14907 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
14908 (gst_ringbuffer_clear):
14909 Various small cleanups.
14911 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14912 (gst_audio_convert_change_state):
14913 * gst/subparse/gstsubparse.c: (gst_subparse_chain):
14914 No need to take the locks anymore.
14916 2005-05-25 Wim Taymans <wim@fluendo.com>
14918 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
14919 (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
14920 (remove_element_chain), (no_more_pads), (unlinked), (close_link),
14922 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
14923 (group_destroy), (group_commit), (queue_overrun),
14924 (gen_preroll_element), (no_more_pads), (preroll_unlinked),
14925 (mute_stream), (new_decoded_pad), (setup_substreams),
14926 (setup_source), (mute_group_type), (set_active_source),
14927 (gst_play_base_bin_change_state):
14928 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
14929 (gen_video_element), (gen_text_element), (gen_audio_element),
14930 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
14931 * gst/playback/gststreaminfo.c: (gst_stream_info_new),
14932 (gst_stream_info_dispose), (gst_stream_info_set_mute):
14933 * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
14934 Some playbin cleanups mostly refcounting sloppyness.
14936 2005-05-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14938 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14939 Work with streaming input.
14941 2005-05-25 Wim Taymans <wim@fluendo.com>
14943 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14944 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14945 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14946 (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
14947 No need to take the STREAM lock anymore.
14949 2005-05-25 Wim Taymans <wim@fluendo.com>
14951 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
14952 (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
14953 (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
14954 (gst_ogg_demux_chain), (gst_ogg_demux_loop),
14955 (gst_ogg_demux_sink_activate):
14956 * ext/theora/theoradec.c: (theora_dec_src_event),
14957 (theora_handle_comment_packet), (theora_dec_chain),
14958 (theora_dec_change_state):
14959 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14960 (vorbis_handle_data_packet), (vorbis_dec_chain),
14961 (vorbis_dec_change_state):
14962 Remove STREAM locks as they are taken in core now.
14963 Never set bogus granulepos on vorbis/theora.
14964 Fix leaks in theoradec tag parsing.
14966 2005-05-25 Wim Taymans <wim@fluendo.com>
14968 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
14969 Fix memleaks, GST_BUFFER_DATA() is not freed.
14971 2005-05-25 Wim Taymans <wim@fluendo.com>
14973 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
14974 Open non-blocking, set to blocking mode afterwards to avoid
14975 lockups when audio device is busy.
14977 2005-05-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14979 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
14980 This can't be good.
14982 2005-05-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14984 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
14985 (gst_audio_convert_chain), (gst_audio_convert_link_src),
14986 (gst_audio_convert_setcaps):
14987 Implement instant setup switching.
14989 2005-05-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14991 * gst/playback/gstplaybasebin.c: (probe_triggered):
14992 Fix missing unlock.
14993 * gst/playback/gstplaybin.c: (add_sink):
14994 First add, then link (otherwise pad link fails).
14996 2005-05-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14998 * examples/Makefile.am:
14999 fix buildbot (make distcheck)
15001 2005-05-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15003 * gst/playback/gstplaybin.c: (gen_vis_element):
15004 Remove some wrong code. Doesn't work yet.
15006 2005-05-19 Wim Taymans <wim@fluendo.com>
15008 * gst-libs/gst/net/Makefile.am:
15009 * gst-libs/gst/net/README:
15010 * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
15011 (gst_netbuffer_class_init), (gst_netbuffer_init),
15012 (gst_netbuffer_finalize), (gst_netbuffer_copy),
15013 (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
15014 (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
15015 (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
15016 * gst-libs/gst/net/gstnetbuffer.h:
15017 Added buffer subclass to store extra to/from addresses for
15018 network sources/sinks.
15020 2005-05-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15022 * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
15023 Don't lock an unassigned variable.
15025 2005-05-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15027 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
15028 Increase buffer for video, decrease buffer for other media types.
15029 * gst/playback/gstplaybin.c: (gen_video_element),
15030 (gen_audio_element):
15031 Change names for debugging purposes.
15033 2005-05-18 Wim Taymans <wim@fluendo.com>
15035 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15036 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15037 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
15038 (gst_ffmpegcsp_chain):
15039 Enable buffer alloc passthrough if the source and dest
15040 formats are the same.
15042 2005-05-17 Wim Taymans <wim@fluendo.com>
15044 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
15045 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
15046 (gst_ogg_demux_chain_unlocked):
15047 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15048 (gst_audio_convert_caps_remove_format_info),
15049 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15050 (gst_audio_convert_fixate), (gst_audio_convert_change_state):
15051 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15052 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15053 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
15054 (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
15055 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
15056 (gst_ffmpegcsp_get_property):
15057 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
15058 (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
15059 (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
15060 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
15061 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
15062 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
15063 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
15064 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
15065 Leak fixes in oggdemux.
15066 Some cleanups in audioconvert.
15067 Make passthrough work along with buffer_alloc etc.
15068 Make buffer_alloc and buffer recycling actually work in
15071 2005-05-17 Thomas Vander Stichele <thomas at apestaart dot org>
15073 * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
15074 make the compiler happy
15076 2005-05-17 Wim Taymans <wim@fluendo.com>
15078 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
15079 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
15080 (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
15081 (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
15082 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
15083 (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
15084 (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
15085 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
15086 (gst_xvimagesink_set_xwindow_id):
15087 * sys/xvimage/xvimagesink.h:
15088 Port xvimagesink to new MiniObject.
15090 2005-05-17 Wim Taymans <wim@fluendo.com>
15092 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
15093 (gst_audiofilter_chain):
15094 * gst-libs/gst/audio/gstaudiosink.c:
15095 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15096 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15097 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15098 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15099 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15100 (gst_audiosink_create_ringbuffer):
15101 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15102 (gst_audio_convert_caps_remove_format_info),
15103 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15104 (gst_audio_convert_fixate), (gst_audio_convert_channels):
15105 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15106 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15107 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15108 Fix passthrough in ffmpegcolorspace.
15109 Fix memset in audiosink on wrong memory.
15111 2005-05-16 David Schleef <ds@schleef.org>
15113 * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
15116 2005-05-16 David Schleef <ds@schleef.org>
15118 Port from GstData to GstMiniObject.
15119 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
15120 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
15121 (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
15122 (gst_ogg_mux_collected):
15123 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
15124 * ext/theora/theoradec.c: (theora_handle_comment_packet),
15125 (theora_handle_data_packet):
15126 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
15127 (theora_set_header_on_caps), (theora_enc_chain):
15128 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
15129 (vorbis_handle_comment_packet):
15130 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
15131 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
15132 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
15133 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
15134 * gst/audioconvert/gstaudioconvert.c:
15135 (gst_audio_convert_get_buffer):
15136 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
15137 * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
15138 (mute_stream), (silence_stream):
15139 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
15140 * gst/volume/gstvolume.c: (volume_transform):
15141 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
15142 (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
15143 (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
15144 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
15145 (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
15146 (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
15147 (gst_ximagesink_buffer_alloc):
15148 * sys/ximage/ximagesink.h:
15150 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15152 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15153 (fill_buffer), (check_queue), (queue_threshold_reached),
15154 (queue_out_of_data):
15155 * gst/playback/gstplaybasebin.h:
15156 Post buffer-fullness on the bus.
15158 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15160 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
15162 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15163 (group_commit), (probe_triggered), (setup_source),
15164 (gst_play_base_bin_change_state):
15165 * gst/playback/gstplaybasebin.h:
15166 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15167 (gst_play_bin_init), (remove_sinks), (setup_sinks),
15168 (gst_play_bin_change_state):
15169 Move setup_output_pads into a virtual function, remove
15170 group-switch (no longer needed) and redirect (handled by bus
15173 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15175 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
15176 (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
15177 (get_active_group), (get_building_group), (group_destroy),
15178 (group_commit), (check_queue), (queue_overrun),
15179 (queue_threshold_reached), (queue_out_of_data),
15180 (gen_preroll_element), (remove_groups), (unknown_type),
15181 (add_element_stream), (no_more_pads), (probe_triggered),
15182 (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
15183 (setup_substreams), (setup_source), (finish_source),
15184 (prepare_output), (muted_group_change_state),
15185 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
15186 (gst_play_base_bin_change_state):
15187 * gst/playback/gstplaybasebin.h:
15188 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15189 (gst_play_bin_init), (gst_play_bin_set_property),
15190 (gen_video_element), (gen_text_element), (gen_audio_element),
15191 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
15192 (gst_play_bin_change_state):
15193 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
15194 (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
15195 (stream_info_change_state), (gst_stream_info_set_mute),
15196 (gst_stream_info_get_property):
15197 * gst/playback/gststreaminfo.h:
15198 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
15199 (gst_stream_selector_get_linked_pad),
15200 (gst_stream_selector_getcaps),
15201 (gst_stream_selector_get_linked_pads),
15202 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
15203 * gst/playback/gststreamselector.h:
15204 Rough port of playbin. Needs some more work, but is mostly done,
15205 and uses a few locks in important places, which should make stuff
15206 like chain-switches clean. Still uses GST_STATE() in a few places,
15207 which isn't all that good an idea, subtitles/elements disabled
15208 because no elements to test with and thus probably broken, query
15209 and event handling moved to GstBin, internal thread removed
15210 alltogether because the pipeline does that for us now. Can play
15211 Ogg/Vorbis files. Haven't tested anything else yet.
15213 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15215 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
15216 Do no-more-pads (needed for autoplugging).
15218 2005-05-10 Andy Wingo <wingo@pobox.com>
15220 * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
15221 message to the bus with the tags. Still not sent downstream tho.
15223 * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
15225 (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
15226 avoid refcounting hassles.
15228 2005-05-09 Andy Wingo <wingo@pobox.com>
15230 * gst/volume/Makefile.am:
15231 * gst/volume/demo.c
15232 * gst/volume/gstvolume.h
15233 * gst/volume/gstvolume.c: Port to 0.9 API, derive from
15234 basetransform. Probably need an audio filter base class.
15236 2005-05-09 Wim Taymans <wim@fluendo.com>
15238 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
15239 (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
15240 (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
15241 (gst_vorbisenc_chain):
15242 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15243 (gst_audio_convert_caps_remove_format_info),
15244 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15245 (gst_audio_convert_fixate), (gst_audio_convert_channels):
15246 Make caps writable before writing to it.
15247 Fix negotiation in audioconvert some more.
15249 2005-05-09 Wim Taymans <wim@fluendo.com>
15251 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
15252 (gst_videorate_getcaps), (gst_videorate_setcaps),
15253 (gst_videorate_event), (gst_videorate_chain):
15254 Better negotiation.
15256 2005-05-09 Wim Taymans <wim@fluendo.com>
15258 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
15259 (gst_videorate_getcaps), (gst_videorate_setcaps),
15260 (gst_videorate_blank_data), (gst_videorate_init),
15261 (gst_videorate_event), (gst_videorate_chain),
15262 (gst_videorate_change_state):
15263 Port videorate, do a better job at negotiation while we're at
15266 2005-05-09 Jan Schmidt <thaytan@mad.scientist.com>
15271 * examples/Makefile.am:
15272 * gst-libs/gst/audio/Makefile.am:
15273 * gst-libs/gst/riff/Makefile.am:
15274 * gst-libs/gst/tag/Makefile.am:
15275 * gst-libs/gst/video/Makefile.am:
15276 Fixups for missing variables.
15278 2005-05-09 Wim Taymans <wim@fluendo.com>
15280 * examples/seeking/seek.c: (make_theora_pipeline),
15281 (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
15282 (query_rates), (query_positions_elems), (query_positions_pads),
15283 (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
15284 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
15285 (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
15286 (gst_ogg_pad_typefind), (gst_ogg_demux_init),
15287 (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
15288 (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
15289 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15290 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
15291 (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
15292 (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
15293 (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
15294 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
15295 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
15296 (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
15297 * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
15298 (theora_dec_src_convert), (theora_dec_sink_convert),
15299 (theora_dec_src_query), (theora_dec_sink_query),
15300 (theora_dec_src_event), (theora_dec_sink_event),
15301 (theora_handle_comment_packet), (theora_handle_type_packet),
15302 (theora_handle_header_packet), (theora_handle_data_packet),
15303 (theora_dec_chain):
15304 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
15305 (vorbis_dec_convert), (vorbis_dec_src_query),
15306 (vorbis_dec_sink_query), (vorbis_dec_src_event),
15307 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15308 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15309 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
15310 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
15311 (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
15312 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
15313 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15314 (gst_play_bin_query):
15315 * gst/playback/test3.c: (update_scale):
15316 * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
15317 (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
15318 * gst/subparse/gstsubparse.c: (gst_subparse_init):
15319 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
15320 (gst_videotestsrc_src_query):
15321 * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
15322 (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
15323 (paint_hline_YUV9):
15324 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
15325 Port to new query API.
15327 Cleanups in x[v]imagesink
15329 2005-05-09 Andy Wingo <wingo@pobox.com>
15331 * ext/alsa/gstalsasink.h:
15332 * ext/gnomevfs/gstgnomevfssrc.c:
15333 (gst_gnomevfssrc_get_icy_metadata):
15334 * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
15335 (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
15336 * ext/theora/theoradec.c (theora_dec_src_query)
15337 (theora_dec_src_event, theora_dec_sink_event)
15338 (theora_handle_comment_packet, theora_handle_data_packet):
15339 * ext/theora/theoraenc.c (theora_enc_chain):
15340 * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
15341 (vorbis_dec_sink_event, vorbis_handle_comment_packet):
15342 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
15343 * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
15345 * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
15346 (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
15347 (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
15348 (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
15349 (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
15350 (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
15351 (paint_setup_xBGR8888, paint_setup_RGBx8888)
15352 (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
15353 (paint_setup_RGB565, paint_setup_xRGB1555):
15354 * gst/videotestsrc/videotestsrc.h:
15355 * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
15356 * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
15357 (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
15360 * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
15361 gst_pad_query_position. Fixes oggdemux.
15363 2005-05-08 David Schleef <ds@schleef.org>
15365 * configure.ac: Require liboil.
15366 * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
15368 * gst/videotestsrc/videotestsrc.c:
15369 * gst/videotestsrc/videotestsrc.h:
15371 2005-05-06 Wim Taymans <wim@fluendo.com>
15373 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15374 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15375 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15376 Well, unreffing a buffer right before pushing it is asking
15379 2005-05-06 Christian Schaller <uraeus@gnome.org>
15381 * pkgconfig/gstreamer-libs.pc.in: add missing library calls
15383 2005-05-06 Wim Taymans <wim@fluendo.com>
15385 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15386 (gst_audio_convert_caps_remove_format_info),
15387 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15388 (gst_audio_convert_fixate), (gst_audio_convert_channels):
15389 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15390 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15391 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15392 * gst/sine/Makefile.am:
15393 * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
15394 (gst_sinesrc_class_init), (gst_sinesrc_init),
15395 (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
15396 (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
15397 (gst_sinesrc_update_freq):
15398 * gst/sine/gstsinesrc.h:
15399 * gst/tcp/gstmultifdsink.c:
15400 * sys/xvimage/xvimagesink.c:
15401 Fixed negotiation wrt _peer_get_caps()
15405 2005-05-06 Wim Taymans <wim@fluendo.com>
15407 * gst-libs/gst/audio/gstaudiosink.c:
15408 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15409 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15410 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15411 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15412 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15413 (gst_audiosink_create_ringbuffer):
15414 * gst-libs/gst/audio/gstbaseaudiosink.c:
15415 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15416 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15417 (gst_baseaudiosink_set_property), (build_linear_format),
15418 (debug_spec_caps), (debug_spec_buffer),
15419 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15420 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15421 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15422 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15423 * gst-libs/gst/audio/gstbaseaudiosink.h:
15424 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15425 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15426 (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
15427 (gst_ringbuffer_play), (gst_ringbuffer_pause),
15428 (gst_ringbuffer_stop), (gst_ringbuffer_delay),
15429 (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
15430 (wait_segment), (gst_ringbuffer_commit),
15431 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
15432 (gst_ringbuffer_clear):
15433 * gst-libs/gst/audio/gstringbuffer.h:
15434 Make the base audiosink return an error when there is no
15435 audiobuffer negotiated.
15437 2005-05-06 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15440 Disable cdparanoia until someone ports it!
15442 2005-05-06 Wim Taymans <wim@fluendo.com>
15444 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15445 (gst_ogg_demux_sink_activate):
15446 And revert after wingo's revert.. sigh..
15448 2005-05-05 Andy Wingo <wingo@pobox.com>
15450 * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
15452 * configure.ac: Return audiorate and subparse from the ghetto.
15453 Re-enable -Wall -Werror.
15454 * gst/subparse/gstsubparse.c:
15455 * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
15456 or chain-based. Cleaned up a bit. Not tested.
15458 2005-05-05 Christian Schaller <christian@fluendo.com>
15460 * Makefile.am: remove stuff that is not building
15461 * configure.ac: remove stuff that is not building
15462 * examples/Makefile.am: remove stuff that is not building
15463 * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
15464 * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
15465 * sys/Makefile.am: remove stuff that is not building
15466 * testsuite/Makefile.am: remove stuff that is not building
15468 2005-05-05 Andy Wingo <wingo@pobox.com>
15470 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
15471 * gst-libs/gst/tag/gstvorbistag.c:
15472 (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
15473 * gst/adder/gstadder.h:
15474 * gst/audioconvert/gstchannelmix.c:
15475 (gst_audio_convert_fill_one_other):
15476 * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
15477 (gst_audiorate_init), (gst_audiorate_chain):
15478 * gst/playback/gstplaybasebin.c: (setup_source):
15479 * gst/playback/test3.c: (update_scale):
15497 2005-05-05 Wim Taymans <wim@fluendo.com>
15499 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15500 (gst_audio_convert_caps_remove_format_info),
15501 (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
15502 (gst_audio_convert_change_state), (gst_audio_convert_channels):
15503 * gst/videotestsrc/gstvideotestsrc.c:
15504 (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
15505 (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
15506 (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
15507 (gst_videotestsrc_init), (gst_videotestsrc_loop):
15508 Don't ignore _push() return values.
15509 Make sure no processing is done when shutting down.
15510 Videotestsrc pad activation fix.
15512 2005-05-05 Wim Taymans <wim@fluendo.com>
15514 * gst/adder/Makefile.am:
15515 * gst/adder/gstadder.c: (gst_adder_setcaps),
15516 (gst_adder_class_init), (gst_adder_init),
15517 (gst_adder_request_new_pad), (gst_adder_collected),
15518 (gst_adder_change_state):
15519 * gst/adder/gstadder.h:
15520 Ported adder as an example of a mixer element using
15521 collect pads. Needs more negotiation work.
15523 2005-05-05 Wim Taymans <wim@fluendo.com>
15525 * ext/theora/theoradec.c: (_inc_granulepos),
15526 (theora_dec_src_event), (theora_dec_sink_event),
15527 (theora_handle_comment_packet), (theora_handle_type_packet),
15528 (theora_handle_header_packet), (theora_handle_data_packet),
15529 (theora_dec_chain):
15530 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
15531 (gst_theora_enc_init), (theora_enc_sink_setcaps),
15532 (theora_push_buffer), (theora_push_packet),
15533 (theora_enc_sink_event), (theora_enc_chain),
15534 (theora_enc_change_state), (theora_enc_set_property),
15535 (theora_enc_get_property):
15536 Added stream lock to decoder so that we can serialize
15538 More theoraenc porting, recover from errors, do clean
15541 2005-05-05 Wim Taymans <wim@fluendo.com>
15543 * ext/ogg/Makefile.am:
15545 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15546 (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
15548 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15549 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
15550 (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
15551 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
15552 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
15553 (gst_ogg_mux_change_state):
15556 2005-05-05 Wim Taymans <wim@fluendo.com>
15558 * docs/design-audiosinks.txt:
15559 * gst-libs/gst/audio/TODO:
15560 * gst-libs/gst/audio/gstaudiosink.c:
15561 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15562 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15563 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15564 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15565 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15566 (gst_audiosink_create_ringbuffer):
15567 * gst-libs/gst/audio/gstbaseaudiosink.c:
15568 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15569 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15570 (gst_baseaudiosink_set_property), (build_linear_format),
15571 (debug_spec_caps), (debug_spec_buffer),
15572 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15573 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15574 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15575 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15576 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15577 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15578 (gst_ringbuffer_release), (gst_ringbuffer_play),
15579 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15580 (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15581 (gst_ringbuffer_set_sample), (wait_segment),
15582 (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15583 (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15584 More work on the audiosink, mostly debugging and a race in
15587 2005-04-28 Wim Taymans <wim@fluendo.com>
15589 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15590 (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
15591 * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
15592 (vorbis_dec_src_query), (vorbis_dec_src_event),
15593 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15594 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15595 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
15596 Don't crap out when seeking back to position 0.
15598 2005-04-28 Wim Taymans <wim@fluendo.com>
15600 * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
15601 (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
15602 (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
15603 (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
15604 (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
15605 Make audio sink configurable, use alsasink as default.
15607 2005-04-28 Wim Taymans <wim@fluendo.com>
15609 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15610 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15611 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15612 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
15613 (vorbis_dec_change_state):
15614 * ext/vorbis/vorbisdec.h:
15615 Refactor, use STREAM_LOCK.
15617 2005-04-28 Wim Taymans <wim@fluendo.com>
15619 * ext/theora/theoradec.c: (_inc_granulepos),
15620 (theora_dec_sink_event), (theora_handle_comment_packet),
15621 (theora_handle_type_packet), (theora_handle_header_packet),
15622 (theora_handle_data_packet), (theora_dec_chain),
15623 (theora_dec_change_state):
15624 Refactor a bit, use STREAM_LOCK.
15626 2005-04-28 Wim Taymans <wim@fluendo.com>
15628 * ext/alsa/Makefile.am:
15629 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
15630 (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
15631 (gst_alsa_link), (gst_alsa_close_audio):
15632 * ext/alsa/gstalsaplugin.c: (plugin_init):
15633 * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
15634 (gst_alsasink_dispose), (gst_alsasink_base_init),
15635 (gst_alsasink_class_init), (gst_alsasink_init),
15636 (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
15637 (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
15638 (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
15639 (gst_alsasink_reset):
15640 * ext/alsa/gstalsasink.h:
15641 Implement alsasink with simple open/write/close API.
15642 Make alsa dir build by disabling compilation of code.
15644 2005-04-28 Wim Taymans <wim@fluendo.com>
15646 * gst-libs/gst/audio/Makefile.am:
15647 * gst-libs/gst/audio/audio.h:
15648 * gst-libs/gst/audio/audioclock.c:
15649 * gst-libs/gst/audio/audioclock.h:
15650 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
15651 (gst_audio_clock_class_init), (gst_audio_clock_init),
15652 (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
15653 * gst-libs/gst/audio/gstaudioclock.h:
15654 * gst-libs/gst/audio/gstaudiosink.c:
15655 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15656 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15657 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15658 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15659 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15660 (gst_audiosink_create_ringbuffer):
15661 * gst-libs/gst/audio/gstbaseaudiosink.c:
15662 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15663 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15664 (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
15665 (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
15666 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15667 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15668 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15669 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15670 * gst-libs/gst/audio/gstbaseaudiosink.h:
15671 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15672 (gst_ringbuffer_init), (gst_ringbuffer_finalize),
15673 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15674 (gst_ringbuffer_release), (gst_ringbuffer_play),
15675 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15676 (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15677 (gst_ringbuffer_set_sample), (wait_segment),
15678 (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15679 (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15680 * gst-libs/gst/audio/gstringbuffer.h:
15681 Make ringbuffer faster and more simple by removing the locks
15682 in the playback thread.
15683 Add sample accurate playback based on buffer sample offsets.
15684 Make the baseaudiosink provide a clock.
15685 Parse caps in the base class.
15686 Correctly handle seeking, flushing and state changes.
15688 2005-04-25 Thomas Vander Stichele <thomas at apestaart dot org>
15691 * gst/audioconvert/Makefile.am:
15692 * gst/audioscale/Makefile.am:
15693 Fix part of the build. Come on guys, autogen didn't even work :)
15695 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15698 * gst-libs/gst/Makefile.am:
15699 * gst-libs/gst/media-info/.cvsignore:
15700 * gst-libs/gst/media-info/Makefile.am:
15701 * gst-libs/gst/media-info/README:
15702 * gst-libs/gst/media-info/media-info-priv.c:
15703 * gst-libs/gst/media-info/media-info-priv.h:
15704 * gst-libs/gst/media-info/media-info-test.c:
15705 * gst-libs/gst/media-info/media-info.c:
15706 * gst-libs/gst/media-info/media-info.h:
15707 * gst-libs/gst/media-info/media-info.vcproj:
15708 * pkgconfig/Makefile.am:
15709 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
15710 * pkgconfig/gstreamer-media-info.pc.in:
15711 Remove media-info, which is also successed by playbin (see Totem
15714 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15717 * examples/Makefile.am:
15718 * examples/gstplay/.cvsignore:
15719 * examples/gstplay/Makefile.am:
15720 * examples/gstplay/player.c:
15721 * gst-libs/gst/Makefile.am:
15722 * gst-libs/gst/play/.cvsignore:
15723 * gst-libs/gst/play/Makefile.am:
15724 * gst-libs/gst/play/play.c:
15725 * gst-libs/gst/play/play.h:
15726 * gst-libs/gst/play/play.vcproj:
15727 * pkgconfig/Makefile.am:
15728 * pkgconfig/gstreamer-play-uninstalled.pc.in:
15729 * pkgconfig/gstreamer-play.pc.in:
15730 Remove libgstplay, playbin is now the official successor.
15732 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15735 * gst-libs/gst/Makefile.am:
15736 * gst-libs/gst/xwindowlistener/Makefile.am:
15737 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
15738 * gst-libs/gst/xwindowlistener/xwindowlistener.h:
15739 Remove deprecated xwindowlistener (I've moved xwindowlistening
15740 in the v4l/v4l2 plugins over to serverside).
15742 2005-04-25 David Schleef <ds@schleef.org>
15744 * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
15745 to examples/dynparams. Examples do not belong interspersed with
15747 * examples/dynparams/demo-dparams.c:
15748 * gst/sine/Makefile.am:
15749 * gst/sine/demo-dparams.c:
15751 2005-04-25 David Schleef <ds@schleef.org>
15753 Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
15754 * gst-libs/gst/audio/Makefile.am:
15755 * gst-libs/gst/riff/Makefile.am:
15756 * gst-libs/gst/tag/Makefile.am:
15757 * gst-libs/gst/video/Makefile.am:
15758 * gst-libs/gst/xwindowlistener/Makefile.am:
15760 Convert to 0.9 API, seems to work:
15761 * sys/ximage/Makefile.am:
15762 * sys/ximage/ximagesink.c:
15764 2005-04-24 David Schleef <ds@schleef.org>
15766 Link plugins against libraries:
15767 * ext/alsa/Makefile.am:
15768 * gst/tcp/Makefile.am:
15770 Remove asm code that should be in liboil
15771 * gst/videoscale/Makefile.am:
15772 * gst/videoscale/videoscale_x86_asm.s:
15774 gettext wants these checked in:
15790 2005-04-24 David Schleef <ds@schleef.org>
15792 Convert gst_main() to g_main_loop_run()
15793 * gst/playback/decodetest.c: (main):
15794 * gst/playback/test2.c: (main):
15795 * gst/playback/test3.c: (main):
15796 * gst/playback/test4.c: (main):
15798 Link plugins against libraries:
15799 * ext/libvisual/Makefile.am:
15800 * sys/xvimage/Makefile.am:
15802 2005-04-24 David Schleef <ds@schleef.org>
15804 * configure.ac: Remove idct and resample libs
15805 * gst-libs/gst/Makefile.am: same
15807 Remove usage of gst_library_load():
15808 * ext/alsa/gstalsaplugin.c: (plugin_init):
15809 * ext/libvisual/visual.c: (plugin_init):
15810 * ext/ogg/gstogg.c: (plugin_init):
15811 * ext/theora/theora.c: (plugin_init):
15812 * ext/vorbis/vorbis.c: (plugin_init):
15813 * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
15814 * gst/audioscale/gstaudioscale.c:
15815 * gst/adder/gstadder.c: (plugin_init):
15816 * gst/audioconvert/plugin.c: (plugin_init):
15817 * sys/ximage/ximagesink.c: (plugin_init):
15818 * sys/xvimage/xvimagesink.c: (plugin_init):
15819 * gst/tcp/gsttcpplugin.c: (plugin_init):
15821 Link plugins against libraries:
15822 * ext/ogg/Makefile.am:
15823 * ext/theora/Makefile.am:
15824 * ext/vorbis/Makefile.am:
15825 * gst/audioconvert/Makefile.am:
15827 Create proper libraries:
15828 * gst-libs/gst/riff/Makefile.am:
15829 * gst-libs/gst/audio/Makefile.am:
15830 * gst-libs/gst/video/Makefile.am:
15832 Move resample library to audioscale plugin directory:
15833 * gst-libs/gst/resample/Makefile.am:
15834 * gst-libs/gst/resample/README:
15835 * gst-libs/gst/resample/dtof.c:
15836 * gst-libs/gst/resample/dtos.c:
15837 * gst-libs/gst/resample/functable.c:
15838 * gst-libs/gst/resample/private.h:
15839 * gst-libs/gst/resample/resample.c:
15840 * gst-libs/gst/resample/resample.h:
15841 * gst-libs/gst/resample/resample.vcproj:
15842 * gst-libs/gst/resample/test.c:
15843 * gst/audioscale/Makefile.am:
15844 * gst/audioscale/README:
15845 * gst/audioscale/dtof.c:
15846 * gst/audioscale/dtos.c:
15847 * gst/audioscale/functable.c:
15848 * gst/audioscale/private.h:
15849 * gst/audioscale/resample.c:
15850 * gst/audioscale/resample.h:
15851 * gst/audioscale/test.c:
15853 Move tagedit library to gst-libs:
15854 * gst-libs/gst/tag/Makefile.am:
15855 * gst-libs/gst/tag/gstid3tag.c:
15856 * gst-libs/gst/tag/gsttagediting.c:
15857 * gst-libs/gst/tag/gsttageditingprivate.h:
15858 * gst-libs/gst/tag/gstvorbistag.c:
15859 * gst/tags/Makefile.am:
15860 * gst/tags/gstid3tag.c:
15861 * gst/tags/gstvorbistag.c:
15863 Fix for core changes:
15864 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
15865 (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
15866 (gst_sinesrc_getrange):
15868 2005-04-23 David Schleef <ds@schleef.org>
15870 * gst-libs/gst/Makefile.am: Remove idct. It hasn't been used
15871 in gst-plugins in a long time, and properly belongs in liboil.
15872 * gst-libs/gst/idct/Makefile.am:
15873 * gst-libs/gst/idct/README:
15874 * gst-libs/gst/idct/dct.h:
15875 * gst-libs/gst/idct/doieee:
15876 * gst-libs/gst/idct/fastintidct.c:
15877 * gst-libs/gst/idct/floatidct.c:
15878 * gst-libs/gst/idct/idct.c:
15879 * gst-libs/gst/idct/idct.h:
15880 * gst-libs/gst/idct/idtc.vcproj:
15881 * gst-libs/gst/idct/ieeetest.c:
15882 * gst-libs/gst/idct/intidct.c:
15884 2005-04-20 Wim Taymans <wim@fluendo.com>
15886 * docs/design-audiosinks.txt:
15887 * gst-libs/gst/audio/Makefile.am:
15888 * gst-libs/gst/audio/TODO:
15889 * gst-libs/gst/audio/gstaudiosink.c:
15890 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15891 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15892 (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
15893 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15894 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15895 (gst_audioringbuffer_delay), (gst_audiosink_base_init),
15896 (gst_audiosink_class_init), (gst_audiosink_init),
15897 (gst_audiosink_create_ringbuffer):
15898 * gst-libs/gst/audio/gstaudiosink.h:
15899 * gst-libs/gst/audio/gstbaseaudiosink.c:
15900 (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
15901 (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
15902 (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
15903 (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
15904 (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
15905 (gst_baseaudiosink_create_ringbuffer),
15906 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15907 * gst-libs/gst/audio/gstbaseaudiosink.h:
15908 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15909 (gst_ringbuffer_class_init), (gst_ringbuffer_init),
15910 (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
15911 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15912 (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
15913 (gst_ringbuffer_play), (gst_ringbuffer_pause),
15914 (gst_ringbuffer_resume), (gst_ringbuffer_stop),
15915 (gst_ringbuffer_callback), (gst_ringbuffer_delay),
15916 (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
15917 (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
15918 * gst-libs/gst/audio/gstringbuffer.h:
15919 An attempt at a set of audio base classes together with some
15922 2005-04-20 Wim Taymans <wim@fluendo.com>
15924 * gst/audioconvert/Makefile.am:
15925 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15926 (gst_audio_convert_caps_remove_format_info),
15927 (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
15928 (gst_audio_convert_channels):
15929 Link against audio libs.
15930 Fix audio convert plugin.
15932 2005-04-20 Wim Taymans <wim@fluendo.com>
15934 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
15935 (gst_ogg_demux_sink_activate):
15936 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
15937 (theora_set_header_on_caps), (theora_enc_sink_event),
15938 (theora_enc_chain):
15939 Fix theora encoder.
15941 2005-04-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15943 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
15944 * gst/playback/gstdecodebin.c: (find_compatibles):
15945 Work with staticpadtemplates in elementfactories.
15947 2005-04-12 Wim Taymans <wim@fluendo.com>
15949 * gst/playback/README:
15950 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
15951 (compare_ranks), (print_feature), (gst_decode_bin_init),
15952 (dynamic_create), (dynamic_free), (find_compatibles),
15953 (mimetype_is_raw), (close_pad_link), (got_redirect),
15954 (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
15955 (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
15956 (gst_decode_bin_change_state):
15957 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15958 (gst_play_base_bin_init), (group_destroy), (group_commit),
15959 (check_queue), (queue_overrun), (queue_threshold_reached),
15960 (queue_out_of_data), (gen_preroll_element), (unknown_type),
15961 (new_decoded_pad), (setup_subtitle), (gen_source_element),
15962 (got_redirect), (setup_source), (play_base_eos),
15963 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
15964 (gst_play_base_bin_remove_element):
15965 * gst/playback/gstplaybasebin.h:
15966 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15967 (gst_play_bin_init), (gst_play_bin_dispose),
15968 (gst_play_bin_set_property), (gen_video_element),
15969 (gen_text_element), (gen_audio_element), (remove_sinks),
15970 (gst_play_bin_send_event):
15971 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
15972 (stream_info_change_state), (gst_stream_info_set_mute):
15973 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
15974 (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
15975 (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
15976 (gst_stream_selector_chain):
15977 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
15979 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
15980 (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
15981 (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
15982 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
15983 Raw and crude port of decodebin.
15984 Make playbin compile.
15986 2005-04-06 Wim Taymans <wim@fluendo.com>
15988 * ext/gnomevfs/Makefile.am:
15989 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
15990 (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
15991 (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
15992 (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
15993 (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
15994 (gst_gnomevfssrc_stop):
15995 * ext/ogg/Makefile.am:
15996 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
15997 (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
15998 * ext/theora/Makefile.am:
15999 * ext/theora/theoradec.c: (_inc_granulepos),
16000 (theora_dec_sink_event), (theora_dec_chain):
16001 * ext/vorbis/Makefile.am:
16002 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
16003 (vorbis_dec_sink_event), (vorbis_dec_chain):
16004 * gst-libs/gst/audio/Makefile.am:
16005 * sys/xvimage/Makefile.am:
16006 Make gnomevfssrc extend the source base class.
16007 Fix linking against libs in various plugins.
16009 2005-04-06 Andy Wingo <wingo@pobox.com>
16011 * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
16014 * configure.ac: Add check and AC_SUBST for libgstbase.
16016 2005-03-31 Wim Taymans <wim@fluendo.com>
16018 * examples/seeking/Makefile.am:
16019 * examples/seeking/cdparanoia.c: (main):
16020 * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
16021 (play_cb), (pause_cb), (stop_cb), (main):
16022 * examples/seeking/playbin.c:
16023 * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
16024 (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
16025 (make_sid_pipeline), (make_vorbis_pipeline),
16026 (make_theora_pipeline), (make_vorbis_theora_pipeline),
16027 (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
16028 (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
16029 (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
16030 (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
16032 * examples/seeking/spider_seek.c:
16033 * examples/seeking/vorbisfile.c:
16034 * ext/gnomevfs/Makefile.am:
16035 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
16036 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
16037 (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
16038 (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
16039 (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
16040 (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
16041 (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
16042 (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
16044 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
16045 (gst_ogg_pad_class_init), (gst_ogg_pad_init),
16046 (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
16047 (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
16048 (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
16049 (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
16050 (gst_ogg_pad_event), (gst_ogg_pad_reset),
16051 (gst_ogg_demux_factory_filter), (compare_ranks),
16052 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
16053 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
16054 (gst_ogg_chain_new), (gst_ogg_chain_free),
16055 (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
16056 (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
16057 (gst_ogg_demux_class_init), (gst_ogg_demux_init),
16058 (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
16059 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
16060 (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
16061 (gst_ogg_demux_get_prev_page),
16062 (gst_ogg_demux_deactivate_current_chain),
16063 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
16064 (gst_ogg_demux_bisect_forward_serialno),
16065 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
16066 (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
16067 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
16068 (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
16069 (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
16070 (gst_ogg_demux_change_state), (gst_ogg_print):
16071 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
16072 (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
16073 (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
16074 (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
16075 (gst_ogg_mux_loop):
16076 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
16077 * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
16078 (theora_dec_src_convert), (theora_dec_sink_convert),
16079 (theora_dec_src_query), (theora_dec_src_event),
16080 (theora_dec_sink_event), (theora_dec_chain),
16081 (theora_dec_change_state):
16082 * ext/theora/theoraenc.c: (gst_theora_enc_init),
16083 (theora_enc_sink_setcaps), (theora_buffer_from_packet),
16084 (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
16085 (theora_enc_change_state):
16086 * ext/vorbis/Makefile.am:
16087 * ext/vorbis/oggvorbisenc.c:
16088 * ext/vorbis/oggvorbisenc.h:
16089 * ext/vorbis/vorbis.c: (plugin_init):
16090 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
16091 (vorbis_dec_src_query), (vorbis_dec_src_event),
16092 (vorbis_dec_sink_event), (vorbis_dec_chain),
16093 (vorbis_dec_change_state):
16094 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
16095 (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
16096 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
16097 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
16098 (gst_vorbisenc_change_state):
16099 * ext/vorbis/vorbisenc.h:
16100 * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
16101 * gst-libs/gst/audio/audioclock.c:
16102 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
16103 (gst_audiofilter_init), (gst_audiofilter_chain):
16104 * gst-libs/gst/audio/testchannels.c: (main):
16105 * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
16106 * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
16107 (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
16108 (gmip_find_track_streaminfo), (gmip_find_track_format):
16109 * gst-libs/gst/media-info/media-info.c:
16110 (gst_media_info_read_idler):
16111 * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
16112 (gst_play_get_all_by_interface):
16113 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
16114 (gst_riff_parse_chunk), (gst_riff_parse_file_header),
16115 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
16116 (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
16117 (gst_riff_parse_info):
16118 * gst-libs/gst/riff/riff-read.h:
16119 * gst-libs/gst/riff/riff.c: (plugin_init):
16120 * gst-libs/gst/video/Makefile.am:
16121 * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
16122 (gst_videosink_class_init), (gst_videosink_get_type):
16123 * gst-libs/gst/video/videosink.h:
16124 * gst/audioconvert/bufferframesconvert.c:
16125 (buffer_frames_convert_init), (buffer_frames_convert_fixate),
16126 (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
16127 * gst/audioconvert/channelmixtest.c: (main):
16128 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
16129 (gst_audio_convert_chain),
16130 (gst_audio_convert_caps_remove_format_info),
16131 (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
16132 (gst_audio_convert_setcaps), (_fixate_caps_to_int),
16133 (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
16134 (gst_audio_convert_buffer_to_default_format),
16135 (gst_audio_convert_buffer_from_default_format),
16136 (gst_audio_convert_channels):
16137 * gst/audioconvert/gstchannelmix.h:
16138 * gst/ffmpegcolorspace/avcodec.h:
16139 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16140 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
16141 (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
16142 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
16143 * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
16144 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
16145 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
16146 (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
16147 (mpeg_video_type_find), (mpeg_video_stream_type_find),
16149 * gst/videotestsrc/gstvideotestsrc.c:
16150 (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
16151 (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
16152 (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
16153 (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
16154 (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
16155 (gst_videotestsrc_init), (gst_videotestsrc_src_query),
16156 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
16157 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
16158 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
16159 (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
16160 (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
16161 (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
16162 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
16163 (gst_xvimagesink_navigation_send_event),
16164 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
16165 (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
16166 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
16167 * sys/xvimage/xvimagesink.h:
16168 Plugin port to 0.9, ogg/theora playback should work in the seek
16170 Removed old examples.
16171 Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
16172 explained in 0.9 TODO doc.
16175 2005-02-23 Thomas Vander Stichele <thomas at apestaart dot org>
16197 * testsuite/Makefile.am:
16198 remove a whole bunch of plugins. This module now contains a set
16199 of free reference plugins/elements as agreed.
16201 2005-02-22 Thomas Vander Stichele <thomas at apestaart dot org>
16204 hunting season on 0.9 is now OPEN
16206 2005-02-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16208 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
16209 Kick the hell out of gcc for not warning me about a symbol conflict.
16211 2005-02-22 Luca Ognibene <luogni@tin.it>
16213 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
16215 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
16216 Don't leak caps string (fixes #168134)
16218 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
16219 (gst_jpegenc_init), (gst_jpegenc_finalize),
16220 (gst_jpegenc_change_state):
16221 Don't leak line buffers and context struct (fixes #168133).
16223 2005-02-21 Tim-Philipp Müller <tim at centricular dot net>
16226 * ext/dirac/gstdiracdec.cc:
16227 (gst_diracdec_chain):
16228 Since dirac 0.5.0 the framerate in dirac is expressed as a
16229 rational number. Fix build and up requirement to 0.5.0, and
16230 also pass parameters to gst_diracdec_link in the right order
16233 2005-02-21 Maciej Katafiasz <mathrick@freedesktop.org>
16235 * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
16236 * ext/faad/gstfaad.h:
16237 TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with
16238 certain invalid muxed streams, where some packets will contain
16239 junk after decoder data. Partially fixes #149158.
16241 2005-02-21 Jan Schmidt <thaytan@mad.scientist.com>
16242 * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
16243 Make sure we only write to writable buffers
16245 2005-02-20 Tim-Philipp Müller <tim at centricular dot net>
16247 * gst-libs/gst/riff/riff-media.c:
16248 (gst_riff_create_audio_caps_with_data):
16249 Do actually fix invalid RIFF fmt header values for alaw
16250 and mulaw audio instead of just saying so.
16252 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
16253 Give gst_riff_create_audio_caps_with_data() a chance to
16254 fix up broken format header fields before extracting any
16255 parameters from the header. (fixes #167633)
16257 2005-02-19 Martin Holters <martin.holters@gmx.de>
16259 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
16261 * gst/audioconvert/bufferframesconvert.c:
16262 (buffer_frames_convert_link):
16263 Don't leak othercaps. (fixes #167878)
16265 2005-02-19 Arwed v. Merkatz <v.merkatz@gmx.net>
16268 * ext/libvisual/visual.c: (gst_visual_srclink),
16269 (gst_visual_change_state):
16270 Support libvisual 0.2.0.
16272 2005-02-18 Tim-Philipp Müller <tim at centricular dot net>
16274 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
16275 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
16276 Use same rowstrides for I420 as used everywhere else.
16278 2005-02-17 Tim-Philipp Müller <tim at centricular dot net>
16280 * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
16281 Declare variables at beginning of block and make gcc-2.95 happy
16282 (fixes # 167482, patch by Gergely Nagy).
16284 * gst/tcp/gsttcpclientsrc.c:
16285 * gst/tcp/gsttcpclientsrc.h:
16286 Move some includes into the header, so that struct sockaddr_in is
16287 defined when it should be defined on FreeBSD as well (fixes
16290 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
16291 Don't pass uninitialised values to setsockopt() here either.
16293 2005-02-17 Luca Ognibene <luogni at tin dot it>
16295 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
16297 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
16298 Don't pass uninitialised values to setsockopt(). (fixes #167704)
16300 2005-02-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16302 * gst/playback/gstplaybin.c: (add_sink):
16303 Invert bin_add/link order to workaround deadlock in opt.
16305 2005-02-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16307 * gst/modplug/gstmodplug.cc:
16308 Add missing break causing position queries to fail.
16310 2005-02-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16312 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
16313 Granpos can apparently be -1, which screws up calculations...
16315 2005-02-16 Jan Schmidt <thaytan@mad.scientist.com>
16317 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
16318 (gst_ximagesink_send_pending_navigation),
16319 (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
16320 (gst_ximagesink_init):
16321 * sys/ximage/ximagesink.h:
16322 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
16323 (gst_xvimagesink_send_pending_navigation),
16324 (gst_xvimagesink_navigation_send_event),
16325 (gst_xvimagesink_finalize), (gst_xvimagesink_init):
16326 * sys/xvimage/xvimagesink.h:
16327 Use a mutex protected list to marshal navigation
16328 events into the stream thread from whichever thread
16331 2005-02-15 Tim-Philipp Müller <tim at centricular dot net>
16333 * gst/speed/demo-mp3.c: (time_tick_cb), (main):
16334 Display current position and track length; misc. clean-ups.
16336 * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
16337 (speed_init), (speed_chain):
16338 Add query function, so that the stream length and current position
16339 get adjusted when queried (note that current position queries may
16340 still be wrong if the audio sink returns values based on buffer
16341 timestamps instead of passing on the query).
16343 2005-02-13 Benjamin Otte <otte@gnome.org>
16345 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
16346 (gst_audio_convert_channels):
16347 create channel conversion matrix when linking
16348 * gst/audioconvert/.cvsignore:
16349 * gst/audioconvert/Makefile.am:
16350 * gst/audioconvert/channelmixtest.c: (main):
16351 add (ugly) test that ensures stereo <=> mono conversion works
16354 2005-02-13 Benjamin Otte <otte@gnome.org>
16356 * gst/audioconvert/gstchannelmix.h:
16357 include missing header file
16358 * gst/audioconvert/gstchannelmix.c:
16359 (gst_audio_convert_fill_compatible):
16360 use same sign for both channels when converting to/from compatible
16361 channel. Previously used different signs made the signals cancel
16362 each other out and appear like silence. (fixes #167269)
16364 2005-02-12 Tim-Philipp Müller <tim at centricular dot net>
16366 * gst/ffmpegcolorspace/avcodec.h:
16367 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16368 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
16369 (gst_ffmpegcsp_avpicture_fill):
16370 * gst/ffmpegcolorspace/imgconvert.c:
16371 Convert to and from YV12 (fixes #156379).
16373 2005-02-12 Julien MOUTTE <julien@moutte.net>
16375 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
16376 (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
16377 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
16378 (gst_ximagesink_expose), (gst_ximagesink_set_property),
16379 (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
16380 methods from chain and negotiation and vice versa (Fixes #166142).
16381 * sys/ximage/ximagesink.h: Add stream_lock.
16382 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
16383 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16384 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
16385 (gst_xvimagesink_expose): Check for xcontext before trying to link.
16387 2005-02-12 Tim-Philipp Müller <tim at centricular dot net>
16389 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
16390 Don't send "Hey! You gave me a NULL pointer you naughty person" as
16391 error message when we can't open the DVD device (when dvdnav_open()
16392 fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
16393 the above). Send something more useful instead (fixes #167117).
16395 2005-02-11 Julien MOUTTE <julien@moutte.net>
16397 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
16398 (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
16399 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16400 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
16401 (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
16402 (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
16403 methods from chain and negotiation and vice versa (Fixes #166142).
16404 Fix a possible bug of images in the buffer pool being discarded because
16405 we are looking at the wrong geometry.
16406 * sys/xvimage/xvimagesink.h: Add stream_lock.
16408 2005-02-11 David Schleef <ds@schleef.org>
16410 * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
16411 unsigned int. (fixes #167128)
16413 2005-02-11 David Schleef <ds@schleef.org>
16415 * gst/librfb/Makefile.am: Testing stuff before committing is
16416 for wimps... and people with fast machines. Fix stupid
16419 2005-02-11 David Schleef <ds@schleef.org>
16421 * configure.ac: Pull in librfb from my CVS tree, because it is
16422 too small and annoying to be separate. Move rfbsrc plugin
16425 * ext/librfb/Makefile.am:
16426 * ext/librfb/gstrfbsrc.c:
16427 * gst/librfb/Makefile.am:
16428 * gst/librfb/gstrfbsrc.c:
16429 * gst/librfb/rfb.c:
16430 * gst/librfb/rfb.h:
16431 * gst/librfb/rfbbuffer.c:
16432 * gst/librfb/rfbbuffer.h:
16433 * gst/librfb/rfbbytestream.c:
16434 * gst/librfb/rfbbytestream.h:
16435 * gst/librfb/rfbcontext.h:
16436 * gst/librfb/rfbdecoder.c:
16437 * gst/librfb/rfbdecoder.h:
16438 * gst/librfb/rfbutil.h:
16440 2005-02-10 Tim-Philipp Müller <tim at centricular dot net>
16442 * gst/speed/Makefile.am:
16443 * gst/speed/demo-mp3.c: (main):
16444 * gst/speed/filter.func:
16445 * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
16446 (speed_class_init), (speed_init), (speed_chain_int16),
16447 (speed_chain_float32), (speed_chain), (speed_set_property),
16448 (speed_get_property), (speed_change_state):
16449 * gst/speed/gstspeed.h:
16450 Fix speed element and make it chain-based (fixes #156467),
16451 and make it handle more than one channel.
16453 2005-02-10 Jan Schmidt <thaytan@mad.scientist.com>
16455 * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
16456 (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
16457 (gst_dtsdec_chain), (gst_dtsdec_change_state):
16458 * ext/dts/gstdtsdec.h:
16459 Don't clobber the stack constructing the channels array.
16460 Make the element chain-based. DTS tracks can now be played.
16462 2005-02-09 Tim-Philipp Müller <tim at centricular dot net>
16464 * gst-libs/gst/audio/multichannel.h:
16465 * gst-libs/gst/gconf/gconf.h:
16466 * gst-libs/gst/idct/idct.h:
16467 * gst-libs/gst/media-info/media-info-priv.h:
16468 * gst-libs/gst/play/play.h:
16469 * gst-libs/gst/resample/private.h:
16470 * gst-libs/gst/resample/resample.h:
16471 * gst-libs/gst/riff/riff-ids.h:
16472 * gst-libs/gst/video/video.h:
16473 * gst-libs/gst/video/videosink.h:
16474 Add G_BEGIN_DECLS and G_END_DECLS around headers where
16475 missing, so that they work when included from C++ code.
16477 2005-02-09 David Schleef <ds@schleef.org>
16479 * testsuite/gst-lint: Check for non-statically scoped
16480 parent_class variables. This won't be a problem once
16481 plugins are loaded with RTLD_LOCAL.
16483 2005-02-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16485 * ext/mplex/gstmplexibitstream.cc:
16488 2005-02-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16490 * ext/ogg/gstogmparse.c:
16491 * gst/debug/gstnavigationtest.c:
16492 Die, thou faulty symbol pollutors (non-static parent_class).
16494 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16496 * ext/mplex/gstmplexibitstream.cc:
16497 Fix event handling (#165525).
16499 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16501 * ext/mikmod/gstmikmod.c:
16502 * gst/modplug/gstmodplug.cc:
16503 Add missing endianness to template (fixes #165509).
16505 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16507 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
16508 Fix wrong order of reading of optional bytes (#165290).
16510 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16512 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
16513 Implement FILLER event awareness.
16515 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16517 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
16518 Fix track calculations (#166208).
16520 2005-02-08 Gergely Nagy <algernon@bonehunter.rulez.org>
16522 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16524 * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
16525 * ext/libpng/gstpngenc.c:
16526 Fix byte-order, use proper fixed caps. Fixes #164197.
16528 2005-02-08 Jan Schmidt <thaytan@mad.scientist.com>
16533 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
16534 (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
16535 Don't push buffers if the src pad isn't negotiated yet.
16537 * gst/audioconvert/gstaudioconvert.c:
16538 (gst_audio_convert_buffer_to_default_format),
16539 (gst_audio_convert_buffer_from_default_format):
16540 Add support for 24-bit width.
16542 * gst/dvdlpcmdec/.cvsignore:
16543 * gst/dvdlpcmdec/Makefile.am:
16544 * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
16545 (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
16546 (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
16547 (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
16549 * gst/dvdlpcmdec/gstdvdlpcmdec.h:
16550 New decoder for rearranging DVD LPCM into our audio/x-raw-int
16551 format. Needs support for the channels maps if someone can find
16552 a DVD LPCM track with > 2 channels.
16554 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
16555 (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
16556 (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
16557 * gst/mpegstream/gstdvddemux.h:
16558 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
16559 (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
16560 (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
16561 * gst/mpegstream/gstmpegdemux.h:
16562 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
16563 (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
16564 (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
16565 (gst_mpeg_parse_handle_src_query),
16566 (gst_mpeg_parse_handle_src_event):
16567 Use audio/x-dvd-lpcm for LPCM output.
16570 2005-02-08 Gergely Nagy <algernon@bonehunter.rulez.org>
16572 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16574 * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
16575 (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
16576 Add BGRA handling (#165736).
16578 2005-02-08 Francis Labonte <francis_labonte@hotmail.com>
16580 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16582 * gst/law/alaw-decode.c: (alawdec_link):
16583 * gst/law/alaw-encode.c: (alawenc_link):
16584 * gst/law/mulaw-decode.c: (mulawdec_link):
16585 * gst/law/mulaw-encode.c: (mulawenc_link):
16586 Fix caps memleaks (#166600).
16588 2005-02-08 Tim-Philipp Müller <tim at centricular dot net>
16590 * ext/tarkin/mem.h:
16591 * ext/tarkin/wavelet.h:
16592 * ext/tarkin/yuv.h:
16593 * gst/ffmpegcolorspace/avcodec.h:
16594 Include "_stdint.h" instead of <stdint.h>. Fixes build on
16595 systems that don't have stdint.h, like Solaris9 (fixes #166631).
16597 2005-02-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16599 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
16600 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
16601 (gst_xvimagesink_change_state):
16602 Clear window on PAUSED->READY instead of READY->PAUSED. Stop
16603 Xv video (and thereby regenerate Xv colourkey) in clear() so
16604 that PLAY -> READY -> PLAY works (fixes #162504).
16606 2005-02-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16608 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
16609 Switch to list instead of range, since MJPEG-devices really just
16610 support decimations, not any size.
16612 2005-02-05 Jan Schmidt <thaytan@mad.scientist.com>
16613 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
16614 (gst_mpeg2dec_reset), (free_all_buffers),
16615 (gst_mpeg2dec_alloc_buffer), (handle_sequence):
16616 * ext/mpeg2dec/gstmpeg2dec.h:
16617 The libmpeg2 user-allocated buffer management is awkward,
16618 to say the least. Hopefully this fixes things.
16620 2005-02-04 Andy Wingo <wingo@pobox.com>
16622 * gst/audioconvert/bufferframesconvert.c
16623 (buffer_frames_convert_fixate): New function, fixates to 256
16624 frames per buffer by default. (Much better than 1.)
16625 (buffer_frames_convert_init): Set the fixate function for both src
16627 (buffer_frames_convert_link): After success setting nonfixed caps,
16628 get the negotiated caps so we can know how many buffer-frames it
16629 will be. No idea how this worked at all before.
16631 2005-02-05 Jan Schmidt <thaytan@mad.scientist.com>
16633 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
16634 (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
16635 (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
16636 (handle_sequence), (handle_picture):
16637 * ext/mpeg2dec/gstmpeg2dec.h:
16638 Rearrange buffer tracking and refcounting and refactor
16639 a little for readability.
16641 2005-02-04 Jan Schmidt <thaytan@mad.scientist.com>
16642 * sys/v4l/gstv4l.c: (plugin_init):
16643 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
16644 (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
16645 (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
16646 (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
16647 * sys/v4l/gstv4ljpegsrc.h:
16648 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
16649 * sys/v4l/v4l_calls.h:
16650 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
16651 (gst_v4lsrc_get_fps):
16652 * sys/v4l/v4lsrc_calls.h:
16653 Add new v4ljpegsrc for handling the ov51x hacky "I'll give
16654 you jpeg inside rgb frames" driver.
16655 Don't error in the v4lsrc link function, just return
16658 2005-02-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16660 * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
16661 (gst_qcamsrc_open):
16662 Use GST_ELEMENT_ERROR, not g_warning, if open failed.
16664 2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16666 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16667 Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
16669 2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16671 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
16672 Reset negotiated state on PAUSED->READY.
16674 2005-02-02 David Schleef <ds@schleef.org>
16676 * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
16677 whereever possible. (Fixes #165997)
16678 * examples/capsfilter/capsfilter1.c: (main):
16679 * examples/dynparams/filter.c: (create_ui):
16680 * examples/seeking/cdparanoia.c: (get_track_info), (main):
16681 * examples/seeking/chained.c: (main):
16682 * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
16683 (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
16684 (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
16685 (make_mpeg_pipeline), (make_mpegnt_pipeline):
16686 * examples/seeking/spider_seek.c: (make_spider_pipeline):
16687 * examples/switch/switcher.c: (main):
16688 * ext/dv/demo-play.c: (main):
16689 * ext/faad/gstfaad.c: (gst_faad_change_state):
16690 * ext/mad/gstmad.c: (gst_mad_chain):
16691 * ext/smoothwave/demo-osssrc.c: (main):
16692 * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
16693 (gst_gconf_render_bin_from_description),
16694 (gst_gconf_get_default_audio_sink),
16695 (gst_gconf_get_default_video_sink),
16696 (gst_gconf_get_default_audio_src),
16697 (gst_gconf_get_default_video_src),
16698 (gst_gconf_get_default_visualization_element):
16699 * gst/level/demo.c: (main):
16700 * gst/level/plot.c: (main):
16701 * gst/playback/gstplaybin.c: (gen_video_element),
16702 (gen_audio_element):
16703 * gst/playback/test.c: (gen_video_element), (gen_audio_element):
16704 * gst/playondemand/demo-mp3.c: (setup_pipeline):
16705 * gst/sine/demo-dparams.c: (main):
16706 * gst/spectrum/demo-osssrc.c: (main):
16707 * gst/speed/demo-mp3.c: (main):
16708 * gst/volume/demo.c: (main):
16709 * testsuite/embed/embed.c: (main):
16711 2005-02-02 Jan Schmidt <thaytan@mad.scientist.com>
16713 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
16714 (gst_tcpclientsink_finalize):
16715 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
16716 (gst_tcpclientsrc_finalize):
16717 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
16718 (gst_tcpserversink_init), (gst_tcpserversink_finalize):
16719 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
16720 (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
16721 Don't leak the hostname when shutting down.
16722 In tcpserversrc, take a copy of the default hostname.
16724 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16726 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
16727 Set caps to systemstream=TRUE.
16729 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16731 * testsuite/Makefile.am:
16732 Fix more OSX buildbots.
16734 2005-02-02 Jan Schmidt <thaytan@mad.scientist.com>
16736 * ext/mpeg2dec/gstmpeg2dec.c:
16737 Don't send things to NULL PAD_PEERs
16739 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
16740 Copy-on-write the incoming buffer.
16742 * gst/mpegstream/gstdvddemux.h:
16743 * gst/mpegstream/gstmpegclock.h:
16744 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
16745 (normal_seek), (gst_mpeg_demux_handle_src_event):
16746 * gst/mpegstream/gstmpegdemux.h:
16747 * gst/mpegstream/gstmpegpacketize.h:
16748 * gst/mpegstream/gstmpegparse.c:
16749 (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
16750 (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
16751 (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
16752 (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
16753 (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
16754 * gst/mpegstream/gstmpegparse.h:
16755 * gst/mpegstream/gstrfc2250enc.h:
16756 Various changes to the way time is computed that make seeking and
16757 total time estimation much better here.
16758 Use G_BEGIN/END_DECLS instead of __cplusplus
16760 * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
16761 Use gst_buffer_stamp instead of only copying the TIMESTAMP
16763 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16765 * gst/subparse/gstsubparse.c:
16768 2005-01-31 Tim-Philipp Müller <tim at centricular dot net>
16770 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
16771 (theora_enc_chain), (theora_enc_change_state):
16772 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
16773 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
16774 (gst_vorbisenc_change_state):
16775 * ext/vorbis/vorbisenc.h:
16776 Set granulepos and timestamp correctly for streams not
16777 starting at 0, taking into account the initial delay.
16779 2005-01-31 Tim-Philipp Müller <tim at centricular dot net>
16781 * gst/mpegstream/gstdvddemux.c:
16782 Add audio/x-dts to audio pad template caps
16784 2005-01-30 David Schleef <ds@schleef.org>
16786 * ext/polyp/polypsink.c: (gst_polypsink_base_init),
16787 (create_context), (gst_polypsink_link): Fix silly endianness
16788 bug. Add some debugging. Remove float from caps; it doesn't
16789 work. Attempt to get remote audio working.
16791 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16793 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16796 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16798 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
16799 (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
16800 (gst_avi_demux_stream_data):
16801 * gst/avi/gstavidemux.h:
16802 Invert DIB images. Fixes #132341.
16804 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16806 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16807 (gst_ffmpegcsp_chain):
16808 D'oh, reference the palette data, not the palette structure.
16809 Fixes color distortion in #132341.
16811 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16813 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
16814 PAR can be non-fixed when not provided as argument (#162626).
16816 2005-01-29 David Moore <dcm@acm.org>
16818 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16820 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16821 (gst_qtdemux_loop_header):
16822 Re-apply patch from #142272 that allows non-seekable sources,
16823 re-proposed by Daniel Drake <dsd@gentoo.org>.
16825 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16827 * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
16828 Use the src template for creating the src pad (#162330).
16830 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16833 * ext/musepack/Makefile.am:
16834 * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
16835 (gst_musepackdec_init), (gst_musepackdec_dispose),
16836 (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
16837 (gst_musepack_stream_init), (gst_musepackdec_loop),
16838 (gst_musepackdec_change_state):
16839 * ext/musepack/gstmusepackdec.cpp:
16840 * ext/musepack/gstmusepackdec.h:
16841 * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
16842 (gst_musepack_reader_read), (gst_musepack_reader_seek),
16843 (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
16844 (gst_musepack_reader_canseek), (gst_musepack_init_reader):
16845 * ext/musepack/gstmusepackreader.cpp:
16846 * ext/musepack/gstmusepackreader.h:
16847 Update to 1.1 API (#165446).
16849 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16854 2005-01-28 Andy Wingo <wingo@pobox.com>
16856 * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
16857 to reflect a different dubious internet source. Add a reference
16858 and some commentary.
16860 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16862 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
16863 (gst_stream_selector_get_caps), (gst_stream_selector_chain):
16864 * gst/playback/gststreamselector.h:
16865 Be more selective when we're redoing caps negotiation from
16866 within the chain function on a stream change.
16868 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16872 * ext/amrnb/Makefile.am:
16873 * ext/amrnb/amrnb.c: (plugin_init):
16874 * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
16875 (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
16876 (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
16877 (gst_amrnbdec_state_change):
16878 * ext/amrnb/amrnbdec.h:
16879 * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
16880 (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
16881 (gst_amrnbparse_init), (gst_amrnbparse_formats),
16882 (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
16883 (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
16884 (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
16885 * ext/amrnb/amrnbparse.h:
16886 Add support for AMR-NB (mobile phone audio format; #155163, #163286).
16887 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16888 Add AMR-NB/-WB raw formats.
16889 * ext/alsa/gstalsa.c: (gst_alsa_link):
16890 Keep valid time when changing format.
16891 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
16892 (qtdemux_parse_trak):
16893 Add some more format-specific options (#140141, #143555, #155163).
16895 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16897 * gst/matroska/matroska-demux.c:
16898 (gst_matroska_demux_parse_blockgroup):
16899 Fix logic error in timing of subtitle stream synchronization.
16900 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
16901 Add skip-chunk, which is found in kodak-camera streams.
16903 2005-01-27 Thomas Vander Stichele <thomas at apestaart dot org>
16907 Adding Vietnamese translation (submitted by Clytie Siddall)
16909 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16911 * gst/playback/gstdecodebin.c: (try_to_link_1):
16912 Use realpad for signal.
16914 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16916 * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
16917 Fix category so decodebin picks it up.
16919 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16921 * ext/mad/Makefile.am:
16922 * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
16923 (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
16924 (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
16925 (found_type), (gst_id3demux_bin_change_state):
16926 * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
16927 (gst_id3_tag_init), (gst_id3_tag_handle_event),
16928 (gst_id3_tag_src_link), (gst_id3_tag_chain),
16929 (gst_id3_tag_change_state), (plugin_init):
16930 * ext/mad/gstmad.h:
16931 Add id3demuxbin (which is a simple bin consisting of id3demux
16932 and typefind), take over rank from id3demux, remove typefind
16933 code from id3demux. Makes all broken mp3s that I know of work,
16934 and thereby fixes #152688.
16936 2005-01-27 Edward Hervey <bilboed@bilboed.com>
16938 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16940 * ext/mad/gstmad.c: (gst_mad_src_event):
16941 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
16942 Allow seeks on audio pad, make mad forward those (#164826).
16943 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
16944 Set duration (#165335).
16946 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16948 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
16949 (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
16950 (gst_asf_demux_process_ext_content_desc),
16951 (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
16952 (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
16953 * gst/asfdemux/gstasfdemux.h:
16954 Improve metadata display, e.g. if the metadata comes before the
16955 streams are loaded (which is perfectly valid).
16957 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16959 * tools/gst-launch-ext-m.m:
16960 Fix AVI/ASF pipelines (#165340).
16962 2005-01-26 Amaury Jacquot <sxpert@esitcom.org>
16963 * ext/cairo/gsttextoverlay.c: include string.h and strings.h to fix
16964 build failure on amd64
16966 2005-01-26 Tim-Philipp Müller <tim at centricular dot net>
16968 * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
16969 (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
16970 Check environment variables GST_ID3V2_TAG_ENCODING,
16971 GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
16972 list of character encodings to force interpretation of non-unicode
16973 strings stored in an ID3v2 tag to a particular encoding. If none
16974 is specified, try to use current locale's encoding, then fall back
16975 to ISO-8859-1 (which will always succeed). (Resolves #149274)
16976 * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
16977 (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
16978 Check environment variables GST_ID3V1_TAG_ENCODING,
16979 GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
16980 list of character encodings to use in case a string encountered
16981 in an ID3v1 tag is not valid UTF-8 already. If no encoding is
16982 specified, try to use the current locale's encoding, then fall
16983 back to ISO-8859-1 (which will always succeed).
16985 2005-01-25 Benjamin Otte <otte@gnome.org>
16987 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
16988 - on half framerate, compute the rate in advance so the comparisons
16989 don't compare wrong values
16990 - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
16992 - don't use mad_header_decode anymore, mad_frame_decode does that
16994 - when getting rid of consumed bytes, reset the stream's skiplen
16997 2005-01-26 Jan Schmidt <thaytan@mad.scientist.com>
16999 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
17000 Use 1/2 a second for default max_discont, as PES streams from DVB
17001 seem to have larger spacings in the SCR.
17004 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17006 * gst/playback/gstplaybasebin.c: (group_commit):
17007 Notify delayed stream-info availability.
17009 2005-01-26 Jan Schmidt <thaytan@mad.scientist.com>
17010 * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
17011 (gst_a52dec_handle_event), (gst_a52dec_chain):
17012 Add some debug output. Check that a discont has a valid
17014 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
17015 (gst_alsa_sink_loop):
17016 Ignore TAG events. A little extra debug for broken timestamps.
17017 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
17018 (dvdnavsrc_change_state):
17019 Ensure we send a discont to engage the link before we send any
17021 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
17022 (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
17023 (_seek_chapter), (seek_sector), (dvdreadsrc_get),
17024 (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
17025 Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
17026 dvd://title works in totem because typefinding sends a seek that ends
17027 up going back to chapter 1 regardless.
17028 * ext/mpeg2dec/gstmpeg2dec.c:
17029 * ext/mpeg2dec/gstmpeg2dec.h:
17030 Output correct timestamps and handle disconts.
17031 * ext/ogg/gstoggdemux.c: (get_relative):
17032 Small guard against a null dereference.
17033 * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
17034 (gst_textoverlay_set_property):
17035 Free memory when done. Don't call gst_event_filler_get_duration on
17036 EOS events. Use GST_LOG and GST_WARNING instead of g_message and
17038 * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
17039 (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
17040 (gst_sw_srclink), (gst_smoothwave_chain):
17041 Draw solid lines, prettier colours.
17042 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
17043 Add a default palette that'll work for some movies.
17044 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
17045 (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
17046 (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
17047 * gst/mpegstream/gstdvddemux.h:
17048 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
17049 (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
17050 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
17051 (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
17052 * gst/mpegstream/gstmpegparse.h:
17053 Use PTM/NAV events when for timestamp adjustment when connected to
17054 dvdnavsrc. Don't use many discont events where one suffices.
17055 * gst/playback/gstplaybasebin.c: (group_destroy),
17056 (gen_preroll_element), (gst_play_base_bin_add_element):
17057 * gst/playback/gstplaybasebin.h:
17058 Make sure we remove subtitles from the same bin we put them in.
17059 * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
17060 (gst_subparse_buffer_format_autodetect),
17061 (gst_subparse_change_state):
17062 Fix some memleaks and invalid accesses.
17063 * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
17064 (oggskel_type_find), (cmml_type_find), (plugin_init):
17065 Some typefind functions for Annodex v3.0 files
17066 * gst/wavparse/gstwavparse.h:
17067 GstRiffReadClass is the correct parent class.
17069 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17071 * gst-libs/gst/riff/riff-media.c:
17072 (gst_riff_create_video_caps_with_data):
17073 Add extradata to huffyuv (fixes #165013).
17074 * gst-libs/gst/riff/riff-read.c:
17075 (gst_riff_read_strf_vids_with_data):
17076 Fix extradata extraction if it is in the chunk size.
17078 2005-01-25 Edward Hervey <bilboed@bilboed.com>
17080 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17082 * gst/effectv/gstquark.c: (gst_quarktv_class_init),
17083 (gst_quarktv_change_state), (gst_quarktv_dispose):
17084 Memory free'ing location fix (#164708).
17086 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17088 * gst/playback/gstplaybasebin.c: (group_commit),
17089 (gen_preroll_element), (probe_triggered), (gen_source_element),
17090 (setup_source), (gst_play_base_bin_change_state),
17091 (gst_play_base_bin_add_element):
17092 Don't block for streams.
17093 * gst/playback/gststreaminfo.c: (stream_info_change_state),
17094 (gst_stream_info_set_mute):
17095 Use gst_pad_set_active_recursive.
17097 2005-01-25 Andy Wingo <wingo@pobox.com>
17099 * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
17100 for #ifndef HAVE_XVIDEO.
17102 2005-01-24 Jeffrey C. Ollie
17104 reviewed by: Maciej Katafiasz <mathrick@freedesktop.org>
17106 * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
17107 * ext/gsm/gstgsmdec.h:
17108 * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
17109 * ext/gsm/gstgsmenc.h:
17110 Fix rate to 8kHz as per spec, removes obscure errors when no rate
17111 was given by property. Add proper buffer timestamps and offsets.
17113 2005-01-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17115 * gst-libs/gst/riff/riff-media.c:
17116 (gst_riff_create_audio_caps_with_data):
17117 Audio can be <8000Hz.
17119 2005-01-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17121 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
17122 Explicit state change to workaround refcount bugs.
17124 2005-01-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17126 * gst/avi/gstavimux.c: (gst_avimux_write_tag),
17127 (gst_avimux_riff_get_avi_header):
17130 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17132 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
17133 (gst_riff_read_element_data):
17134 * gst-libs/gst/riff/riff-read.h:
17135 Add _peek version (req'ed in CDXA).
17136 * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
17137 (gst_cdxaparse_loop):
17138 Fix parsing in playbin.
17139 * gst/playback/gstdecodebin.c: (close_pad_link):
17140 Ignore current_ pads, they cause major annoyance.
17142 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17144 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
17147 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17149 * gst/avi/gstavimux.c: (gst_avimux_write_tag):
17152 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17154 * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
17155 Allow for 0-sized buffers. Fixes length query problems in
17156 starwars.mkv from the testsuite.
17158 2005-01-19 Tim-Philipp Müller <tim at centricular dot net>
17160 * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
17161 (gst_video_box_i420), (gst_video_box_chain):
17162 Fix row strides for I420 (fixes #163159)
17164 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17166 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
17167 MPEG2 has a useful rate property, so we can actually use that.
17168 For MPEG-1, continue using the bytes/time properties.
17170 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17172 * gst-libs/gst/riff/riff-media.c:
17173 (gst_riff_create_video_caps_with_data),
17174 (gst_riff_create_video_template_caps):
17177 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17179 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
17180 Fail if caps negotiation fails. Should fix #162184, and should
17181 definately be in there regardless of it fixing the actual bug.
17182 * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
17183 (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
17184 (gst_avimux_riff_get_avix_header),
17185 (gst_avimux_riff_get_video_header),
17186 (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
17187 (gst_avimux_start_file), (gst_avimux_handle_event),
17188 (gst_avimux_change_state):
17189 * gst/avi/gstavimux.h:
17190 Refactor structure writing to use GST_WRITE_UINT macros, add
17191 metadata writing support.
17193 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17195 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
17196 Elements may already be destroyed when this function is called.
17198 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17200 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
17201 (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
17202 More memory leak fixes (#149162).
17204 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17206 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
17207 (gst_qtdemux_add_stream):
17210 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17212 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
17215 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17217 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
17218 Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
17219 when fixating to six channels in Totem.
17221 2005-01-17 Tim-Philipp Müller <tim at centricular dot net>
17223 * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
17224 Fix compile warnings on Solaris 10 buildbot
17226 2005-01-17 Tim-Philipp Müller <tim at centricular dot net>
17228 * ext/dvdread/dvdreadsrc.c: (_read):
17229 Don't read beyond the last cell in a chapter (fixes
17230 invalid memory access)
17232 2005-01-17 Tim-Philipp Müller <tim at centricular dot net>
17234 * ext/dvdread/stream_labels.c:
17235 (dvdreadsrc_get_audio_stream_labels):
17236 Use NULL for an empty GList instead of g_list_alloc(); fix
17237 memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead
17238 of GString (easier to bulk free later)
17240 2005-01-17 Gergely Nagy <algernon@bonehunter.rulez.org>
17242 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17244 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17245 (gst_ffmpeg_pixfmt_to_caps):
17246 Fix BGRA32 caps (#164209).
17248 2005-01-17 Gergely Nagy <algernon@bonehunter.rulez.org>
17250 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17252 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17253 (gst_ffmpeg_caps_to_pixfmt):
17254 alpha_mask can be RGBA/ABGR. Fixes #164265.
17256 2005-01-17 Francis Labonte <francis_labonte@hotmail.com>
17258 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17260 * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
17261 (gst_mpeg2dec_alloc_buffer):
17262 * ext/mpeg2dec/gstmpeg2dec.h:
17263 Crop if decoding size is not the actual image size (#163676).
17265 2005-01-17 Steve Baker <steve@stevebaker.org>
17267 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17269 * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
17270 (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
17271 Add libsndfile typefind functions (#163309).
17273 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17275 * tools/gst-launch-ext-m.m:
17276 Add .aac, fix .m1v/.m2v (#163891).
17278 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17280 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
17281 Sanity check, don't wait endlessly since the clock might not
17282 actually run at this point (which is a deadlock). Fixes #164069.
17284 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17286 * gst/playback/gstplaybasebin.c: (probe_triggered):
17287 Of course, only pause if group is done...
17289 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17291 * gst/playback/gstplaybasebin.c: (probe_triggered):
17294 2005-01-16 Jan Schmidt <thaytan@mad.scientist.com>
17296 * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
17297 Don't return state change success when the parent
17300 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17302 * gst/avi/gstavimux.c: (gst_avimux_handle_event):
17303 Free events (fix memleak in #162905).
17305 2005-01-15 Gergely Nagy <algernon@bonehunter.rulez.org>
17307 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17309 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17310 (gst_ffmpeg_caps_to_pixfmt):
17311 Fix for depth = 15. Fixes #161675.
17313 2005-01-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17315 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
17316 Set FPS correctly, even for webcams and the like.
17317 * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
17318 Don error on setting while capturing.
17320 2005-01-14 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17322 * ext/dv/gstdvdec.c:
17323 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
17324 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
17325 I'm a bad boy. using /1001. to force C to do float division
17326 and not integer division (as it did in my last commit)
17327 Thanks to David I. Lehn for pointing this mistake.
17329 2005-01-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17331 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
17332 Revert Johan's 1.35->1.36 since it breaks compat.
17334 2005-01-14 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17336 * ext/dv/gstdvdec.c:
17337 * ext/libfame/gstlibfame.c:
17338 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
17339 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
17340 replace framerate aproximations by their real value
17341 (24000/1001, 30000/1001, 60000/1001)
17342 Finish fixing bug #164049
17344 2005-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
17346 * ext/ogg/gstoggmux.c:
17348 * gst/tcp/gstmultifdsink.c:
17349 * gst/tcp/gstmultifdsink.h:
17350 * gst/tcp/gsttcp.c:
17351 * gst/tcp/gsttcp.h:
17352 * gst/tcp/gsttcpclientsink.c:
17353 * gst/tcp/gsttcpclientsrc.c:
17354 * gst/tcp/gsttcpserversink.c:
17355 * gst/tcp/gsttcpserversrc.c:
17356 improve reusability of elements after state changes and errors
17357 make multifdsink throw away streamheaders when receiving new ones
17359 2005-01-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17361 * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
17362 Fix for if items are already in list...
17364 2005-01-12 Benjamin Otte <otte@gnome.org>
17366 * gst/adder/gstadder.c: (gst_adder_loop):
17367 fix adder a bit so it doesn't screw up with events as much anymore
17369 2005-01-12 Jan Schmidt <thaytan@mad.scientist.com>
17371 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
17372 (pixbufscale_scale), (gst_pixbufscale_chain):
17373 * ext/gdk_pixbuf/pixbufscale.h:
17374 Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
17375 to ensure rowstrides are calculated the same way as
17377 Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
17378 that we pick up duration and offset also.
17380 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17382 * gst/avi/gstavimux.c: (gst_avimux_class_init),
17383 (gst_avimux_pad_unlink), (gst_avimux_release_pad):
17386 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17388 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
17389 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
17390 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
17391 (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
17392 Update flags when requested.
17394 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17396 * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
17399 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17401 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17402 (gst_play_base_bin_init), (gst_play_base_bin_dispose),
17403 (probe_triggered), (new_decoded_pad), (gen_source_element),
17404 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
17405 * gst/playback/gstplaybasebin.h:
17406 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
17407 (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
17408 (gst_play_bin_change_state):
17409 Implement group-switch signal for use in apps to clear metadata
17410 cache, clean up subtitle, add suburi property instead of # hack,
17411 some error-out fixes.
17413 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17415 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
17417 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
17418 If we got a state change in the _get handler, don't return success.
17420 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17422 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
17423 (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
17424 Make jpegdec quiet on MJPEG decoding
17425 * gst/asfdemux/README:
17426 Fix mimetypes for MJPEG and H263
17428 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17430 * ext/theora/theoradec.c: (theora_dec_chain):
17431 Fix broken code generation by gcc by swapping arguments.
17432 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17435 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17438 delete this file, it is by far outdated
17439 * ext/alsa/gstalsa.1: remove
17440 * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
17441 (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
17442 (gst_alsa_get_caps):
17443 Add HW probing for supported sample rates. Fixes #161704
17445 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17447 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17448 Don't crash, biatch! :).
17450 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17452 * ext/musepack/gstmusepackreader.cpp:
17453 * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
17454 Some work on tags - still doesn't work in playbin...
17455 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17458 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17460 * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
17461 Also shove tags on kid pads.
17463 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17465 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
17466 Don't bail on unknown events.
17467 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17468 Don't crash on events before negotiation.
17469 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
17470 Send tags on pads, too.
17471 * gst/playback/gststreamselector.c:
17472 (gst_stream_selector_request_new_pad):
17473 Forward events on first pad if no input was selected yet.
17475 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17477 * gst/playback/gstplaybasebin.c: (setup_substreams):
17478 Don't disable streamtype if the stream doesn't exist, since
17479 then playing a video after audio will disable both and nothing
17480 will happen. Fixes the testsuite.
17482 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17484 * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
17485 (gst_v4l_xoverlay_set_xwindow_id):
17486 * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
17487 (gst_v4l2_xoverlay_set_xwindow_id):
17488 Add debug categories, fix overlay disabling.
17490 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17492 * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
17493 * ext/alsa/gstalsa.h:
17494 Add HW probing for period_count/size and buffer_size MIX/MAX
17495 Adjust default/user defined value if out of bounds
17496 Should fix bug #162024
17498 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17500 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
17501 Fix warning (#161191).
17503 2005-01-09 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17505 * ext/dvdread/stream_labels.c:
17506 (dvdreadsrc_get_audio_stream_labels):
17507 Fix warning (init the good variable in switch default)
17509 2005-01-09 Koop Mast <kwm@rainbow-runner.nl>
17511 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17513 * gst/tta/gstttaparse.c: (gst_tta_src_event):
17514 Fix gcc-2.95 compile (#163485).
17516 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17519 * ext/flac/gstflacenc.c: (gst_flacenc_init),
17520 (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
17521 (gst_flacenc_tell_callback), (gst_flacenc_chain),
17522 (gst_flacenc_change_state):
17523 * ext/flac/gstflacenc.h:
17524 Update for API change in flac-1.1.1. Update requirement in
17525 configure.ac. Fixes #162974.
17527 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17529 * gst/playback/gstplaybasebin.c: (group_destroy):
17530 Remove hack to get rid of assert and get rid of unlinked
17533 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17535 * gst/playback/gstplaybasebin.c: (setup_source):
17536 Set source to NULL so that resources are free'ed. Fixes issues
17537 with playback of CDDA and similar device-accessing things.
17539 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17541 * testsuite/embed/Makefile.am:
17542 test->noinst, fix make test in buildbot.
17544 2005-01-09 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17546 * ext/dvdread/stream_labels.c: new file
17547 * ext/dvdread/stream_labels.h: new file
17548 * ext/dvdread/Makefile.am:
17549 * ext/dvdread/dvdreadsrc.c: (_seek_title):
17550 Extract audio stream label from DVD IFO files.
17551 It only dump them on the console for now, still have to
17552 make playbin aware of them.
17554 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17556 * gst/playback/gstplaybasebin.c: (setup_source):
17559 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17561 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
17562 (gen_preroll_element), (remove_groups), (setup_subtitle),
17563 (gen_source_element), (setup_source):
17564 * gst/playback/gstplaybasebin.h:
17565 Multiple .sub files is just a stupid idea... Fix some threading
17566 mistakes. Interestingly, external .sub files cause playbin to
17567 hang, I don't know why... Parsing fixes contributed by Fran??ois
17568 Kooman <fkooman@tuxed.net>.
17570 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17572 * testsuite/embed/Makefile.am:
17575 2005-01-09 Gergely Nagy <algernon@bonehunter.rulez.org>
17577 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17579 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
17580 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
17581 (gst_pngenc_set_property):
17582 * ext/libpng/gstpngenc.h:
17583 Add compression level property (#163323).
17585 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17588 * examples/capsfilter/capsfilter1.c: (main):
17589 * examples/seeking/spider_seek.c: (make_spider_pipeline):
17590 * ext/dvdread/Makefile.am:
17591 * ext/dvdread/demo-play:
17592 * ext/dvdread/demo-play.c:
17593 * gconf/gstreamer.schemas.in:
17594 * gst-libs/gst/gconf/gconf.c:
17596 * testsuite/Makefile.am:
17597 * testsuite/embed/Makefile.am:
17598 * testsuite/embed/embed.c: (cb_expose), (main):
17599 Remove all references to xvideosink, fix examples (#140845).
17600 * gst/playback/gstplaybasebin.c: (group_destroy):
17601 Apparently, disposal does not unlink - so do explicitely.
17602 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
17605 2005-01-09 Maciej Katafiasz <mathrick@freedesktop.org>
17607 * README: fix PKG_CONFIG_PATH instructions, what was there
17608 previously was breaking default search path, not nice.
17611 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17613 * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
17614 (gst_audioscale_chain):
17615 %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
17616 when resampling - how the ^@$^!@^! is this possible?!?
17618 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17620 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
17621 Reset variables on READY.
17622 * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
17623 (gst_matroska_mux_loop):
17624 Require data before writing header.
17626 2005-01-09 Francis Labonte <francis_labonte@hotmail.com>
17628 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17630 * ext/mad/gstmad.c: (gst_mad_chain):
17631 Don't call mad_stream_sync() directly after recovering sync.
17634 2005-01-09 Martin Eikermann <meiker@upb.de>
17636 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17638 * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
17639 (snapshot_handler), (gst_snapshot_sinkconnect),
17640 (gst_snapshot_chain):
17641 Allocate resources when required, fix recursive signal emission
17642 and fix caps. Fixes #161667.
17644 2005-01-09 Gergely Nagy <algernon@bonehunter.rulez.org>
17646 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17648 * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
17649 (gst_pngdec_chain):
17650 Handle only 8-bppc (bits-per-pixel-component) images, better
17651 error handling and correct strides. Fixes #163177.
17652 * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
17653 (gst_pngenc_chain):
17654 Better error handling. Fixes #163348.
17656 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17658 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
17659 (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
17660 (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
17661 (dvdnavsrc_uri_handler_init):
17662 Add DVD-nav URI (dvdnav://) for Totem testing purposes.
17663 * gst/playback/gstplaybasebin.c: (gen_source_element):
17664 Add MMS to streaming URIs.
17666 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17668 * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
17669 * sys/xvimage/xvimagesink.c:
17670 (gst_xvimagesink_navigation_send_event):
17671 Check for pad availability before sending event.
17673 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17675 * gst-plugins.spec.in:
17678 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17681 Since we use functions from CVS, up requirement.
17683 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17685 * gst/playback/Makefile.am:
17686 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17687 (group_destroy), (group_commit), (group_is_muted),
17688 (gen_preroll_element), (add_stream), (unknown_type),
17689 (probe_triggered), (preroll_unlinked), (mute_stream),
17690 (silence_stream), (new_decoded_pad), (setup_substreams),
17691 (setup_source), (get_active_source), (mute_group_type),
17692 (muted_group_change_state), (set_active_source),
17693 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
17694 (play_base_eos), (gst_play_base_bin_change_state):
17695 * gst/playback/gstplaybasebin.h:
17696 * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
17697 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
17698 (gst_stream_info_dispose), (stream_info_mute_pad),
17699 (stream_info_change_state), (gst_stream_info_set_mute):
17700 * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
17701 (gst_stream_selector_base_init), (gst_stream_selector_class_init),
17702 (gst_stream_selector_init), (gst_stream_selector_dispose),
17703 (gst_stream_selector_get_linked_pad),
17704 (gst_stream_selector_get_caps), (gst_stream_selector_link),
17705 (gst_stream_selector_get_linked_pads),
17706 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
17707 * gst/playback/gststreamselector.h:
17708 Adding stream selection support plus required properties for
17709 applications to use this. Fully fixes #100931.
17711 2005-01-08 Benjamin Otte <otte@gnome.org>
17713 * gst/games/gstpuzzle.c: (nav_event_handler):
17714 - handle nav events differently: forward every event no matter if it
17715 was handled or not.
17717 You can now cheat by using navigationtest ! puzzle and moving the
17718 mouse close to the edge of a tile. ;)
17720 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17723 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
17724 * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
17725 (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
17726 (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
17727 (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
17728 (gst_ogm_parse_plugin_init):
17729 * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
17730 (gst_textoverlay_link), (gst_textoverlay_getcaps),
17731 (gst_textoverlay_event), (gst_textoverlay_video_chain),
17732 (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
17733 * ext/pango/gsttextoverlay.h:
17734 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17735 (gst_matroska_demux_handle_seek_event),
17736 (gst_matroska_demux_sync_streams),
17737 (gst_matroska_demux_parse_blockgroup),
17738 (gst_matroska_demux_subtitle_caps),
17739 (gst_matroska_demux_plugin_init):
17740 * gst/matroska/matroska-ids.h:
17741 * gst/playback/gstdecodebin.c: (close_pad_link):
17742 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
17743 (gen_preroll_element), (remove_groups), (add_stream),
17744 (new_decoded_pad), (setup_subtitles), (gen_source_element),
17746 * gst/playback/gstplaybasebin.h:
17747 * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
17748 * gst/subparse/Makefile.am:
17749 * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
17750 (gst_subparse_base_init), (gst_subparse_class_init),
17751 (gst_subparse_init), (gst_subparse_formats),
17752 (gst_subparse_eventmask), (gst_subparse_event),
17753 (gst_subparse_handle_event), (convert_encoding), (get_next_line),
17754 (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
17755 (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
17756 (parse_mpsub_deinit), (parse_mpsub_init),
17757 (gst_subparse_buffer_format_autodetect),
17758 (gst_subparse_format_autodetect), (gst_subparse_loop),
17759 (gst_subparse_change_state), (gst_subparse_type_find),
17761 * gst/subparse/gstsubparse.h:
17762 * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
17764 Add subtitle support, .sub parser (supports SRT and MPsub),
17765 OGM text support, Matroska UTF-8 text support, deadlock fixes
17766 all over the place, subtitle awareness in decodebin/playbin
17767 and some fixes to textoverlay to handle subtitles in a stream
17768 correctly. Fixes #100931.
17770 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17772 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17773 Check for pad availability before doing a query on it.
17775 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17777 * ext/dv/gstdvdec.c:
17778 really fix bpp24/32 dvdec caps (classic rgba indeed)
17779 * gst/asfdemux/gstasfdemux.c:
17780 (gst_asf_demux_process_ext_content_desc):
17781 don't send text tags if they are empty (bis repetita)
17783 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17785 * ext/dv/gstdvdec.c:
17786 remove unneeded comment from dvdec
17787 (related to DV 4CC codes in AVI files)
17788 moved them in gstreamer/docs/random/mimetypes
17789 * gst/asfdemux/gstasfdemux.c:
17790 (gst_asf_demux_process_ext_content_desc):
17791 don't send text tags if they are empty
17792 fix mem leak on error path
17793 * gst/ffmpegcolorspace/avcodec.h:
17794 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17795 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
17796 (gst_ffmpegcsp_avpicture_fill):
17797 * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
17798 * gst/ffmpegcolorspace/imgconvert_template.h:
17799 adds BGR32 and BGRA32 to ffmpegcolorspace
17800 (still bad colors, fixing it on next commit)
17801 helps with dvdec outputing BGR32
17803 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17805 * ext/dv/gstdvdec.c:
17806 Fix audio caps i just broke (missing ',')
17807 * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
17808 (gst_matroska_mux_reset):
17809 Fix typo + add FIXME about old "x-gst-metadata" crap
17811 2005-01-07 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17813 * ext/dv/demo-play.c: (main):
17814 xvideosink -> xvimagesink
17815 * ext/dv/gstdvdec.c:
17816 change rgb 32/32 caps to 24/32 (no alpha)
17817 change nb of channels to be a list (2 or 4, not 2)
17818 change sample rate to be a list (32, 44.1, 48 kHz) not a range
17819 * gst/asfdemux/gstasfdemux.c:
17820 (gst_asf_demux_process_ext_content_desc):
17821 Add 'date/year' to extracted metadata list
17823 2005-01-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17825 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
17826 The return value of fixate_to does not imply that the requested
17827 value was set, so don't assume.
17829 2005-01-07 Gergely Nagy <algernon@bonehunter.rulez.org>
17831 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17833 * ext/libpng/gstpngdec.c:
17834 * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
17835 (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
17836 * ext/libpng/gstpngenc.h:
17837 Alpha support (encoder; #163161), mime fixage.
17839 2005-01-07 Sebastien Cote <sc5@hermes.usherb.ca>
17841 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17843 * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
17844 (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
17845 (gst_faac_set_property), (gst_faac_get_property):
17846 * ext/faac/gstfaac.h:
17847 Allow for ADTS output (#153434).
17849 2005-01-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17851 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
17852 Fix against template (#150576).
17854 2005-01-06 Benjamin Otte <otte@gnome.org>
17856 * gst/games/gstpuzzle.c: (draw_puzzle):
17857 don't draw a puzzle if either width or height of tiles would be 0.
17859 2005-01-06 Benjamin Otte <otte@gnome.org>
17861 * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
17862 (gst_puzzle_class_init), (gst_puzzle_finalize):
17863 no memleaks, please
17864 (gst_puzzle_create), (gst_puzzle_init),
17865 (gst_puzzle_set_property), (gst_puzzle_setup):
17866 change initialization code around so we don't reshuffle on resize
17868 fix another stupid typo
17870 2005-01-06 Benjamin Otte <otte@gnome.org>
17872 * gst/games/gstvideoimage.c: (copy_hline_YUY2):
17873 fix stupid typo that borked copying on YUY2
17875 2005-01-06 Benjamin Otte <otte@gnome.org>
17877 * gst/games/gstpuzzle.c: (draw_puzzle):
17878 fix edges when image sizes aren't multiples of tile sizes
17880 2005-01-06 Benjamin Otte <otte@gnome.org>
17882 * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
17883 make RGB endianness work correctly
17884 (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
17885 refactor and fix race with initial shuffling
17886 (nav_event_handler):
17887 allow using the mouse to puzzle
17889 insist on tiles having width and height as multiples of 4 to get
17890 clean YUV image handling
17891 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
17892 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
17893 s/DEBUG/LOG/ for common messages
17894 (gst_xvimagesink_navigation_send_event):
17895 fix mouse event translation to not include screen PAR
17896 * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
17897 fix mouse event translation to actually work
17899 2005-01-06 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17901 * gst/asfdemux/gstasfdemux.c:
17902 (gst_asf_demux_process_ext_content_desc):
17903 Extract TrackNumber metadata + clean up code
17904 * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
17905 Hope this is the good fix (var used unitialised)
17907 2005-01-06 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17909 * ext/faad/gstfaad.c: (gst_faad_chain):
17910 Only increment timestamp if it's valid. Fixes raw AAC streams.
17912 2005-01-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
17915 * gst/games/Makefile.am:
17916 * gst/games/gstpuzzle.c:
17917 add a puzzle game with...
17918 * gst/games/gstvideoimage.c:
17919 * gst/games/gstvideoimage.h:
17920 ... full colorspace support (that includes YUV9 and RGB16)) stolen
17921 from videotestsrc and made into something that would be a nice
17922 library for a lot of other plugins.
17924 2005-01-06 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17927 don't compile faad plugin if a RC of 2.0 is found
17928 Fixes #155346 (and FC1 buildbot)
17929 * gst/asfdemux/gstasfdemux.c:
17930 (gst_asf_demux_process_ext_content_desc):
17931 try to make Solaris compiler happier
17933 2005-01-06 Paul Jack <pjack@sfaf.org>
17935 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17937 * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
17938 Fix segfault (#161667).
17940 2005-01-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17942 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
17943 Fix framerate reporting.
17945 2005-01-05 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17947 * gst-libs/gst/riff/riff-ids.h:
17948 * gst/wavenc/riff.h:
17949 Add AMR (VBR and CBR) ids to riff.h audio codec list
17950 * gst/asfdemux/gstasfdemux.c:
17951 (gst_asf_demux_process_ext_content_desc),
17952 (gst_asf_demux_process_object):
17953 Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
17955 2005-01-05 Martin Eikermann <meiker@upb.de>
17957 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17959 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
17960 (gst_dvd_demux_handle_discont):
17961 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
17962 (gst_mpeg_demux_handle_discont):
17963 Recreate pads on new-media (#160730).
17964 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
17965 Send discont even if manager changes timestamps (#161929).
17967 2005-01-05 Sebastien Cote <sc5@hermes.usherb.ca>
17969 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17971 * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
17972 Fix invalid memory access (#159211).
17974 2005-01-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17976 * examples/gstplay/player.c: (main):
17978 * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
17979 Add visualizations.
17980 * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
17981 (gst_a52dec_handle_frame):
17983 * ext/dvdnav/gst-dvd:
17984 Add audioconvert. Fixes #161325.
17985 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
17986 Explicitely case to gint64. Possible valgrind error.
17987 * gst-libs/gst/play/play.c: (caps_set), (setup_size),
17988 (gst_play_tick_callback), (gst_play_change_state),
17989 (gst_play_dispose), (gst_play_init), (gst_play_class_init),
17990 (gst_play_set_location), (gst_play_get_location),
17991 (gst_play_seek_to_time), (gst_play_set_data_src),
17992 (gst_play_set_video_sink), (gst_play_set_audio_sink),
17993 (gst_play_set_visualization), (gst_play_connect_visualization),
17994 (gst_play_get_framerate), (gst_play_get_all_by_interface),
17996 Use playbin. Fixes #139749 and #147744.
17997 * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
17999 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
18000 (audioscale_get_type), (gst_audioscale_base_init),
18001 (gst_audioscale_class_init), (gst_audioscale_expand_caps),
18002 (gst_audioscale_getcaps), (gst_audioscale_fixate),
18003 (gst_audioscale_link), (gst_audioscale_get_buffer),
18004 (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
18005 (gst_audioscale_init), (gst_audioscale_dispose),
18006 (gst_audioscale_chain), (gst_audioscale_set_property),
18007 (gst_audioscale_get_property), (plugin_init):
18009 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
18011 * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
18012 (qtdemux_tag_add_str), (qtdemux_tag_add_num),
18013 (qtdemux_tag_add_gnre), (qtdemux_video_caps):
18014 Add more metadata (fixes #162656).
18016 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
18021 === release 0.8.7 ===
18023 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
18028 releasing 0.8.7, "Hyperspace"
18030 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
18032 patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
18034 * gst/playback/gstplaybasebin.c:
18035 Fix for #162924 - free caps after use, not before
18037 2005-01-04 Thomas Vander Stichele <thomas at apestaart dot org>
18039 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18041 * gst/playback/gstplaybasebin.c:
18042 * gst/wavparse/gstwavparse.c:
18043 Fix for #154773 - fixes playback of small .wav files
18045 2005-01-03 Thomas Vander Stichele <thomas at apestaart dot org>
18047 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18049 * gst/audioscale/gstaudioscale.c:
18050 Fix for #162819 - make audioscale reusable
18051 Fixes playback of more than one file with playbin/totem
18053 2004-12-29 Thomas Vander Stichele <thomas at apestaart dot org>
18055 * gst/ffmpegcolorspace/avcodec.h:
18056 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18057 * gst/ffmpegcolorspace/imgconvert.c:
18058 clean up the mess that made me cry and avoid needless duplication
18060 2004-12-29 Thomas Vander Stichele <thomas at apestaart dot org>
18062 * gst/ffmpegcolorspace/imgconvert.c:
18063 give some indication of why we're segfaulting
18065 2004-12-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18068 Fix indentation, fix v4l2 plugin detection.
18070 Fix libmms location (Maciej, use diff -u!).
18071 * ext/alsa/gstalsa.c: (gst_alsa_init):
18072 Initialize caps cache to NULL.
18073 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
18074 Only change state on audiosink if it exists.
18076 2004-12-28 Maciej Katafiasz <mathrick@mathrick.org>
18078 * gst/matroska/matroska-demux.c:
18079 * gst/matroska/matroska-ids.h:
18080 * gst/matroska/matroska-demux.h:
18081 Fix Vorbis streams failing to decode in some files, where cluster_time
18082 isn't 0, because then it doesn't send codec_priv before actual data.
18083 Remove time-based test and replace it with marker set on beginning of
18086 2004-12-28 David Schleef <ds@schleef.org>
18088 Merge patch from Ronald fixing problems with streaming
18090 * ext/cairo/gstcairo.c: (plugin_init):
18091 * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
18092 (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
18093 (gst_textoverlay_video_chain), (gst_textoverlay_loop),
18094 (gst_textoverlay_font_init), (gst_textoverlay_init),
18095 (gst_textoverlay_set_property):
18096 * ext/cairo/gsttextoverlay.h:
18098 2004-12-27 David Schleef <ds@schleef.org>
18100 * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
18101 (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
18102 (gst_textoverlay_video_chain), (gst_textoverlay_loop),
18103 (gst_textoverlay_font_init), (gst_textoverlay_init),
18104 (gst_textoverlay_set_property): Improvements to actually
18105 render text as white on black outline on video, including
18106 font selection and horizontal/vertical alignment. (Ronald's
18108 * ext/cairo/gsttextoverlay.h:
18110 2004-12-26 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18112 * ext/ogg/gstogg.c:
18113 * ext/ogg/gstogmparse.c:
18114 fix ogm[audio/video]parse plugin registration
18115 (riff won't load if bytestream is already loaded)
18117 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
18119 * gst/audioconvert/gstchannelmix.c:
18122 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
18126 disable docs again until it actually passes make distcheck.
18128 2004-12-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18130 * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
18131 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
18133 Add 3GP (variables name Q3GP because they can't start with a
18134 number). Add samr audio fourcc (used in .3gp files), decoder
18135 is work in progress. Also do a GST_WARNING instead of ERROR
18136 in case of unknown nodes, to decrease output.
18138 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
18143 2004-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
18146 * ext/speex/gstspeexdec.h:
18147 * ext/speex/gstspeexenc.h:
18148 Fixes #158382. Make speex plugin compatible with both 1.0 and 1.1.
18149 Fix detection code in configure.ac
18151 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18153 * gst/matroska/matroska-demux.c:
18154 (gst_matroska_demux_parse_blockgroup):
18155 Save position, so that queries give proper return values. Don't
18156 know how this could ever have worked before...
18158 2004-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
18161 Put additional LAME check inside the conditional. Fixes #152339
18163 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18165 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18166 (gst_avi_demux_stream_scan):
18167 Add some more debug. Fix logic error when setting movi offset
18168 while reading index.
18170 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18172 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18173 (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
18174 (gst_avi_demux_process_next_entry):
18175 Add some debugging. Better detection of broken indexes and the
18176 accompanying index recovery. No infinite loops on state changes
18177 when we're still in our loopfunction.
18179 2004-12-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18184 2004-12-22 Archana Shah <archana.shah@wipro.com>
18186 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18188 * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
18189 Normalizing the value before setting
18190 (gst_sunaudiomixer_get_volume):
18191 Normalizing the value after getting. Fixes bug# 161980
18193 2004-12-22 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18195 * Makefile.am: Make sure docs gets disted
18196 * docs/Makefile.am: Make sure all needed files get disted
18197 * gst-plugins.spec.in: latest updates
18199 2004-12-22 Wim Taymans <wim@fluendo.com>
18201 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
18202 Revert patch 1.38 as clock distribution over schedulers does
18203 not work correcly in the core yet.
18205 2004-12-21 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18207 * sys/oss/README: remove this file, which predates my birth
18208 (and which content is by far outdated)
18210 2004-12-20 Stefan Kost <ensonic@users.sf.net>
18214 * docs/Makefile.am:
18215 * docs/libs/Makefile.am:
18216 * docs/libs/gst-plugins-libs-docs.sgml:
18217 * docs/libs/gst-plugins-libs-sections.txt:
18218 * docs/libs/tmpl/gstgconf.sgml:
18220 * docs/version.entities.in:
18221 Added boilerplate gtk-doc files for plugin-libs documentation.
18223 2004-12-19 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18225 * gst/auparse/gstauparse.c: fix int and float audio caps
18227 2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18229 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
18230 * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
18231 g_assert() can be a macro, don't use #ifdef inside it.
18233 2004-12-19 Edward Hervey <bilboed@bilboed.com>
18235 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18237 * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
18238 (gst_videorate_init), (gst_videorate_chain),
18239 (gst_videorate_change_state):
18240 Event handling (fixes #159986).
18242 2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18244 * gst-libs/gst/riff/riff-media.c:
18245 (gst_riff_create_video_caps_with_data):
18246 Add BLZ0 (Blizzard's version of DivX) fourcc.
18248 2004-12-18 David Schleef <ds@schleef.org>
18250 * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
18253 2004-12-18 David Schleef <ds@schleef.org>
18255 * gst/tta/ttadec.h: Disable some header code that isn't used
18256 and clearly isn't portable.
18258 2004-12-18 David Schleef <ds@schleef.org>
18260 * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
18261 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
18262 (avcodec_get_pix_fmt), (avpicture_layout),
18263 (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
18264 (get_convert_table_entry), (img_convert), (img_get_alpha_info):
18265 Fix code to not use GCC extensions (and c99 extensions that
18266 Forte does not like.)
18268 2004-12-19 Tim-Philipp Müller <t.i.m@zen.co.uk>
18270 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18272 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
18273 (gst_deinterlace_chain):
18274 Rowstride fixes. Fixes #161039.
18275 * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
18276 (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
18277 (gst_video_crop_getcaps), (gst_video_crop_link),
18278 (gst_video_crop_i420), (gst_video_crop_chain),
18279 (gst_video_crop_change_state):
18280 Rework of negotiation. Actually works now. Fixes #158650.
18282 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18284 * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
18285 That was very stupid.
18287 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18289 * gst/matroska/matroska-demux.c:
18290 (gst_matroska_demux_parse_blockgroup):
18291 Fix possible crasher.
18293 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18295 * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
18296 (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
18297 Lace sizes can be zero.
18299 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18301 * ext/musepack/gstmusepackdec.cpp:
18302 Fetch error return values. Fixes #161624.
18303 * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
18306 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18308 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
18309 Work for truncated (unfinished download etc.) files. Fixes #160514.
18311 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18313 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18314 Fix for integer overflow. Makes #156001 not crash. Probably masks
18317 2004-12-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18319 * gst/ac3parse/gstac3parse.c: (plugin_init):
18320 Parsers never have ranks. Fixes #159651.
18322 2004-12-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
18324 * gst/playback/gstdecodebin.c: (compare_ranks):
18325 make sure the facotries are ordered the same every time even if they
18326 have the same rank by using the name
18327 * gst/playback/gstdecodebin.c: (find_compatibles):
18328 make sure we don't add factories to the list twice
18330 2004-12-16 David Schleef <ds@schleef.org>
18332 * configure.ac: look for musepack headers as musepack/*.h
18334 * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
18335 * ext/musepack/gstmusepackreader.h: same
18337 2004-12-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18339 * gst-libs/gst/riff/riff-read.c:
18340 (gst_riff_read_strf_auds_with_data):
18341 Read extradata correctly (fixes #155879).
18343 2004-12-16 David Schleef <ds@schleef.org>
18345 * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
18346 audio. does _not_ attempt or allow conversion unless channels
18349 2004-12-16 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18351 * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
18353 2004-12-16 David Schleef <ds@schleef.org>
18355 * gst/audioscale/gstaudioscale.c: the resample library only
18356 handles 1 or 2 channels. Change caps to compensate.
18358 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18360 * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
18361 (gst_matroska_demux_audio_caps):
18362 Some MPEG-AAC hacks, because else it doesn't work...
18364 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18366 * gst-libs/gst/riff/riff-media.c:
18367 (gst_riff_create_video_caps_with_data),
18368 (gst_riff_create_video_template_caps):
18371 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18373 * gst-libs/gst/audio/Makefile.am:
18374 Try to fix buildbot.
18376 2004-12-16 Thomas Vander Stichele <thomas at apestaart dot org>
18378 * gst/tcp/gstmultifdsink.c:
18379 Clean up and uniformize debugging.
18381 2004-12-16 Edward Hervey <bilboed@bilboed.com>
18383 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18385 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
18386 (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
18387 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
18388 (gst_mpeg_demux_change_state):
18389 Reset on ready. Fixes 160276.
18391 2004-12-16 Sebastien Cote <sc5@hermes.usherb.ca>
18393 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18395 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18396 (gst_ffmpegcsp_pad_link):
18397 Fix memleak (#154815).
18399 2004-12-16 James Bowes <bowes@cs.dal.ca>
18401 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18403 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
18404 (gst_musicbrainz_init), (gst_musicbrainz_chain),
18405 (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
18406 * ext/musicbrainz/gsttrm.h:
18407 Add support for using a proxy server when getting a trm id from
18408 the MusicBrainz database (#149613).
18410 2004-12-16 Christophe Fergeau <teuf@gnome.org>
18412 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18414 * gst/playback/gstdecodebin.c: (new_pad), (close_link):
18415 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
18416 Fix memleaks (#157233).
18418 2004-12-16 Sebastien Cote <sc5@hermes.usherb.ca>
18420 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18422 * gst-libs/gst/resample/resample.c: (gst_resample_close):
18423 * gst-libs/gst/resample/resample.h:
18424 * gst/audioscale/gstaudioscale.c:
18425 Fix memleak (#159215).
18427 2004-12-16 Toni Willberg <toniw@iki.fi>
18429 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18431 * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
18432 * sys/oss/oss_probe.c: (main):
18433 Check for mono/stereo support (similar to samplerate probing),
18434 fixes #159433. Also add missing copyright header to oss_probe.c.
18436 2004-12-15 David Schleef <ds@schleef.org>
18438 * configure.ac: add audioresample and cairo plugins. Remove
18439 HAVE_MMX stuff, because it's not used.
18440 * ext/Makefile.am: same
18441 * ext/audioresample/Makefile.am: You are not ready for an
18442 audio resampling element based on audioresample.
18443 * ext/audioresample/gstaudioresample.c:
18444 * ext/audioresample/gstaudioresample.h:
18445 * ext/cairo/Makefile.am: You are not ready for overlay elements
18446 based on cairo. Don't look too closely, these elements kinda
18448 * ext/cairo/gstcairo.c: new
18449 * ext/cairo/gsttextoverlay.c: new
18450 * ext/cairo/gsttextoverlay.h: new
18451 * ext/cairo/gsttimeoverlay.c: new
18452 * ext/cairo/gsttimeoverlay.h: new
18453 * gst-libs/gst/media-info/media-info-priv.h: fix compile
18454 problem with compilers that don't support variadic macros.
18456 2004-12-15 Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
18458 Reviewed by: David Schleef <ds@schleef.org>
18460 * sys/sunaudio/gstsunaudio.c: (plugin_init): Apply patch from
18461 Bala, registering sunaudiosrc (oops!), and cleaning up code a
18462 bit. Also ran indent-gst.
18463 * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
18464 (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
18465 (gst_sunaudiosrc_setparams):
18467 2004-12-14 David Schleef <ds@schleef.org>
18469 * gst/festival/gstfestival.c: (gst_festival_chain): Set the
18470 output rate to 16000. Should fix #160235.
18472 2004-12-14 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18474 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
18475 Add typefinding for mpeg2 pes streams
18477 2004-12-13 David Schleef <ds@schleef.org>
18479 * configure.ac: Applied patch from bug #143659, making default
18480 sources and sinks OS-dependent (for Solaris), and added code
18482 * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
18484 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18486 * gst-libs/gst/riff/riff-media.c:
18487 forgot to add h2.64 to avidemux template caps
18489 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18491 * gst/wavenc/riff.h:
18492 * gst-libs/gst/riff/riff-media.c:
18493 * gst-libs/gst/riff/riff-ids.h:
18494 * gst/avi/gstavimux.c
18495 add 4CC code for VideoSoft h264 in AVI (VSSH)
18497 remove s323 from riff, it's quicktime specific :(
18499 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18501 * gst/asfdemux/README
18502 * gst/wavenc/riff.h
18503 * gst-libs/gst/riff/riff-ids.h
18504 * gst-libs/gst/riff/riff-media.c
18505 * gst/qtdemux/qtdemux.c:
18506 add new 4CC codes for h263 related codecs
18507 fixes partially bug #155163
18509 2004-12-12 Christian Fredrik Kalager Schaller <christian at fluendo dot com>
18511 * configure.ac: Update polyaudio requirement to 0.7
18512 * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
18514 2004-12-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18516 * gst/interleave/deinterleave.c:
18517 fix my name's spelling! :)
18519 2004-12-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18521 * AUTHORS ChangeLog
18522 * gst/auparse/gstauparse.c
18523 * gst/interleave/deinterleave.c
18525 alaw-decode.c alaw-encode.c
18526 mulaw-decode.c mulaw-encode.c
18527 * gst/oneton/gstoneton.c
18529 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
18531 cocoawindow.h cocoawindow.m
18532 osxvideosink.h osxvideosink.m
18534 put the same mail address for Zaheer Abbas Merali everywhere
18536 2004-12-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18538 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
18539 Align by packetsize, and assert that we a packet available before
18540 playing. The first makes webstreams work (they often include
18541 trailing padding data in a packet), the second allows pausing a
18542 ASF stream in totem without getting demux errors afterwards.
18544 2004-12-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18546 * ext/ogg/gstoggdemux.c: (get_relative):
18547 Check for non-NULL before accessing member (end-of-chain).
18549 2004-12-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18551 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
18552 (cdparanoia_set_property), (cdparanoia_get_property):
18553 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
18554 (dvdnavsrc_set_property), (dvdnavsrc_get_property):
18555 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
18556 (dvdreadsrc_init), (dvdreadsrc_set_property),
18557 (dvdreadsrc_get_property):
18558 * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
18559 (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
18560 Synchronize property names where not yet the case. Devices are
18561 now device=X, other versions are deprecated (but still exist).
18562 Also use g_free() unconditionally.
18563 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
18564 (setup_source), (gst_play_base_bin_get_property):
18567 2004-12-09 Thomas Vander Stichele <thomas at apestaart dot org>
18569 * configure.ac: move GCONF macro outside conditional for the am
18570 conditional. Fixes #160439
18572 2004-12-08 David Schleef <ds@schleef.org>
18574 * tools/gst-visualise-m.m: Switch to elements that currently
18577 2004-12-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18579 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
18580 We love wrong commas.
18582 2004-12-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18584 * gst/matroska/matroska-demux.c:
18585 (gst_matroska_demux_handle_src_query):
18586 Don't set DEFAULT, unsupported - makes length display incorrectly
18589 2004-12-07 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18591 * gst/monoscope/README: remove blurb about files being GPL
18592 * gst/monoscope/gstmonoscope.c: Change license field to LGPL
18593 * gst/monoscope/monoscope.c: Change license to BSD with explanation
18594 monoscope is now effectively LGPL licensed
18596 2004-12-07 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18598 * gst/monoscope/README: Update information to be more correct
18599 * gst/monoscope/convolve.c: Relicense to LGPL
18600 * gst/monoscope/convolve.h: Relicense to LGPL
18602 2004-12-06 Arwed v. Merkatz <v.merkatz@gmx.net>
18604 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
18605 set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
18606 * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
18607 set default_duration for mpeg1 audio
18609 2004-12-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
18611 * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
18612 * ext/alsa/gstalsa.h:
18613 refactor big chunks of the core caps negotiation code to make it
18614 a lot faster, because people claim it's really slow
18615 (actually, just cache the getcaps when the device is opened)
18617 2004-12-06 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18619 * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
18620 (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
18621 (gst_a52dec_handle_frame), (gst_a52dec_chain),
18622 (gst_a52dec_change_state), (plugin_init):
18623 * ext/a52dec/gsta52dec.h:
18624 Do something useful with timestamps. Make chain-based (since
18625 there's really no reason to be loopbased).
18626 * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18627 Update current_byte/frame correctly.
18629 2004-12-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18631 * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
18632 (gst_ape_demux_stream_init):
18635 2004-12-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18637 * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
18638 Let's make sure we're done typefinding when detecting tags.
18640 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18642 * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
18643 (gst_ebml_read_init), (gst_ebml_read_use_event),
18644 (gst_ebml_read_element_id), (gst_ebml_peek_id),
18645 (gst_ebml_read_seek), (gst_ebml_read_skip),
18646 (gst_ebml_read_reserve), (gst_ebml_read_buffer),
18647 (gst_ebml_read_master):
18648 * gst/matroska/ebml-read.h:
18649 * gst/matroska/matroska-demux.c:
18650 (gst_matroska_demux_parse_contents),
18651 (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
18652 Disgustingly evil hack for working around INTERRUPT events and
18653 their extremely annoying habit of being a pain in the ass. We
18654 simply peek a cluster before reading any of it.
18656 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18658 * ext/musepack/gstmusepackdec.cpp:
18659 There's also floating point libmusepacks.
18661 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18663 * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
18664 (gst_faad_chanpos_to_gst), (gst_faad_chain):
18665 Set DURATION even if source buffer didn't. Also use increasing
18667 * gst-libs/gst/riff/riff-media.c:
18668 (gst_riff_create_audio_caps_with_data):
18669 Block_align can have larger values than 8192.
18671 2004-12-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18673 * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
18674 * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
18675 * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
18676 * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
18679 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18681 * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
18684 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18686 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
18689 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18691 * ext/esd/esdsink.c: (gst_esdsink_chain):
18692 Make error actually say something useful (fixes #156798).
18693 * gst-libs/gst/riff/riff-media.c:
18694 (gst_riff_create_video_caps_with_data),
18695 (gst_riff_create_video_template_caps):
18696 Add Intel Video 5.0 fourcc (IV50).
18698 2004-12-01 Christophe Fergeau <teuf@gnome.org>
18700 * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
18701 detection on mono and stereo mp3 files.
18703 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18705 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
18706 Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
18707 the contained stream).
18709 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18711 * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
18712 Oops, remove debug.
18714 2004-12-01 Sebastien Cote <sc5@hermes.usherb.ca>
18716 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18718 * gst/law/alaw-decode.c: (alawdec_getcaps):
18719 * gst/law/mulaw-decode.c: (mulawdec_getcaps):
18720 Prevent warnings when negotiating caps (fixes #159338).
18722 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18724 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18725 (gst_ffmpegcsp_chain):
18726 Remove old leftover that shouldn't be there...
18728 2004-12-01 Sebastien Cote <sc5@hermes.usherb.ca>
18730 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18732 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
18733 Don't forward DISCONT events (fixes #159684).
18735 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18737 * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
18738 Unlink manually since sometimes bin disposal (and therefore
18739 pad unlinking) is delayed, which will cause a new media file
18740 to not be able to start playing instantly.
18742 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18744 * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
18745 On mute of an unlinked stream, check for pad availability so
18746 we don't crash on unlinked pad.
18748 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18750 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18751 (gst_avi_demux_massage_index):
18752 Fix quite humiliating bug in omitting 0-sized index chunks but
18753 forgetting to count them for timestamps.
18755 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18757 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18758 Actually leave the loop if we failed to sync. Don't crash.
18760 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18762 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
18763 (gst_dvd_demux_process_private):
18764 * gst/mpegstream/gstdvddemux.h:
18765 Fix crash (#159759). Doesn't work, though. :-(.
18767 2004-11-28 Benjamin Otte <otte@gnome.org>
18769 * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18770 more overwriting protection due to modifying channels one by one
18771 instead of all at once
18773 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18775 * gst/audioconvert/gstchannelmix.c:
18776 (gst_audio_convert_fill_normalize):
18777 Normalize using absolute values.
18779 2004-11-28 Julien MOUTTE <julien@moutte.net>
18783 * ext/directfb/Makefile.am:
18784 * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
18785 (gst_directfbvideosink_get_pixel_format),
18786 (gst_directfbvideosink_get_format_from_fourcc),
18787 (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
18788 (gst_directfbvideosink_sink_link),
18789 (gst_directfbvideosink_change_state),
18790 (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
18791 (gst_directfbvideosink_buffer_alloc),
18792 (gst_directfbvideosink_interface_supported),
18793 (gst_directfbvideosink_interface_init),
18794 (gst_directfbvideosink_navigation_send_event),
18795 (gst_directfbvideosink_navigation_init),
18796 (gst_directfbvideosink_set_property),
18797 (gst_directfbvideosink_get_property),
18798 (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
18799 (gst_directfbvideosink_base_init),
18800 (gst_directfbvideosink_class_init),
18801 (gst_directfbvideosink_get_type), (plugin_init):
18802 * ext/directfb/directfbvideosink.h: Adding a first version of
18804 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
18807 2004-11-28 Benjamin Otte <otte@gnome.org>
18809 * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18810 walk the samples backwards if out_channels > in_channels so we don't
18813 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18815 * gst/audioconvert/Makefile.am:
18816 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
18817 (gst_audio_convert_link), (gst_audio_convert_change_state),
18818 (gst_audio_convert_channels):
18819 * gst/audioconvert/gstchannelmix.c:
18820 (gst_audio_convert_unset_matrix),
18821 (gst_audio_convert_fill_identical),
18822 (gst_audio_convert_fill_compatible),
18823 (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
18824 (gst_audio_convert_fill_others),
18825 (gst_audio_convert_fill_normalize),
18826 (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
18827 (gst_audio_convert_passthrough), (gst_audio_convert_mix):
18828 * gst/audioconvert/gstchannelmix.h:
18829 Implement a channel mixer.
18831 2004-11-28 Martin Soto <martinsoto@users.sourceforge.net>
18833 * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
18834 * ext/alsa/gstalsa.h:
18835 * ext/alsa/gstalsa.c (gst_alsa_set_clock):
18836 Make alsasink actually honor gst_element_set_clock and use that
18837 clock instead of its internal one.
18839 2004-11-27 Christophe Fergeau <teuf@gnome.org>
18841 * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
18842 (gst_play_base_bin_change_state): nullify source and decoder when
18843 going from READY to NULL so that we don't try to do weird stuff with
18844 them when going from NULL to READY
18845 * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
18846 instead of g_object_unref
18847 (gen_video_element), (gen_audio_element): more refcounting fixes, now
18848 it should be correct
18849 (gst_play_bin_change_state): don't call remove_sinks if we are
18850 currently disposing the object
18852 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18854 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18855 Don't forget bass if it's there. Else left channel is silent...
18857 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18859 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
18860 (gst_a52dec_change_state):
18861 Don't do sample adjusting anymore, we use float audio now.
18862 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
18863 Don't fixate to non-existing properties.
18865 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18867 * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
18868 (gst_a52dec_change_state):
18869 Advertise that we can do surround sound.
18871 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18873 * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
18874 Add buffer-frames=0.
18875 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
18876 (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
18877 (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
18878 (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
18879 (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
18880 (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
18881 (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
18882 (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
18883 (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
18884 * ext/dvdread/dvdreadsrc.h:
18885 Add seeking, querying for bytes, sectors, title, angle and
18886 chapter. Handle multiple chapters. Relicense to LGPL because
18887 Billy agreed on that (thanks Billy!).
18889 2004-11-27 Christophe Fergeau <teuf@gnome.org>
18891 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
18892 call parent dispose method
18894 2004-11-27 Martin Soto <martinsoto@users.sourceforge.net>
18896 * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
18897 (gst_audio_clock_get_internal_time):
18898 Fix active <-> inactive transitions: ensure time value always
18899 grows and avoid abrupt value changes.
18901 2004-11-27 Arwed v. Merkatz <v.merkatz@gmx.net>
18904 * gst/tta/Makefile.am:
18906 * gst/tta/filters.h:
18907 * gst/tta/gsttta.c:
18908 * gst/tta/gstttadec.c:
18909 * gst/tta/gstttadec.h:
18910 * gst/tta/gstttaparse.c:
18911 * gst/tta/gstttaparse.h:
18912 * gst/tta/ttadec.h:
18913 added TTA parser and decoder
18915 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18917 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
18918 (probe_triggered), (check_queue), (buffer_underrun),
18919 (buffer_running), (buffer_overrun), (gen_source_element),
18921 * gst/playback/gstplaybasebin.h:
18922 Implement buffering. Needs some more work.
18924 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18926 * ext/theora/theoradec.c: (theora_dec_chain):
18927 Fix ilog mask range overflow.
18929 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18931 * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
18932 Don't omit the last (which in case of dmix is the only :) )
18933 channel count. Don't set channels if <= 2.
18935 2004-11-26 Christophe Fergeau <teuf@gnome.org>
18937 * gst/playback/gstplaybin.c: (gen_video_element),
18938 (gen_audio_element): Removed 2 obsolete comments
18940 2004-11-26 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18942 * ext/vorbis/oggvorbisenc.c
18943 * ext/vorbis/vorbisenc.c :
18944 change description fields of those plugins to differentiate them
18945 (pitivi show Encoders by description, they had the same one)
18947 2004-11-25 Christophe Fergeau <teuf@gnome.org>
18949 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18951 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
18952 (gst_play_bin_set_property), (gen_video_element),
18953 (gen_audio_element):
18954 Refcounting fixes for provided audio-/videosinks.
18956 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18958 * gst/playback/gstplaybin.c: (gen_video_element),
18959 (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
18960 Don't reference all sinks, but only the video- and audiosinks.
18961 The vis. element should be disposed when we're done with it.
18962 We don't have any reason to keep it around. This fixes warnings
18963 when reusing playbin for playing multiple audio files with
18964 vis. enabled. Also release audio device on pause - idea stolen
18967 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18969 * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
18970 (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
18971 * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
18972 * ext/alsa/gstalsaplugin.c: (plugin_init):
18973 * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
18974 (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
18975 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
18976 (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
18977 (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
18978 (gst_faad_change_state), (plugin_init):
18979 * ext/faad/gstfaad.h:
18980 * ext/vorbis/vorbis.c: (plugin_init):
18981 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
18982 * gst-libs/gst/audio/Makefile.am:
18983 * gst-libs/gst/audio/audio.c: (plugin_init):
18984 * gst-libs/gst/audio/multichannel.c:
18985 (gst_audio_check_channel_positions),
18986 (gst_audio_get_channel_positions),
18987 (gst_audio_set_channel_positions),
18988 (gst_audio_set_structure_channel_positions_list),
18989 (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
18990 (gst_audio_fixate_channel_positions):
18991 * gst-libs/gst/audio/multichannel.h:
18992 * gst-libs/gst/audio/testchannels.c: (main):
18993 * gst/audioconvert/gstaudioconvert.c:
18994 (gst_audio_convert_class_init), (gst_audio_convert_init),
18995 (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
18996 (gst_audio_convert_parse_caps), (gst_audio_convert_link),
18997 (gst_audio_convert_fixate), (gst_audio_convert_channels):
18998 * gst/audioconvert/plugin.c: (plugin_init):
18999 Surround sound support.
19001 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19003 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
19004 Fix position for discont if we're close as well. Nitpicking, but
19005 saves a few milliseconds of extra waiting or skipping.
19007 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19009 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
19010 We sometimes need parsers for playback, so add those too.
19012 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19015 * gst/apetag/Makefile.am:
19016 * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
19017 (gst_ape_demux_base_init), (gst_ape_demux_class_init),
19018 (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
19019 (gst_ape_demux_get_src_query_types),
19020 (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
19021 (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
19022 (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
19023 (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
19024 (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
19025 (gst_ape_demux_stream_data), (gst_ape_demux_loop),
19026 (gst_ape_demux_change_state):
19027 * gst/apetag/apedemux.h:
19028 * gst/apetag/apetag.c: (plugin_init):
19029 * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
19031 APE v1/2 tag reader plus typefind function.
19033 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19036 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19037 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
19038 Remove hacks for older core. Require newer core version
19041 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19043 * gst/cdxaparse/Makefile.am:
19044 * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
19045 (gst_cdxaparse_class_init), (gst_cdxaparse_init),
19046 (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
19047 * gst/cdxaparse/gstcdxaparse.h:
19048 * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
19049 (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
19050 (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
19051 (gst_cdxastrip_get_src_query_types),
19052 (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
19053 (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
19054 (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
19055 (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
19056 * gst/cdxaparse/gstcdxastrip.h:
19057 SVCD/VCD header stripping separated from CDXA image parsing.
19058 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
19060 Add VCD/SVCD header typefinding for VCD/SVCD.
19061 * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
19062 (gst_vcdsrc_class_init), (gst_vcdsrc_init),
19063 (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
19064 (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
19065 (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
19066 (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
19067 (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
19068 (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
19069 (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
19070 (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
19071 (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
19072 * sys/vcd/vcdsrc.h:
19073 Fix up, add seeking, querying, URI interface. Works in totem now.
19075 2004-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
19080 === release 0.8.6 ===
19082 2004-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
19100 releasing 0.8.6, "IOU Love"
19102 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19104 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19106 * gst/playback/gstplaybasebin.c:
19107 Fix unplayable files error handling. Fixes #158365
19109 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19111 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19113 * gst/typefind/gsttypefindfunctions.c:
19114 Fix broken mp3 typefinding. Fixes #158375
19116 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19118 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19120 * ext/ogg/gstoggdemux.c:
19121 Fix sync on broken files. Fixes #158976
19123 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19125 patch by: Edward Hervey <bilboed@bilboed.com>
19127 * ext/libpng/gstpngenc.c:
19128 Copy over buffer properties. Fixes #158832
19130 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19132 patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
19134 * ext/dvdread/dvdreadsrc.c:
19135 Fixes invalid reads (#158462)
19137 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19139 * sys/v4l/gstv4lsrc.c:
19140 * sys/v4l/gstv4lsrc.h:
19141 * sys/v4l/v4lsrc_calls.c:
19142 Probe less and cache it. Fixes #159187.
19144 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19146 * gst/videorate/gstvideorate.c:
19147 Handle all video formats. Fixes #159186.
19149 2004-11-16 Jan Schmidt <thaytan@mad.scientist.com>
19150 * gst/synaesthesia/gstsynaesthesia.c:
19151 (gst_synaesthesia_class_init), (gst_synaesthesia_init),
19152 (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
19153 (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
19154 (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
19155 (gst_synaesthesia_change_state), (plugin_init):
19156 Fix up synaesthesia to work under different samplerates/ buffer sizes.
19157 Force 320x200 output, as that's the only thing the underlying
19158 synaesthesia implementation supports. Still needs to be made
19161 2004-11-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19164 Fix mpeg2enc configure check (similar to mplex check below).
19166 2004-11-14 Koop Mast <kwm@rainbow-runner.nl>
19168 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19170 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19171 Fix for gcc-2.95 (fixes #158221).
19173 2004-11-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19175 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19176 Re-add clock distribution hack (until new core is released).
19179 2004-11-13 Arwed v. Merkatz <v.merkatz@gmx.net>
19181 fix mplex configure check segfaulting on some systems (bug #140994)
19183 2004-11-13 Benjamin Otte <otte@gnome.org>
19185 * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
19187 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
19188 do a wait when we enter the loop func with no data available to
19189 write instead of getting into an 100% CPU loop by just returning and
19190 being called again by the scheduler
19192 2004-11-13 Jan Schmidt <thaytan@mad.scientist.com>
19195 * ext/libvisual/visual.c: (gst_visual_get_type),
19196 (libvisual_log_handler), (gst_visual_getcaps),
19197 (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
19199 Update libvisual to 0.1.7. Link in the debug handling to gstreamer
19200 * ext/smoothwave/Makefile.am:
19201 * ext/smoothwave/demo-osssrc.c: (main):
19202 * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
19203 (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
19204 (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
19206 * ext/smoothwave/gstsmoothwave.h:
19207 Make gstsmoothwave a working element in the 20th century.
19209 * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
19210 Fix incorrect link function
19212 2004-11-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19214 * gst/volume/gstvolume.c:
19215 Allow buffer-frames=0.
19217 2004-11-12 Iain <iaingnome@gmail.com>
19219 * configure.ac: Check for polypaudio
19221 * ext/Makefile.am: Build the polyp dir
19223 * ext/polyp: The polypsink sources.
19225 2004-10-30 Iain <iaingnome@gmail.com>
19227 * gst/interleave/interleave.c (interleave_unlink): Change the src pads
19228 caps to reflect the new number of channels.
19230 2004-11-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19232 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
19233 Fix for negotiation order problem. This would show when the
19234 ALSA loopfuction was called before any other function. ALSA
19235 wouldn't do anything because we're not negotiated yet, leading
19236 to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
19238 2004-11-11 Tim-Philipp Müller <t.i.m@zen.co.uk>
19240 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19242 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
19243 No warnings (#157986).
19245 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19247 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
19248 Prefer apev1/2 and id3v1 (at end of file) over musepack.
19250 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19252 * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
19253 Signal no-more-pads (so it works in playbin).
19255 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19257 * ext/musepack/gstmusepackreader.cpp:
19258 Workaround for older core.
19260 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19262 * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
19263 Actually test for odd width/height rather than testing whether
19264 a temporary variable that was 0 before we subtracted 1 is now
19265 not equal to zero (which it always is).
19267 2004-11-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19269 * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
19270 Fix compilation if HAVE_XVIDEO is not defined
19272 2004-11-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19274 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
19275 Fix compilation if HAVE_XVIDEO is not defined
19277 2004-11-11 Jan Schmidt <thaytan@mad.scientist.com>
19279 * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
19280 (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
19281 (gst_goom_change_state), (plugin_init):
19282 Use the bytestream adapter so goom doesn't depend on the input
19284 Add a debug category
19286 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19288 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
19289 Only set hardware parameters *after* negotiation. Before
19290 negotiation, it will set ANY and that seems to cause crashes
19291 (see e.g. #151288, #153227).
19293 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19295 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
19296 This seems to be antique leftover. It needs to pass error
19298 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
19299 (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
19300 (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
19301 (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
19302 Fix GstXOverlay implementation (#151059).
19304 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19306 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
19307 Don't assert (#157853).
19309 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19311 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
19312 Fix bytes/samples confustion.
19313 (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
19314 Fix for underrun (#144389).
19316 2004-11-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19318 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
19319 Disable halfway-seek for pending release (since it needs a new
19322 2004-11-09 Thomas Vander Stichele <thomas at apestaart dot org>
19324 * sys/v4l/gstv4lsrc.c:
19325 * sys/v4l/gstv4lsrc.h:
19326 * sys/v4l/v4lsrc_calls.c:
19327 add autoprobe-fps property so we can separate autoprobing parts
19329 2004-11-09 Thomas Vander Stichele <thomas at apestaart dot org>
19331 * sys/v4l/gstv4lsrc.c:
19332 * sys/v4l/v4lsrc_calls.c:
19333 initialise fourcc to catch unset fourcc's, and debug
19335 2004-11-09 Wim Taymans <wim@fluendo.com>
19337 * gst/playback/README:
19338 * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
19339 * gst/playback/gstplaybin.c: (gst_play_bin_init),
19340 (gst_play_bin_dispose), (gst_play_bin_set_property),
19341 (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
19342 (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
19343 (gst_play_bin_get_formats), (gst_play_bin_convert),
19344 (gst_play_bin_get_query_types), (gst_play_bin_query):
19345 Cleanups and some more documentation.
19347 2004-11-09 Jan Schmidt <thaytan@mad.scientist.com>
19349 * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
19350 (gst_cacasink_init), (gst_cacasink_chain):
19351 * ext/libcaca/gstcacasink.h:
19352 Cacasink inherits from VideoSink, so let that store the clock.
19354 2004-11-09 Wim Taymans <wim@fluendo.com>
19356 * gst/playback/README:
19357 * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
19358 (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
19359 (probe_triggered), (preroll_unlinked), (new_decoded_pad),
19360 (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
19361 * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
19363 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
19364 (gst_stream_info_is_mute), (gst_stream_info_set_property):
19365 * gst/playback/gststreaminfo.h:
19367 Only switch groups if all streams have muted (EOSed).
19368 Send Tags in sync with the stream playback instead of in
19369 the playback/preroll phase.
19370 Some cleanups, free the fakesrc elements.
19372 2004-11-09 Benjamin Otte <in7y118@public.uni-hamburg.de>
19374 * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
19375 buffer-frames property was missing
19376 * ext/arts/gst_arts.c:
19377 rate missing from sinkcaps
19378 * ext/audiofile/gstafparse.c:
19379 * ext/audiofile/gstafsink.c:
19380 * ext/audiofile/gstafsrc.c:
19381 * ext/swfdec/gstswfdec.c:
19382 int audio doesn't know buffer-frames
19383 * ext/cdparanoia/gstcdparanoia.c:
19384 int audio doesn't know chunksize either
19385 * ext/nas/nassink.c:
19386 it's endianness, not endianess
19387 * gst-libs/gst/audio/audio.h:
19388 make float standard pad template caps really describe float
19389 * gst/law/mulaw.c: (linear_factory):
19390 signed only, please
19391 * gst/mpegstream/gstdvddemux.c:
19392 widths of 20 are not valid
19394 2004-11-08 Thomas Vander Stichele <thomas at apestaart dot org>
19396 Submitted by: Luca Ferretti <elle.uca@infinito.it>
19402 2004-11-08 Wim Taymans <wim@fluendo.com>
19404 * gst/playback/README:
19405 * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
19406 * gst/playback/gstplaybasebin.c: (probe_triggered),
19407 (gst_play_base_bin_change_state):
19408 Updated README, added more comments for fixmes etc..
19410 2004-11-08 Wim Taymans <wim@fluendo.com>
19412 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19413 We can remove this hack now.
19415 2004-11-08 Wim Taymans <wim@fluendo.com>
19417 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
19418 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
19419 (gst_videomixer_blend_buffers), (gst_videomixer_loop):
19420 Only mix AYUV for maximum quality.
19422 2004-11-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19424 * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
19425 (gst_ogg_demux_push), (gst_ogg_pad_push):
19426 Let's act as if we're synchronized now! :).
19427 * ext/theora/theoradec.c: (theora_dec_chain):
19430 2004-11-08 Wim Taymans <wim@fluendo.com>
19432 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19433 (gst_alpha_set_property), (gst_alpha_sink_link),
19434 (gst_alpha_set_ayuv), (gst_alpha_set_i420),
19435 (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
19436 (gst_alpha_init_params), (gst_alpha_chain):
19437 Implement alpha functions for AYUV too, this increases
19438 accuracy quite a bit.
19440 2004-11-08 Wim Taymans <wim@fluendo.com>
19442 * gst/ffmpegcolorspace/avcodec.h:
19443 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19444 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
19445 (gst_ffmpegcsp_avpicture_fill):
19446 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19447 (gst_ffmpegcsp_caps_remove_format_info):
19448 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19449 (shrink12), (img_get_alpha_info), (deinterlace_line),
19450 (deinterlace_line_inplace):
19451 * gst/ffmpegcolorspace/imgconvert_template.h:
19452 Added AYUV colorspace and handle RGBA a bit more respectful.
19454 2004-11-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19456 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19457 Actually always send a discont (cornercase when resending the
19458 same serial-tagged chain twice).
19460 2004-11-08 Julien MOUTTE <julien@moutte.net>
19462 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
19463 (gst_ximagesink_finalize):
19464 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
19465 (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
19467 2004-11-08 Wim Taymans <wim@fluendo.com>
19469 * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
19470 Don't segfault on NULL data.
19472 2004-11-08 Wim Taymans <wim@fluendo.com>
19474 * gst/playback/gstdecodebin.c: (unlinked):
19475 * gst/playback/gstplay-marshal.list:
19476 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
19477 (gst_play_base_bin_init), (group_create), (get_active_group),
19478 (get_building_group), (group_destroy), (group_commit),
19479 (queue_overrun), (remove_groups), (add_stream), (unknown_type),
19480 (add_element_stream), (no_more_pads), (probe_triggered),
19481 (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
19482 (state_change), (setup_source), (gst_play_base_bin_get_property),
19483 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
19484 (gst_play_base_bin_link_stream),
19485 (gst_play_base_bin_get_streaminfo):
19486 * gst/playback/gstplaybasebin.h:
19487 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
19488 (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
19489 Add support for chained ogg files. Prepare for playlist
19490 support. This patch introduces the concept of pad groups, which
19491 together compose one playable media file.
19493 2004-11-07 David Schleef <ds@schleef.org>
19495 * testsuite/gst-lint: Check for pad templates that aren't statically
19498 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19502 * ext/musepack/Makefile.am:
19503 * ext/musepack/gstmusepackdec.cpp:
19504 * ext/musepack/gstmusepackdec.h:
19505 * ext/musepack/gstmusepackreader.cpp:
19506 * ext/musepack/gstmusepackreader.h:
19507 Add musepack decoder.
19508 * ext/faad/gstfaad.c: (gst_faad_base_init):
19509 Make pad templates static.
19510 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
19512 Add musepack typefinder, make mp3 typefinding work halfway stream,
19513 which doesn't actually work yet because id3demux doesn't implement
19516 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19518 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
19519 (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
19520 Fix interrupt event handling (#144436).
19522 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19524 * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
19527 2004-11-06 Tim-Philipp Müller <t.i.m@zen.co.uk>
19529 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19531 * ext/vorbis/vorbisenc.c: (raw_caps_factory):
19532 Fix weird caps (#157548).
19534 2004-11-06 Tim-Philipp Müller <t.i.m@zen.co.uk>
19536 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19538 * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
19539 Add missing NULL terminator (#157543).
19541 2004-11-05 Thomas Vander Stichele <thomas at apestaart dot org>
19543 * gst/tcp/gsttcp.h:
19544 * gst/tcp/gsttcpclientsink.c:
19545 * gst/tcp/gsttcpclientsrc.c:
19546 * gst/tcp/gsttcpserversink.c:
19547 * gst/tcp/gsttcpserversrc.c:
19548 ports can go up to 65535. Move common defines to gsttcp.h
19550 2004-11-05 Wim Taymans <wim@fluendo.com>
19552 * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
19553 (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
19554 Added two more colorspaces.
19556 2004-11-05 Wim Taymans <wim@fluendo.com>
19558 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19559 (gst_ffmpegcsp_avpicture_fill):
19560 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19561 (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
19562 (img_convert), (deinterlace_line), (deinterlace_line_inplace):
19565 2004-11-05 Wim Taymans <wim@fluendo.com>
19567 * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
19568 (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
19569 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19570 (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
19571 (gst_videomixer_loop):
19574 2004-11-05 Benjamin Otte <otte@gnome.org>
19576 * ext/mad/gstmad.c: (gst_mad_chain):
19577 don't overflow data buffer. Flush not needed sync data when syncing
19580 2004-11-04 Wim Taymans <wim@fluendo.com>
19582 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19583 (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
19584 (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
19585 (gst_alpha_init_params), (gst_alpha_chain),
19586 (gst_alpha_change_state):
19587 Updated the chroma keying algorithm with something more
19590 2004-11-03 Wim Taymans <wim@fluendo.com>
19592 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19593 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
19594 (gst_videomixer_blend_buffers), (gst_videomixer_loop):
19595 Fix stride issues. Does not completely work for odd
19598 2004-11-03 Wim Taymans <wim@fluendo.com>
19600 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19601 (gst_alpha_chroma_key), (gst_alpha_chain):
19602 Fix stride issues. Does not completely work for odd
19605 2004-11-03 Christophe Fergeau <teuf@gnome.org>
19607 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
19608 * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
19611 2004-11-03 Wim Taymans <wim@fluendo.com>
19613 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19614 (gst_ffmpegcsp_avpicture_fill):
19615 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19617 * gst/ffmpegcolorspace/imgconvert_template.h:
19618 Use correct _fill function to get correct strides.
19620 2004-11-02 David Schleef <ds@schleef.org>
19622 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19623 (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
19624 (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
19625 Change all g_print()s to debugging. Add a bunch of consistency
19628 2004-11-02 Wim Taymans <wim@fluendo.com>
19630 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19631 (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
19632 (unlinked), (no_more_pads), (close_link):
19633 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
19634 (unknown_type), (add_element_stream), (new_decoded_pad),
19635 (removed_decoded_pad), (setup_source):
19636 * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
19637 (gst_stream_info_class_init), (gst_stream_info_init),
19638 (gst_stream_info_new), (gst_stream_info_dispose),
19639 (stream_info_mute_pad), (gst_stream_info_set_property),
19640 (gst_stream_info_get_property):
19641 * gst/playback/gststreaminfo.h:
19642 Fix playback of multiple files.
19643 a slightly different approach to handling dynamic pad removals.
19644 This one only looks at pads that we have linked.
19646 2004-11-01 Christophe Fergeau <teuf@gnome.org>
19648 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
19649 free" warning from libc.
19651 2004-11-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19653 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19654 (get_unconnected_element), (remove_starting_from), (pad_removed),
19656 Implement support for dynamic pad changing. We listen to "live"
19657 pad removals (i.e. while playing) and re-setup autoplugging
19658 after that. Playbasebin/playbin need some more work for this
19659 to finally work, but decodebin supports (and replugs) chained
19662 2004-11-02 Jan Schmidt <thaytan@mad.scientist.com>
19664 * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
19665 (gst_alsa_finalize):
19666 * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
19667 (gst_cdaudio_finalize):
19668 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
19669 (cdparanoia_finalize):
19670 * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
19671 * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
19672 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
19673 (dvdreadsrc_finalize):
19674 * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
19675 (gst_flacdec_finalize):
19676 * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
19677 (gst_flacenc_finalize):
19678 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
19679 (gst_gnomevfssink_finalize):
19680 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
19681 (gst_gnomevfssrc_finalize):
19682 * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
19683 (gst_fameenc_finalize):
19684 * ext/nas/nassink.c: (gst_nassink_class_init),
19685 (gst_nassink_finalize):
19686 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
19687 (gst_sdlvideosink_class_init):
19688 * ext/sndfile/gstsf.c: (gst_sf_dispose):
19689 * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
19690 * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
19691 * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
19692 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
19693 (gst_x_window_listener_dispose):
19694 * gst/audioscale/gstaudioscale.c:
19695 * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
19696 (play_on_demand_finalize):
19697 * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
19698 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
19699 * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
19700 (cdplayer_finalize):
19701 * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
19702 (gst_glimagesink_class_init):
19703 * sys/oss/gstosselement.c: (gst_osselement_class_init),
19704 (gst_osselement_finalize):
19705 * sys/oss/gstosssink.c: (gst_osssink_dispose):
19706 * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
19707 * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
19708 Fixes a bunch of problems with finalize and dispose functions,
19709 either assumptions that dispose is only called once, or not calling
19710 the parent class dispose/finalize function
19712 2004-11-01 Stefan Kost <ensonic@users.sf.net>
19714 * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
19715 added two api precondition guards
19716 use g_strdup with getenv to fix crash when using ENVVAR
19718 2004-11-01 Jan Schmidt <thaytan@mad.scientist.com>
19719 * ext/esd/esdsink.c: (gst_esdsink_class_init),
19720 (gst_esdsink_finalize):
19721 Use a finalize function, not dispose, and more importantly,
19722 call the parent class finalize function too
19724 2004-11-01 Johan Dahlin <johan@gnome.org>
19726 * ext/ogg/gstoggdemux.c:
19727 * gst/tags/gstvorbistag.c:
19730 2004-10-31 Benjamin Otte <otte@gnome.org>
19732 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
19733 lotsa memleaks today. But they're all small...
19735 2004-10-31 Benjamin Otte <otte@gnome.org>
19737 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19738 another memleak crushed
19740 2004-10-31 Benjamin Otte <otte@gnome.org>
19742 * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
19745 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19747 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19748 Hack to prevent crash when going to READY inside signal handler
19749 while this function is active.
19751 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19753 * gst/ffmpegcolorspace/Makefile.am:
19754 * gst/ffmpegcolorspace/avcodec.h:
19755 * gst/ffmpegcolorspace/common.h:
19756 * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
19757 * gst/ffmpegcolorspace/dsputil.h:
19758 * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
19759 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19760 (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
19761 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
19762 (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
19763 (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
19764 (gst_ffmpegcsp_avpicture_fill):
19765 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
19766 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19767 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
19768 (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
19769 (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
19770 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
19771 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
19772 (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
19773 * gst/ffmpegcolorspace/imgconvert.c:
19774 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
19775 (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
19776 (avpicture_get_size), (avcodec_get_pix_fmt_loss),
19777 (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
19778 (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
19779 (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
19780 (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
19781 (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
19782 (img_convert_init), (img_apply_table), (shrink41), (shrink21),
19783 (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
19784 (grow21), (grow22), (grow41), (grow44), (conv411),
19785 (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
19786 (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
19787 (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
19788 (avpicture_free), (is_yuv_planar), (img_convert),
19789 (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
19790 (deinterlace_line_inplace), (deinterlace_bottom_field),
19791 (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
19792 * gst/ffmpegcolorspace/imgconvert_template.h:
19793 * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
19794 * gst/ffmpegcolorspace/mmx.h:
19795 * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
19796 (av_fast_realloc), (av_mallocz_static), (av_free_static),
19797 (av_freep), (avcodec_get_context_defaults),
19798 (avcodec_alloc_context), (avcodec_init):
19799 Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
19800 handling plus update from ffmpeg CVS. Large clean-up.
19802 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19804 * gst/playback/Makefile.am:
19805 We need the marshallers for decodebin, too.
19807 2004-10-30 David Schleef <ds@schleef.org>
19809 * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
19810 quicktime typefinding work with 64-bit offsets.
19812 2004-10-30 Jan Schmidt <thaytan@mad.scientist.com>
19814 * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
19815 Set EOS on the element when processing an EOS event.
19816 * ext/speex/gstspeexdec.h:
19817 * ext/speex/gstspeexenc.h:
19818 Only keep a const ptr to the mode
19819 * gst-libs/gst/riff/riff-media.c:
19820 (gst_riff_create_audio_caps_with_data),
19821 (gst_riff_create_audio_template_caps):
19822 Allow WMAV3, with up to 6 channels.
19823 * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
19824 Don't call gst_pad_set_event_function on a sink pad.
19825 * gst/mpegstream/gstdvddemux.c:
19826 (gst_dvd_demux_get_subpicture_stream),
19827 (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
19828 Copy the explicit caps that were set across to the cur_* pads,
19829 instead of trying to use a possibly non-existent negotiated caps.
19830 Reset the type of subpicture pads to UNKNOWN after calling
19831 init_stream, so that the caps get set.
19833 2004-10-29 Martin Pitt <martin.pitt@canonical.com>
19835 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19837 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
19838 Don't touch buffer if it is of size 0 (fixes #151064).
19840 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19842 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
19843 Synchronized discont handling.
19845 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19847 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
19848 (gst_ogg_demux_push):
19849 Make seeking sort-of exact again (fixes #156387).
19851 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19853 * gst/playback/gstplaybasebin.c: (unknown_type),
19854 (add_element_stream), (new_decoded_pad),
19855 (gst_play_base_bin_change_state):
19856 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
19857 (gst_stream_info_init), (gst_stream_info_new),
19858 (gst_stream_info_dispose), (gst_stream_info_get_property):
19859 * gst/playback/gststreaminfo.h:
19860 Make caps explicitely available. Makes testing for unsupported
19861 types possible. Improves error reporting.
19863 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19865 * gst/audioconvert/gstaudioconvert.c:
19866 (gst_audio_convert_buffer_to_default_format):
19867 Really don't touch read-only buffers (#156563).
19869 2004-10-29 Sebastien Cote <sc5@hermes.usherb.ca>
19871 Reviewd by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19873 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
19874 Fix memleak (#155223).
19876 2004-10-29 Wim Taymans <wim@fluendo.com>
19878 * gst/tcp/.cvsignore:
19879 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
19880 (gst_multifdsink_class_init), (gst_multifdsink_init),
19881 (gst_multifdsink_add), (gst_multifdsink_remove),
19882 (gst_multifdsink_remove_client_link), (is_sync_frame),
19883 (gst_multifdsink_new_client),
19884 (gst_multifdsink_handle_client_write),
19885 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
19886 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
19887 (gst_multifdsink_get_property):
19888 * gst/tcp/gstmultifdsink.h:
19889 Added burst on connect sync_method, deprecated sync_clients,
19890 streamlined the sync code some more.
19892 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19894 * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
19895 (gst_play_base_bin_change_state):
19896 Improve error reporting.
19898 2004-10-28 Wim Taymans <wim@fluendo.com>
19900 * gst/tcp/Makefile.am:
19901 * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
19902 * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
19903 (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
19904 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
19905 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
19906 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
19908 Added more locks around fdset structures. Fixed/reworked
19909 the poll array resizing code.
19910 Added stress test for fdset.
19912 2004-10-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19914 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
19917 2004-10-28 Benjamin Otte <otte@gnome.org>
19919 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
19920 fix link function to always query channels and query width for
19924 * gst/equalizer/Makefile.am:
19925 * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
19926 (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
19927 (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
19928 (arg_to_scale), (setup_filter),
19929 (gst_iir_equalizer_compute_frequencies),
19930 (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
19931 (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
19935 2004-10-27 Thomas Vander Stichele <thomas at apestaart dot org>
19937 Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
19941 Added Norwegian Bokmaal translation
19943 2004-10-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19945 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
19946 Don't break on options (fixes #156488).
19948 2004-10-27 Thomas Vander Stichele <thomas at apestaart dot org>
19951 * ext/cdaudio/Makefile.am:
19953 fix build on older automake
19955 2004-10-26 Wim Taymans <wim@fluendo.com>
19957 * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
19958 (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
19959 Allow a little margin when negotiating the framerate.
19961 2004-10-26 Stefan Kost <ensonic@users.sf.net>
19963 * gst/level/gstlevel.c:
19964 synchonised naming of pads and pad-templates
19966 2004-10-26 Wim Taymans <wim@fluendo.com>
19968 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
19969 (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
19970 (_find_streams_check), (gst_ogg_demux_push):
19971 Fix EOS again. Needs to be done in a better way. We should not
19972 remove the pad if there is no new chained stream.
19974 2004-10-26 Iain <iaingnome@gmail.com>
19976 * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
19977 * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
19979 * gst/interleave/interleave.c (interleave_class_init): Hook up release
19981 (interleave_release_pad): Remove the pad.
19982 * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
19983 * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
19985 * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
19987 (gst_xvimagesink_xcontext_clear): Free the xcontext.
19988 (gst_xvimagesink_finalize): Free the par.
19990 2004-10-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19992 * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
19993 (gst_avimux_stop_file):
19994 First calculate the rate, and only then use it. Hdr.rate is a
19995 multiple and not a derivative of hdr.scale. Scale is not the
19996 same as blockalign but is solely related to rate.
19998 2004-10-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20000 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
20001 (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
20004 2004-10-25 James Henstridge <james@jamesh.id.au>
20006 Reviewed by: David Schleef <ds@schleef.org>
20008 * examples/gstplay/player.c: (got_stream_length), (main):
20009 * examples/seeking/cdplayer.c: (update_scale):
20010 * examples/seeking/seek.c: (format_value), (update_scale):
20011 * examples/seeking/spider_seek.c: (format_value), (update_scale),
20013 Build fixes on AMD64.
20015 2004-10-25 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20017 reviewed by: Ronald Bultje <rbultje at gnome dot org>
20019 * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
20020 Fix for some v4l cards which hang in v4lsrc
20022 2004-10-25 Wim Taymans <wim@fluendo.com>
20024 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
20025 (gst_ogg_demux_push), (gst_ogg_chains_clear):
20026 Make sure to remove the pad when a new chain is
20027 encountered. Set some vars to NULL so we don't try
20028 to reference freed memory.
20030 2004-10-25 Wim Taymans <wim@fluendo.com>
20032 * examples/seeking/Makefile.am:
20033 * examples/seeking/cdplayer.c: (update_scale):
20034 * examples/seeking/chained.c: (unlinked), (new_pad), (main):
20035 * examples/seeking/playbin.c: (make_playerbin_pipeline),
20036 (format_value), (update_scale), (iterate), (start_seek),
20037 (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
20038 (print_usage), (main):
20039 Added some more examples, update others.
20041 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20043 * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
20044 * ext/speex/gstspeexdec.c: (speex_dec_chain):
20045 * ext/theora/theoradec.c: (theora_dec_chain):
20046 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
20047 Add codec-name metadata.
20049 2004-10-25 Takao Fujiwara <Takao.Fujiwara@Sun.COM>
20051 Reviewd by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20053 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
20054 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
20055 * ext/alsa/gstalsamixertrack.h:
20057 ALSA mixer track label internationalization (#154054).
20059 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20061 * ext/theora/theoradec.c: (theora_dec_chain):
20062 Export bitrate as metadata.
20064 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20066 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
20067 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
20068 * ext/alsa/gstalsamixertrack.h:
20069 Fix names, fix loop.
20071 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20073 * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
20074 (speex_dec_convert):
20075 sinkconvert function so oggdemux can get the file length (totem).
20077 2004-10-25 James Morrison <ja2morri@csclub.uwaterloo.ca>
20079 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20081 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
20082 Don't push incomplete packets.
20083 * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
20084 Fix MPEG-4 audio typefinding.
20086 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20088 * sys/v4l/Makefile.am:
20089 * sys/v4l/gstv4l.c: (plugin_init):
20090 * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
20091 (gst_v4lelement_init), (gst_v4lelement_dispose),
20092 (gst_v4lelement_change_state):
20093 * sys/v4l/gstv4lelement.h:
20094 * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
20095 (gst_v4l_xoverlay_close), (idle_refresh),
20096 (gst_v4l_xoverlay_set_xwindow_id):
20097 * sys/v4l/gstv4lxoverlay.h:
20098 * sys/v4l/v4l-overlay_calls.c:
20099 * sys/v4l/v4l_calls.h:
20100 * sys/v4l2/Makefile.am:
20101 * sys/v4l2/gstv4l2.c: (plugin_init):
20102 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
20103 (gst_v4l2element_init), (gst_v4l2element_dispose),
20104 (gst_v4l2element_change_state):
20105 * sys/v4l2/gstv4l2element.h:
20106 * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
20107 (gst_v4l2_xoverlay_close), (idle_refresh),
20108 (gst_v4l2_xoverlay_set_xwindow_id):
20109 * sys/v4l2/gstv4l2xoverlay.h:
20110 * sys/v4l2/v4l2-overlay_calls.c:
20111 * sys/v4l2/v4l2_calls.h:
20112 Remove client-side overlay handling, use the X-server v4l plugin
20113 for that. Nicer overlay, less code. Also make the plugin
20114 compileable without X (but then without overlay, obviously).
20115 Makes xwindowlistener obsolete, should we remove that?
20117 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20119 * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
20120 (gst_osssrc_src_query):
20121 * sys/oss/gstosssrc.h:
20122 OK, so people want offset in DEFAULT. This time, actually fix all
20124 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
20127 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20129 * gst/asfdemux/gstasfmux.c:
20130 * gst/avi/gstavimux.c:
20133 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20135 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
20136 Fix properties (channel, norm, frequency).
20138 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20140 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
20142 * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
20145 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20147 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
20150 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20152 * sys/v4l2/gstv4l2element.h:
20153 Yet Another Hack (tm) for kernel header borkedness.
20154 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
20155 (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
20156 (gst_v4l2src_link), (gst_v4l2src_getcaps),
20157 (gst_v4l2src_change_state):
20158 * sys/v4l2/gstv4l2src.h:
20159 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
20160 (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
20161 Fix caps, keep track of state, work.
20163 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20165 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
20168 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20170 * sys/oss/gstosssrc.c: (gst_osssrc_get):
20171 Don't mix bytes and samples.
20173 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20175 * ext/ogg/gstoggmux.c:
20176 Basic pad template which accepts OGM tracks, speex, flac, vorbis
20177 and theora. Any is incorrect.
20178 * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
20180 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
20181 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
20182 (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
20183 (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
20184 * sys/v4l/gstv4lmjpegsrc.h:
20185 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
20186 (gst_v4lsrc_change_state):
20187 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
20188 (gst_v4lmjpegsrc_capture_stop):
20189 Fix caps. Keep track of internal state. Work.
20191 2004-10-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20194 Fix the build fixes.
20196 2004-10-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20198 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20199 (gst_ogg_demux_src_event), (_find_chain_seek),
20200 (gst_ogg_pad_push):
20201 Check for pad availability before using it.
20202 * ext/ogg/gstoggdemux.c: (_find_chain_process):
20203 Fix parsing of chained ogg. Needs more work on the decoder side.
20205 2004-10-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
20207 * gst/spectrum/Makefile.am:
20208 * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
20210 Fix demo and reenable it. Yes, I'm currently playing with audio
20213 2004-10-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20215 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
20216 We love it if files that start at zero work too...
20218 2004-10-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20220 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20221 Handle files with missing EOS headers.
20223 2004-10-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20225 * gst/tcp/gsttcpserversink.c:
20226 (gst_tcpserversink_handle_server_read),
20227 (gst_tcpserversink_init_send):
20228 Zero some variables first (need for accept not to return EINVAL)
20230 2004-10-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20232 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20233 (gst_ogg_demux_src_event), (gst_ogg_pad_push):
20234 * ext/theora/theoradec.c: (theora_dec_sink_convert),
20235 (theora_dec_chain):
20236 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
20237 (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
20238 Seeking and querying finetune.
20240 2004-10-20 Thomas Vander Stichele <thomas at apestaart dot org>
20244 * ext/raw1394/Makefile.am:
20247 2004-10-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20249 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20251 * gst/playback/Makefile.am:
20252 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
20253 * gst/playback/gstplay-marshal.list:
20254 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
20257 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20259 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
20262 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20264 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20265 (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
20266 (gst_ogg_pad_push):
20267 Yay for non-lineair granulepos in theora.
20269 2004-10-18 Wim Taymans <wim@fluendo.com>
20271 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
20272 (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
20273 * ext/dv/gstdvdec.h:
20274 Make sure we renegotiate aspect ratio when the camera switches.
20276 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20278 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20279 (gst_ogg_demux_src_event), (gst_ogg_pad_push):
20281 * ext/theora/theoradec.c: (theora_dec_chain):
20282 Skip headers. Bad idea for chained ogg, but fixes seeking.
20284 2004-10-18 Wim Taymans <wim@fluendo.com>
20287 I swear, this is the last time I touch this.
20289 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20291 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20292 (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
20293 (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
20295 * ext/theora/theoradec.c: (theora_dec_sink_convert):
20296 Time-to-default conversion.
20297 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
20298 Don't error on unknown packets, just skip. We should probably
20299 read them if we want to support chained ogg.
20301 2004-10-18 Wim Taymans <wim@fluendo.com>
20304 Added cdaudio to wrong list.
20306 2004-10-18 Wim Taymans <wim@fluendo.com>
20311 2004-10-18 Wim Taymans <wim@fluendo.com>
20313 * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
20314 (gst_dvdec_video_link), (gst_dvdec_push):
20315 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
20316 (gst_smokeenc_resync), (gst_smokeenc_chain):
20317 Fix mimetype on smoke encoder.
20318 Add aspect ratio to dvdec. Not sure if these
20319 values are correct though....
20321 2004-10-18 Wim Taymans <wim@fluendo.com>
20323 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
20324 Fix vorbis property descriptions and ranges.
20326 2004-10-18 Wim Taymans <wim@fluendo.com>
20328 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20329 Really do nothing when no data is available.
20330 Go to the playing state when the stream is not seekable
20331 instead of failing.
20333 2004-10-18 Wim Taymans <wim@fluendo.com>
20335 * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
20336 (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
20337 (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
20338 (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
20339 (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
20340 Added uri handler for cd://
20343 2004-10-18 Wim Taymans <wim@fluendo.com>
20345 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20346 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20347 (try_to_link_1), (no_more_pads), (close_link), (type_found):
20348 * gst/playback/gstplaybasebin.c: (gen_preroll_element),
20349 (remove_prerolls), (unknown_type), (add_element_stream),
20350 (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
20351 (gst_play_base_bin_remove_element),
20352 (gst_play_base_bin_link_stream):
20353 * gst/playback/gstplaybin.c: (gen_video_element),
20354 (gen_vis_element), (remove_sinks), (setup_sinks):
20355 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
20356 (gst_stream_info_get_type), (gst_stream_info_class_init),
20357 (gst_stream_info_init), (gst_stream_info_new),
20358 (gst_stream_info_dispose), (stream_info_mute_pad),
20359 (gst_stream_info_set_property), (gst_stream_info_get_property):
20360 * gst/playback/gststreaminfo.h:
20361 Add sink padtemplate to decodebin.
20362 Added some more comments.
20363 Make queue size configurable in playbasebin.
20364 Added possibility to use elements as sinks (ex cdaudio).
20366 2004-10-15 Wim Taymans <wim@fluendo.com>
20368 * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
20369 (gst_speexenc_chain):
20370 Fix speex timestamps so that it gets muxed properly.
20372 2004-10-15 Wim Taymans <wim@fluendo.com>
20374 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
20375 (gst_dv1394src_base_init), (gst_dv1394src_class_init),
20376 (gst_dv1394src_init), (gst_dv1394src_dispose),
20377 (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
20378 (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
20379 (gst_dv1394src_event), (gst_dv1394src_get_formats),
20380 (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
20381 (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
20382 (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
20383 (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
20384 * ext/raw1394/gstdv1394src.h:
20385 Added conversion/query functions.
20386 Update buffer timestamps,
20388 Added uri dv:// so it might play from the firewire in playbin.
20389 Fix a possible leak.
20392 2004-10-15 Wim Taymans <wim@fluendo.com>
20394 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
20395 (gst_dv1394src_init), (gst_dv1394src_set_property),
20396 (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
20397 (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
20398 * ext/raw1394/gstdv1394src.h:
20399 Added AV/C VTR control support needed for some cameras.
20400 Added automatic port detection.
20401 Added properties for selecting the channel.
20402 The configure.ac script is not yet updated to reflect the
20403 new libavc1394 and librom1394 dependencies.
20405 2004-10-15 Wim Taymans <wim@fluendo.com>
20407 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
20408 (qtdemux_parse), (gst_qtdemux_handle_esds):
20409 An esds box is not a container.
20410 Fix parsing of mp4v boxes.
20411 Do not try to renegotiate fps for each frame. Need to
20412 find a better method. This should fix mp4 playback.
20414 2004-10-14 David Schleef <ds@schleef.org>
20416 * configure.ac: update for swfdec-0.3 and liboil-0.2
20417 * ext/swfdec/gstswfdec.c: update for swfdec-0.3
20418 * ext/swfdec/gstswfdec.h: same
20419 * gst/videofilter/gstvideobalance.c: update for liboil-0.2
20420 * gst/videotestsrc/videotestsrc.c: same
20422 2004-10-14 Wim Taymans <wim@fluendo.com>
20424 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
20425 (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
20426 (is_sync_frame), (gst_multifdsink_new_client),
20427 (gst_multifdsink_handle_client_write),
20428 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
20429 (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
20430 Turn warnings into info.
20431 Don't allow a state change in the streaming thread.
20433 2004-10-14 Thomas Vander Stichele <thomas at apestaart dot org>
20435 * ext/vorbis/oggvorbisenc.c:
20436 * ext/vorbis/vorbisdec.c:
20437 fix template sample rate
20439 2004-10-13 Wim Taymans <wim@fluendo.com>
20441 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
20442 Decoding the header first fixes some problems in resyncing
20445 2004-10-12 Wim Taymans <wim@fluendo.com>
20447 * gst/playback/gstplaybin.c: (gen_video_element),
20448 (gen_vis_element), (remove_sinks), (setup_sinks):
20449 Added vis plugin support, need to configure the vis
20450 element to activate it.
20452 2004-10-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20454 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
20455 (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
20457 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
20458 (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
20459 (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
20460 (gst_avi_demux_stream_index), (gst_avi_demux_skip),
20461 (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
20462 (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
20463 * gst/avi/gstavidemux.h:
20464 Support for openDML-2.0 indx/ix## chunks. Support for broken index
20465 recovery (where, if part of the index is broken, we will still read
20466 the rest of the index and recover the broken part by stream
20467 scanning). More broken media support. EOS workarounds. General AVI
20468 braindamage headache recovery. Aspirin included.
20470 2004-10-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20472 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
20473 (cdparanoia_event), (cdparanoia_query):
20474 Get rid of hideous lead-in.
20476 2004-10-11 Wim Taymans <wim@fluendo.com>
20478 * gst/playback/gstplaybasebin.c: (setup_source):
20479 Wrong var used to get g_list_next.
20481 2004-10-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20483 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
20484 (cdparanoia_get), (cdparanoia_open):
20485 Report discid as metadata, add duration.
20487 2004-10-11 Wim Taymans <wim@fluendo.com>
20489 * gst/playback/gstplaybasebin.c: (setup_source):
20490 Cleanup the previous pipeline a little earlier for the
20491 case that a source element provides raw data.
20493 2004-10-11 Benjamin Otte <otte@gnome.org>
20495 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
20496 reset v1 tag offset when there is no v1 tag. Fixes id3demux always
20497 consuming the last 128 bytes, even though it was valid mp3 data.
20499 2004-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20501 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
20502 (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
20503 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
20504 Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
20506 2004-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20508 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
20509 Fix for webcams that support only specific width or height
20511 2004-10-09 Tim-Philipp Müller <t.i.m@zen.co.uk>
20513 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20515 * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
20516 Fix wrong discont event setup (fixes #154967).
20518 2004-10-09 Sebastien Cote <sc5@hermes.usherb.ca>
20520 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20522 * gst/auparse/gstauparse.c: (gst_auparse_chain):
20523 Error out on invalid data (fixes #154807).
20525 2004-10-09 Tim-Philipp Müller <t.i.m@zen.co.uk>
20527 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20529 * ext/dvdread/dvdreadsrc.c: (_read):
20530 Make titles > 0 work again (fixes #154834).
20532 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20534 * gst-libs/gst/riff/riff-media.c:
20535 (gst_riff_create_video_template_caps):
20536 WMV3 missing in template caps.
20538 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20540 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20541 OK, so the original code was too strict. It makes random AVI files
20542 hang for seconds upon opening, which is unacceptable and is far
20543 beyond the original goal of getting multiple chunks for one-chunk
20544 sounc stream files. So now do just that.
20546 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20548 * gst/playback/gstplaybasebin.c: (setup_source),
20549 (gst_play_base_bin_change_state):
20550 Actually clean up streaminfo if output fails. This would trigger
20551 if, for example, there was no CD in the drive. No preroll, so
20552 a streaminfo structure is created, but the subsequent state change
20553 of the thread fails.
20554 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
20555 Don't change state if parent failed.
20557 2004-10-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20559 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
20560 (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
20561 (gen_video_element), (remove_sinks):
20562 Add small bits of code for screenshot handling.
20564 2004-10-08 Wim Taymans <wim@fluendo.com>
20566 * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
20567 (gen_video_element), (gen_audio_element), (setup_sinks):
20568 Don't assume the user provided sinks are named "sink"...
20570 2004-10-08 Wim Taymans <wim@fluendo.com>
20572 * gst/playback/gstplaybasebin.c: (gen_preroll_element),
20573 (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
20574 (gst_play_base_bin_link_stream):
20575 Do not try to autoplug sources that generate raw streams like
20577 disconnect the preroll overrun signal when we don't need it anymore.
20579 2004-10-08 Milosz Derezynski <internalerror.rez@fhtw-berlin.de>
20581 * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20582 Added reworked patch from #154903 from milosz derezynski (deadchip).
20584 2004-10-08 Wim Taymans <wim@fluendo.com>
20586 * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20587 (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
20588 (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
20589 (cdparanoia_convert), (cdparanoia_uri_get_type),
20590 (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
20591 (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
20592 * ext/cdparanoia/gstcdparanoia.h:
20593 This adds the cdda://<tracknum> uri.
20595 2004-10-08 Wim Taymans <wim@fluendo.com>
20597 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20598 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20599 (try_to_link_1), (no_more_pads), (close_link), (type_found):
20600 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
20601 (unknown_type), (gst_play_base_bin_remove_element),
20602 (gst_play_base_bin_link_stream):
20603 * gst/playback/gstplaybasebin.h:
20604 * gst/playback/gstplaybin.c: (gst_play_bin_init),
20605 (gst_play_bin_set_property), (gen_video_element),
20606 (gen_audio_element), (setup_sinks):
20607 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
20608 (gst_stream_info_get_type), (gst_stream_info_class_init),
20609 (gst_stream_info_init), (gst_stream_info_new),
20610 (gst_stream_info_dispose), (stream_info_mute_pad),
20611 (gst_stream_info_set_property), (gst_stream_info_get_property):
20612 * gst/playback/gststreaminfo.h:
20613 Reuse the audio and video bins.
20614 Some internal cleanups in the stream selection code.
20616 2004-10-08 Julien MOUTTE <julien@moutte.net>
20618 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20619 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20620 * sys/ximage/ximagesink.h:
20621 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20622 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20623 * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
20624 not coming from those elements. Moreover these elements should not keep
20625 the xid they have been given when in NULL state.
20627 2004-10-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20629 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20630 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20631 * sys/ximage/ximagesink.h:
20632 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20633 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20634 * sys/xvimage/xvimagesink.h:
20635 Actually only create a new toplevel window if we're not gonna
20636 embed it right after.
20638 2004-10-07 Wim Taymans <wim@fluendo.com>
20640 * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
20641 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
20642 * gst/playback/gstplaybin.c: (setup_sinks):
20643 Implement muting/unmuting of streams, mute streams that are not
20646 2004-10-07 Wim Taymans <wim@fluendo.com>
20648 * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
20650 Added lame audio/x-ac3 typefind function.
20652 2004-10-06 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
20657 === release 0.8.5 ===
20659 2004-10-06 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
20664 releasing 0.8.5, "Take You On"
20666 2004-10-06 Wim Taymans <wim@fluendo.com>
20668 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20669 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
20670 (no_more_pads), (close_link), (type_found):
20671 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20672 * gst/playback/gstplaybin.c: (gen_video_element):
20673 Do not signal the no_more_pads after the first pad when
20674 we are plugging a non dynamic element with multiple
20675 output pads (like swfdec, dvdec, ...).
20677 2004-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
20680 bump for prerelease
20682 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20684 * gst/wavparse/gstwavparse.c:
20685 add ATRAC3 to STATIC CAPS to fix a warning
20687 * gst/matroska/ebml-read.c:
20688 * gst-libs/gst/riff/riff-read.c:
20691 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20693 * gst-libs/gst/riff/riff-media.c:
20694 generate caps for ATRAC3 audio streams
20696 * gst/realmedia/rmdemux.c:
20697 generate caps for ATRAC3 audio streams
20699 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20701 * gst/wavparse/Makefile.am
20702 * gst/wavparse/riff.h
20703 * gst/wavparse/wavparse.vcproj
20704 riff.h removal (unused and duplication with riff-ids.h)
20706 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20708 * gst/wavparse/gstwavparse.h
20709 remove duplicated defines for audio codec codes
20711 * gst-libs/gst/riff/riff-ids.h
20712 * gst/wavenc/riff.h:
20713 add "4CC" code for ATRAC3 audio streams
20714 add "4CC" code for ITU_G721_ADPCM (unused for now)
20716 2004-10-06 Wim Taymans <wim@fluendo.com>
20718 * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
20719 Actually _do_ negotiation. Pass gdouble as arg instead
20720 of guint64 for the framerate.
20722 2004-10-06 Wim Taymans <wim@fluendo.com>
20724 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20725 (find_compatibles), (close_pad_link), (try_to_link_1),
20726 (no_more_pads), (close_link), (type_found):
20727 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20728 * gst/playback/gstplaybin.c: (gen_video_element),
20729 (gen_audio_element):
20730 Set state on newly added element to READY so that negotiation
20732 Addes some more debug info.
20733 Do not try to plug pads with multiple caps structures or ANY
20734 because it is too dangerous since we do not do dynamic
20737 2004-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
20739 written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
20743 add Oriya translation
20745 2004-10-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20747 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20748 Prevent overwrite of size member. Makes audio sound crappy.
20750 2004-10-05 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20752 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
20753 Add rmvb to the list of known RealMedia extensions
20755 2004-10-05 Wim Taymans <wim@fluendo.com>
20757 * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
20758 (mngdec_openstream), (mngdec_closestream),
20759 (mngdec_handle_sink_event), (mngdec_readdata),
20760 (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
20761 (mngdec_getcanvasline), (mngdec_refresh),
20762 (gst_mngdec_change_state):
20763 Set the framerate correctly.
20765 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20767 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20768 There was something wrong with the index massaging.
20770 2004-10-04 Wim Taymans <wim@fluendo.com>
20772 * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
20773 * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
20774 (gst_smokedec_chain):
20775 * ext/jpeg/gstsmokedec.h:
20776 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
20777 (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
20778 * ext/jpeg/gstsmokeenc.h:
20779 * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
20780 (smokecodec_decode_new), (smokecodec_info_free),
20781 (smokecodec_set_quality), (smokecodec_get_quality),
20782 (smokecodec_set_threshold), (smokecodec_get_threshold),
20783 (smokecodec_set_bitrate), (smokecodec_get_bitrate),
20784 (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
20785 (smokecodec_encode), (smokecodec_parse_id),
20786 (smokecodec_parse_header), (smokecodec_decode):
20787 * ext/jpeg/smokecodec.h:
20788 * ext/jpeg/smokeformat.h:
20789 Updated smoke, new bitstream, allows embedding in ogg.
20791 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20793 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
20794 Fix seeking in some files. All this code is no longer needed (and
20795 actually breaks stuff) because we now synchronize the full index
20796 right when reading the header.
20798 2004-10-04 Wim Taymans <wim@fluendo.com>
20801 configure update for libmng.
20803 2004-10-04 Wim Taymans <wim@fluendo.com>
20805 * ext/libmng/Makefile.am:
20806 * ext/libmng/gstmng.c: (plugin_init):
20807 * ext/libmng/gstmng.h:
20808 * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
20809 (gst_mngdec_base_init), (gst_mngdec_class_init),
20810 (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
20811 (gst_mngdec_loop), (gst_mngdec_get_property),
20812 (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
20813 (mngdec_closestream), (mngdec_handle_sink_event),
20814 (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
20815 (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
20816 (gst_mngdec_change_state):
20817 * ext/libmng/gstmngdec.h:
20818 * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
20819 (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
20820 (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
20821 (gst_mngenc_chain), (gst_mngenc_get_property),
20822 (gst_mngenc_set_property):
20823 * ext/libmng/gstmngenc.h:
20824 Added basic MNG decoder. Needs more work. The encoder does
20827 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20829 * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
20830 (gst_rmdemux_loop), (gst_rmdemux_add_stream),
20831 (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
20832 Don't hang on length=0 chunks. Some negotiation fixes. Signal
20835 2004-10-04 Thomas Vander Stichele <thomas at apestaart dot org>
20838 you need at least 1.0.4 of speex
20840 2004-10-04 Iain <iaingnome@gmail.com>
20842 * ext/speex/gstspeexdec.h: Revert the includes changes.
20844 * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
20846 2004-09-30 Iain <iaingnome@gmail.com>
20848 * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
20849 found during init or set as a property instead of hardcoding /dev/audio
20851 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20853 * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
20854 (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
20855 (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
20856 (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
20857 (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
20858 (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
20859 (gst_rmdemux_dump_data):
20860 Use debug category, fix EOS handling. filesrc ! rmdemux now
20863 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20865 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
20866 (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
20867 (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
20868 Improve allocation, cutting and sorting of the index. How takes a
20869 few seconds instead of minutes.
20871 2004-10-03 Christophe Fergeau <teuf@gnome.org>
20873 * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
20876 2004-10-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20878 * gst-libs/gst/riff/riff-media.c:
20879 (gst_riff_create_video_caps_with_data),
20880 (gst_riff_create_video_template_caps):
20881 Add wing commander format mimetype/fourccs.
20882 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20883 Don't crash if some value is 0.
20885 2004-10-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20887 * gst-libs/gst/riff/riff-media.c:
20888 (gst_riff_create_video_caps_with_data),
20889 (gst_riff_create_video_template_caps):
20890 Add DIB fourcc (raw, palettized 8-bit RGB).
20891 * gst-libs/gst/riff/riff-read.c:
20892 (gst_riff_read_strf_vids_with_data):
20893 Oops, fix strf_data reading bug.
20894 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
20895 Use a non-NULL tag.
20896 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
20897 Time for hacks. Sorry Dave. At least one quicktime movie (a
20898 trailer) that I've encountered contains multiple video tracks.
20899 One of those is the actual video track, the other are one-frame
20900 tracks (images). Unfortunately, the number of frames according
20901 to the trak header is 1 for each, so that doesn't help. So
20902 instead, I look at the duration and discard tracks with a
20903 duration shorter than 20% of the length of the stream. Better
20906 2004-10-01 Christian Schaller <christian@fluendo.com>
20908 * ext/ivorbis/vorbis.c:
20909 Patch from Phil Blundell (Bug 152341)
20911 2004-10-01 Wim Taymans <wim@fluendo.com>
20913 * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
20914 (speex_dec_get_formats), (speex_dec_convert),
20915 (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
20916 (speex_dec_chain), (gst_speexdec_get_property),
20917 (gst_speexdec_set_property):
20920 2004-10-01 Wim Taymans <wim@fluendo.com>
20922 * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
20923 (gst_wavparse_stream_init), (gst_wavparse_fmt),
20924 (gst_wavparse_other), (gst_wavparse_loop),
20925 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
20926 (gst_wavparse_srcpad_event):
20927 * gst/wavparse/gstwavparse.h:
20928 Added some more debugging info.
20929 Fix the case where the length of the file is 0.
20930 Make sure we seek to sample borders.
20932 2004-10-01 Wim Taymans <wim@fluendo.com>
20934 * gst/playback/README:
20935 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
20936 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20937 (try_to_link_1), (no_more_pads), (close_link), (type_found):
20938 Add some debug info to decodebin, update README
20940 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20942 * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
20943 Don't use g_print(); use GST_DEBUG().
20945 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20947 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
20948 (gst_ogg_mux_queue_pads):
20949 Handle EOS properly.
20951 2004-10-01 Sebastien Cote <sc5@hermes.usherb.ca>
20953 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20955 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
20956 (gst_faad_chain), (gst_faad_change_state):
20957 * ext/faad/gstfaad.h:
20958 Allow playback of raw (unframed) MPEG AAC files (#148993).
20960 2004-10-01 Sebastien Cote <sc5@hermes.usherb.ca>
20962 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20964 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
20965 Throw error if we didn't recognize the stream. Fixes #152289.
20967 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20969 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
20972 2004-10-01 Francis Labonte <francis_labonte@hotmail.com>
20974 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20976 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
20979 2004-10-01 Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
20981 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20983 * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
20985 * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
20988 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20990 * gst-libs/gst/riff/riff-media.c:
20991 (gst_riff_create_video_caps_with_data),
20992 (gst_riff_create_audio_caps_with_data):
20993 Add codec_data handling (like asfdemux used to do).
20994 * gst/asfdemux/gstasf.c: (plugin_init):
20995 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
20996 (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
20997 Use riff-media for caps creation instead of our own (mostly
20998 broken) copy of its functions.
21000 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21002 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
21003 Don't actually error out if we get another return value than
21004 -EINVAL. Opposite to what I first thought, drivers have random
21005 return values for this, although -EINVAL is the expected return
21006 value. Since this is not fatal, we shouldn't use
21007 GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
21009 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21011 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
21012 (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
21013 (dvdreadsrc_get_property), (_open), (_seek), (_read),
21014 (dvdreadsrc_get), (dvdreadsrc_open_file),
21015 (dvdreadsrc_change_state):
21016 Fix. Don't do one big huge loop around the whole DVD, that will
21017 cache all data and thus eat sizeof(dvd) (several GB) before we
21019 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
21020 Actually NULL'ify event after using it.
21021 * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
21022 (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
21023 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
21024 (gst_ebml_read_seek), (gst_ebml_read_skip):
21026 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
21027 (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
21028 (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
21029 Fix timing (this will probably break if I seek using menus, but
21030 I didn't get there yet). VOBs and normal DVDs should now work.
21031 Add a mpeg2-only pad with high rank so this get autoplugged for
21033 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
21034 (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
21035 (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
21036 (gst_mpeg_demux_get_audio_stream),
21037 (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
21038 (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
21039 Use this as second rank for MPEG-1 and MPEG-2. Still use this for
21040 MPEG-1 but use dvddemux for MPEG-2.
21041 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
21042 (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
21043 (gst_mpeg_parse_parse_packhead):
21044 Timing. Only add pad template if it exists. Add sink template from
21045 class and not from ourselves. This means we will always use the
21046 correct sink template even if it is not the one defined in this
21049 2004-09-29 Wim Taymans <wim@fluendo.com>
21051 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
21052 (gst_mpeg_demux_parse_pes):
21053 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
21054 Fix playback of mpeg again, timestamps where screwed up by
21057 2004-09-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21059 * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
21060 Only return true if we actually filled something in. Prevents
21061 player applications from showing a random length for flac files.
21062 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
21063 (gst_riff_read_use_event), (gst_riff_read_handle_event),
21064 (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
21065 (gst_riff_read_strf_vids_with_data),
21066 (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
21067 OK, ok, so I implemented event handling. Apparently it's normal
21068 that we receive random events at random points without asking
21070 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
21071 (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
21072 (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
21073 (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
21074 (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
21075 (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
21076 (gst_avi_demux_stream_data), (gst_avi_demux_loop):
21077 * gst/avi/gstavidemux.h:
21078 Implement non-lineair chunk handling and subchunk processing.
21079 The first solves playback of AVI files where the audio and video
21080 data of individual buffers that we read are not synchronized.
21081 This should not happen according to the wonderful AVI specs, but
21082 of course it does happen in reality. It is also a prerequisite for
21083 the second. Subchunk processing allows us to cut chunks in small
21084 pieces and process each of these pieces separately. This is
21085 required because I've seen several AVI files with incredibly large
21086 audio chunks, even some files with only one audio chunk for the
21087 whole file. This allows for proper playback including seeking.
21088 This patch is supposed to fix all AVI A/V sync issues.
21089 * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
21090 (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
21092 * gst/modplug/gstmodplug.cc:
21093 Proper return value setting for the query() function.
21094 * gst/playback/gstplaybasebin.c: (setup_source):
21095 Being in non-playing state (after, e.g., EOS) is not necessarily
21096 a bad thing. Allow for that. This fixes playback of short files.
21097 They don't actually playback fully now, because the clock already
21098 runs. This means that small files (<500kB) with a small length
21099 (<2sec) will still not or barely play. Other files, such as mod
21100 or flx, will work correctly, however.
21102 2004-09-28 Wim Taymans <wim@fluendo.com>
21104 * ext/speex/gstspeex.c: (plugin_init):
21105 * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
21106 (gst_speex_dec_class_init), (speex_dec_get_formats),
21107 (speex_get_event_masks), (speex_get_query_types),
21108 (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
21109 (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
21110 (gst_speexdec_get_property), (gst_speexdec_set_property),
21111 (speex_dec_change_state):
21112 * ext/speex/gstspeexdec.h:
21113 * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
21114 (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
21115 (gst_speexenc_base_init), (gst_speexenc_class_init),
21116 (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
21117 (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
21118 (gst_speexenc_src_query), (gst_speexenc_init),
21119 (gst_speexenc_get_tag_value), (comment_init), (comment_add),
21120 (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
21121 (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
21122 (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
21123 (gst_speexenc_chain), (gst_speexenc_get_property),
21124 (gst_speexenc_set_property), (gst_speexenc_change_state):
21125 * ext/speex/gstspeexenc.h:
21126 Rewrote speex encoder, make sure it can be embedded in ogg.
21127 Implemented speex decoder.
21129 2004-09-28 Christian Schaller <christian@fluendo.com>
21132 Remove kioslave plugin. Markey is brewing a new working one
21133 * ext/Makefile.am: Remove kioslave plugin
21135 * gst-plugins.spec.in: remove kio plugin from spec
21137 2004-09-27 Wim Taymans <wim@fluendo.com>
21139 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21140 (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
21141 (is_sync_frame), (gst_multifdsink_client_queue_buffer),
21142 (gst_multifdsink_new_client),
21143 (gst_multifdsink_handle_client_write),
21144 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
21145 (gst_multifdsink_handle_clients):
21146 * gst/tcp/gstmultifdsink.h:
21147 Make syncing to keyframes actually work for new clients and lagging
21150 2004-09-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
21152 * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
21153 (gst_navigationtest_handle_src_event), (draw_box_planar411),
21154 (gst_navigationtest_planar411), (gst_navigationtest_change_state):
21155 * gst/debug/gstnavigationtest.h:
21156 make navigationtest display button-press and button-release events
21158 2004-09-26 Iain <iaingnome@gmail.com>
21160 * gst/interleave/interleave.c (all_channels_new_media): Checks if all
21161 the channels have received a new media event.
21162 (interleave_buffered_loop): Compresses a new media event on all
21165 2004-09-26 Iain <iaingnome@gmail.com>
21167 * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
21168 call the sinkpad's default event handler and not the srcpads. He also
21169 says this is confusing :)
21170 (gst_wavenc_stop_file): Company says that seek events only go upstream
21171 we should send a discontinuous downstream instead.
21173 2004-09-25 Christian Schaller <christian@fluendo.com>
21175 * Update SPEC file to be usable in conjunction with Fedora Core,
21176 Fedora.us and freshrpms packages
21177 * Fix typo in multifilesrc test Makefile
21179 2004-09-24 Wim Taymans <wim@fluendo.com>
21181 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
21182 Only signal the no_more_pads signal when we have
21183 added the stream to our list.
21185 2004-09-24 Wim Taymans <wim@fluendo.com>
21187 * gst/playback/gstplaybasebin.c: (remove_prerolls),
21189 * gst/playback/gstplaybasebin.h:
21190 * gst/playback/gstplaybin.c: (setup_sinks):
21191 Don't try to preroll or decode more than one audio/video
21194 2004-09-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21196 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
21197 Throw error if we failed to find a suitable output. This should
21198 throw an error if we successfully set up a pipeline (e.g. because
21199 we recognized a media file) but found no decodable streams in it
21200 (e.g. because it contains only media stream types for which we
21201 have no decoders, or because it's not a media type).
21203 2004-09-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21205 * ext/dirac/Makefile.am:
21206 * ext/dirac/gstdirac.cc:
21207 * ext/dirac/gstdiracdec.cc:
21208 * ext/dirac/gstdiracdec.h:
21209 Do something. Don't actually know if this works because I don't
21210 have a demuxer yet.
21211 * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
21212 Add channels=1 to caps returned from _getcaps().
21213 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
21214 (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
21215 (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
21216 (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
21217 (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
21218 (gst_ogm_parse_change_state):
21219 Separate between audio/video so ogmaudioparse actually uses the
21220 audio pad templates. Both audio and video work now, including
21221 autoplugging. Also use sometimes-srcpad hack.
21222 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
21223 Handle events better. Don't hang on infinite loops.
21224 * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
21225 (gst_avi_demux_init), (gst_avi_demux_reset),
21226 (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
21227 (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
21228 (gst_avi_demux_change_state):
21229 * gst/avi/gstavidemux.h:
21230 Improve A/V sync. Still not perfect.
21231 * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
21232 (gst_ebml_read_skip):
21233 Handle events better.
21234 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
21235 (gst_qtdemux_loop_header), (qtdemux_parse_trak),
21236 (qtdemux_audio_caps):
21237 Add IMA4. Improve event handling. Save offset after a seek when
21238 the headers are at the end of the file so that we don't end up in
21240 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
21241 Add low-priority typefind support for files with no length.
21243 2004-09-23 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21245 * testsuite/multifilesink/Makefile.am:
21248 2004-09-22 Julien MOUTTE <julien@moutte.net>
21250 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
21251 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
21252 mistakes from thaytan's patches.
21254 2004-09-23 Jan Schmidt <thaytan@mad.scientist.com>
21256 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
21257 For completeness, XSync in the destroy function as xvimage does.
21259 2004-09-23 Jan Schmidt <thaytan@mad.scientist.com>
21261 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
21262 Correct caps negotiation
21263 * gst/volume/gstvolume.c: (volume_chain_float),
21264 (volume_chain_int16):
21265 Modify debug output to be little more informative
21266 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
21267 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21268 (gst_xvimagesink_xvimage_destroy):
21269 Add XSync calls after detaching from the shared memory segment to
21272 2004-09-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21274 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
21275 (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
21276 * ext/vorbis/vorbis.c: (plugin_init):
21277 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
21278 (gst_vorbisenc_chain):
21279 * ext/vorbis/vorbisenc.h:
21280 remove explicit newmedia support from oggmux and vorbisenc
21281 add debug category to vorbisenc
21282 * gst/multifilesink/gstmultifilesink.c:
21283 (gst_multifilesink_class_init), (gst_multifilesink_init),
21284 (gst_multifilesink_dispose), (gst_multifilesink_set_location),
21285 (gst_multifilesink_set_property), (gst_multifilesink_next_file),
21286 (gst_multifilesink_handle_event), (gst_multifilesink_chain),
21288 * gst/multifilesink/gstmultifilesink.h:
21289 add support for streamheader in multifilesink
21291 2004-09-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21293 * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
21294 (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
21295 (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
21296 Prevent infinite loops. More correct error reporting.
21297 * gst/auparse/gstauparse.c: (gst_auparse_chain):
21298 Error out if negotiation fails.
21299 * gst/playback/gstplaybasebin.c: (setup_source),
21300 (gst_play_base_bin_change_state), (gst_play_base_bin_error),
21301 (gst_play_base_bin_found_tag):
21302 Error/tag forwarding. Pre-roll fixes for source errors on state
21303 changes (e.g. "file does not exist") to prevent hangs.
21305 2004-09-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21307 * testsuite/multifilesink/Makefile.am:
21308 * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
21309 (gst_newmedia_class_init), (gst_newmedia_init),
21310 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
21311 (newfile_signal), (test_signal), (main):
21312 * testsuite/multifilesink/multifilesrc_test.c: (main):
21313 * testsuite/multifilesink/oggtheora_test.c:
21314 (gst_newmedia_base_init), (gst_newmedia_class_init),
21315 (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
21316 (test_format), (newfile_signal), (test_signal), (main):
21317 * testsuite/multifilesink/oggvorbis_test.c:
21318 (gst_newmedia_base_init), (gst_newmedia_class_init),
21319 (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
21320 (test_format), (newfile_signal), (test_signal), (main):
21321 * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
21322 (gst_newmedia_class_init), (gst_newmedia_init),
21323 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
21324 (newfile_signal), (test_signal), (main):
21327 2004-09-20 Christian Schaller <christian@fluendo.com>
21329 * Fix mikmod license to LGPL as they have relicensed
21330 * Move Dirac and Effectv into LGPL section of README_license
21332 2004-09-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21334 * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
21335 (gst_mad_change_state):
21336 Allow for mp3 rate/channels changes. However, only very
21337 conservatively. Reason that we *have* to enable this is smiply
21338 because the mad find_sync() function is not good enough, it will
21339 regularly sync on random data as valid frames and therefore make
21340 us provide random caps as *final* caps of the stream. The best fix
21341 I could think of is to simply require several of the same stream
21342 changes in a row before we change caps.
21343 The actual testcase that works now is #
21344 * ext/ogg/Makefile.am:
21345 * ext/ogg/gstogg.c: (plugin_init):
21346 * ext/ogg/gstogmparse.c:
21347 OGM support (video only for now; I need an audio sample file).
21348 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
21349 (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
21350 (gst_asf_demux_add_video_stream):
21352 * gst/playback/gstplaybasebin.c: (unknown_type):
21353 Don't error out on single unknown-types after all. It's wrong.
21354 If we found type of video and audio but not of a subtitle stream,
21355 it will still error out (which is unwanted). Will find a better fix
21357 * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
21358 (ogmaudio_type_find), (plugin_init):
21361 2004-09-20 Johan Dahlin <johan@gnome.org>
21363 * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
21364 after setting caps.
21366 2004-09-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21368 * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
21369 * gst/wavenc/gstwavenc.h:
21370 Added newmedia support to wavenc
21372 2004-09-17 Wim Taymans <wim@fluendo.com>
21374 * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
21375 (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
21376 (gst_fdset_fd_can_write), (gst_fdset_wait):
21377 * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
21378 (gst_multifdsink_init), (gst_multifdsink_add),
21379 (gst_multifdsink_remove), (gst_multifdsink_get_stats),
21380 (gst_multifdsink_remove_client_link),
21381 (gst_multifdsink_client_queue_buffer),
21382 (gst_multifdsink_handle_client_write),
21383 (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
21384 (gst_multifdsink_close), (gst_multifdsink_change_state):
21385 * gst/tcp/gstmultifdsink.h:
21386 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
21387 (gst_tcpserversink_removed):
21388 Small cleanups in fdset.c
21389 Use a hastable to map fd to the client structure for faster
21390 lookup in _remove and get_stats.
21391 Added virtual function to close the fds.
21392 Handle clients even when the select/poll call was unblocked because
21394 Implement syncing to keyframe in the recovery procedure.
21396 2004-09-16 Iain <iaingnome@gmail.com>
21398 * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
21401 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21403 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
21404 Caps are only set if the type of the stream is unknown, but this
21405 is initialized in ->init_stream(), so set to UNKNOWN after calling
21406 ->init_stream() so that capsnego starts.
21408 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21410 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21411 (gst_avi_demux_stream_data):
21412 Just hardcode for raw audio then. AVI audio sucks.
21414 2004-09-15 Arwed v. Merkatz <v.merkatz@gmx.net>
21416 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
21417 * gst/matroska/matroska-mux.c: (audiosink_templ),
21418 (gst_matroska_mux_audio_pad_link):
21419 * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
21420 Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
21422 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21424 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21425 (gst_avi_demux_stream_data):
21426 Try to fix a/v sync issues.
21428 2004-09-15 David Schleef <ds@schleef.org>
21430 * configure.ac: remove NASM check, since we don't use it. Update
21432 * ext/dirac/gstdiracdec.cc: update to current 0.4 API
21433 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
21434 Initialized variables.
21435 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
21436 (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
21437 (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
21440 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21442 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21443 (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
21444 * gst/avi/gstavidemux.h:
21445 Fix for compressed audio (mp3) timestamp generation. How did this
21448 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21450 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
21451 Volume is a double not a float.
21453 2004-09-15 Wim Taymans <wim@fluendo.com>
21455 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
21456 (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
21457 Don't close the fd in multifdsink as we didn't open it in the
21458 first place. Some cleanups.
21460 2004-09-15 Wim Taymans <wim@fluendo.com>
21462 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
21463 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21464 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21465 Fix the case where the muxer would mark pages as delta
21466 frames when they are not (vorbis only ogg).
21468 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21470 * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
21471 (gst_play_base_bin_change_state):
21472 Handle the case where we failed to setup a clear pipeline. This
21473 will throw an error (or EOS, another nice case) and if you don't
21474 catch that, the app will wait for the signal forever (and thus
21477 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21479 * ext/gnomevfs/gstgnomevfssink.c:
21480 (gst_gnomevfssink_uri_get_protocols):
21481 * ext/gnomevfs/gstgnomevfssrc.c:
21482 (gst_gnomevfssrc_uri_get_protocols):
21483 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
21484 * ext/gnomevfs/gstgnomevfsuri.h:
21485 Use _uri_new() instead of _open(), so it doesn't take as long and
21486 Christophe's computer won't hang.
21487 * gst/playback/gstplaybasebin.c: (unknown_type):
21488 Throw error on unknown media type, so apps actually display it.
21490 2004-09-14 Brian Cameron <brian.cameron@sun.com
21492 * tools/gst-launch-ext-m.m: Changed ~ to $ENV{HOME} to allow
21493 this script to work on Solaris since bash shell handles echo
21494 differenly than bash.
21496 2004-09-17 Wim Taymans <wim@fluendo.com>
21498 * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
21499 (setup_source), (gst_play_base_bin_set_property),
21500 (gst_play_base_bin_add_element):
21501 * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
21502 Some more work on making sure seeking pauses the pipeline and
21503 that changing the uri actually does something.
21505 2004-09-17 Wim Taymans <wim@fluendo.com>
21507 * gst/tcp/gstfdset.c: (gst_fdset_wait):
21508 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
21509 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
21510 (gst_tcpserversink_close):
21511 Be a bit more paranoid when freeing memory.
21513 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21515 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
21516 (qtdemux_parse_trak):
21517 Don't crash by dividing by zero (see sample movie in #126922).
21519 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21521 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
21522 Don't touch non-existing data (fixes crash on file in #140147).
21524 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21526 * gst/playback/gstplaybasebin.c:
21527 (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
21528 Handle double disposals, and proper change of URIs.
21530 2004-09-13 Martin Eikermann <meiker@upb.de>
21532 * gst/mpegstream/gstmpegparse.c:
21533 fix synchronistation for streams recorded from digital PCR
21536 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21538 * ext/gnomevfs/Makefile.am:
21539 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
21540 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
21541 (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
21542 (gst_gnomevfssink_uri_get_type),
21543 (gst_gnomevfssink_uri_get_protocols),
21544 (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
21545 (gst_gnomevfssink_uri_handler_init),
21546 (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
21547 (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
21548 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
21549 (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
21550 (gst_gnomevfssrc_uri_get_type),
21551 (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
21552 (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
21553 (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
21554 (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
21555 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
21556 * ext/gnomevfs/gstgnomevfsuri.h:
21557 Add URI support to Gnome-VFS plugins. Tries to load a fixed list
21558 of fake URIs to see which this version of Gnome-VFS likes, and
21559 uses that for the Gst-URI interface. Makes playbin support http://
21560 streams. Also fix up some stupid behaviour in gnomevfssrc.
21562 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21564 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
21565 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
21566 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
21567 (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
21568 Update mixer (to sync with other sessions) if we try to obtain
21569 a new value. This makes alsamixer work accross applications.
21570 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
21571 Only call sync functions if we're running, else alsalib asserts.
21572 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
21573 Sometimes fails to compile. Possibly a gcc bug.
21574 * gst/playback/gstplaybin.c: (gen_video_element),
21575 (gen_audio_element):
21576 Add a reference to an application-provided object, because we lose
21577 this same reference if we add it to the bin. If we don't do this,
21578 we can only use this object once and thus crash if we go from
21579 ready to playing, back to ready and back to playing again.
21580 Also add an audioscale element because several cheap soundcards -
21581 like mine - don't support all samplerates.
21582 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
21583 (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
21584 Fix wrong order or PAR calls. Makes automatically obtained PAR
21585 from the X server atually being used.
21587 2004-09-12 David Schleef <ds@schleef.org>
21589 Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
21590 #151887, #152102, #152247.
21591 * examples/indexing/indexmpeg.c: 64-bit warning fixes.
21592 * examples/seeking/cdparanoia.c: same
21593 * examples/seeking/cdplayer.c: same
21594 * examples/seeking/seek.c: same
21595 * examples/seeking/spider_seek.c: same
21596 * examples/seeking/vorbisfile.c: same
21597 * examples/stats/mp2ogg.c: same
21598 * ext/esd/esdsink.c: (gst_esdsink_class_init),
21599 (gst_esdsink_dispose): Dispose of element properly.
21600 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
21602 * ext/nas/nassink.c: (gst_nassink_class_init),
21603 (gst_nassink_dispose): Dispose of element correctly.
21604 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
21605 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
21606 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
21607 Fix 64-bit warning.
21608 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21609 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
21610 Fix 64-bit warning.
21612 2004-09-12 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21614 * configure.ac : change speex detection as 1.1.6 now uses
21615 .pc/pkg-config and they changed their headers location.
21617 2004-09-09 Arwed v. Merkatz <v.merkatz@gmx.net>
21619 * gst/matroska/matroska-mux.h:
21620 * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
21621 (gst_matroska_mux_start), (gst_matroska_mux_finish),
21622 (gst_matroska_mux_write_data):
21623 Write multiple blocks/frames per cluster.
21624 Write meta-seek information (seek heads).
21626 2004-09-09 Scott Wheeler <wheeler@kde.org>
21628 * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
21629 (gst_play_bin_set_property), (gst_play_bin_get_property),
21630 (gen_audio_element), (gen_audio_element):
21631 Add a volume element / property to the pipeline.
21633 2004-09-07 Wim Taymans <wim@fluendo.com>
21635 * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
21636 Copy timestamps from the master pad to the output buffers.
21638 2004-09-03 Thomas Vander Stichele <thomas at apestaart dot org>
21640 * ext/raw1394/gstdv1394src.c:
21641 throw errors when applicable
21643 2004-09-01 Arwed v. Merkatz <v.merkatz@gmx.net>
21645 * gst/matroska/ebml-ids.h:
21646 * gst/matroska/ebml-read.c: (gst_ebml_read_date):
21647 * gst/matroska/ebml-write.c: (gst_ebml_write_date):
21648 * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
21649 automatically convert unix time <-> ebml time when reading/writing
21650 a date, use gst_ebml_write_uint to write CUETIME,
21651 not gst_ebml_write_date.
21652 * gst/matroska/matroska-ids.h:
21653 * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
21654 (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
21655 (gst_matroska_mux_track_header), (gst_matroska_mux_start),
21656 (gst_matroska_mux_write_data):
21657 Write track and segment UIDs, write muxing date, write
21658 TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
21659 Create cues for audio only files.
21661 2004-08-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21663 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
21664 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
21665 Re-commit ALSA switches.
21666 * gst/adder/gstadder.c: (gst_adder_loop):
21667 64-bit fix (#151416).
21668 * gst/debug/progressreport.c: (gst_progressreport_report):
21669 64-bit fix (#151419).
21670 * gst/matroska/matroska-demux.c:
21671 (gst_matroska_demux_parse_contents):
21672 64-bit fix (#151420).
21673 * gst/playback/test3.c: (update_scale):
21674 64-bit fix (#151421).
21676 2004-08-31 Thomas Vander Stichele <thomas at apestaart dot org>
21681 === release 0.8.4 ===
21683 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
21685 * configure.ac: releasing 0.8.4, "Alias"
21687 2004-08-31 Thomas Vander Stichele <thomas at apestaart dot org>
21689 * ext/theora/Makefile.am:
21690 fix makefile. Fixes #151462.
21692 2004-08-30 Wim Taymans <wim@fluendo.com>
21694 * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
21695 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21696 (gst_multifdsink_remove_client_link),
21697 (gst_multifdsink_client_queue_buffer),
21698 (gst_multifdsink_handle_client_write):
21699 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
21700 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
21701 Fix some memory leaks.
21703 2004-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
21705 Patch by: David Schleef
21709 rename our detection macro for V4L2. Fixes #151236.
21711 2004-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
21713 Patch by: David Schleef
21716 check to define LAMEPRESET. Fixes #151232.
21718 2004-08-27 David Schleef <ds@schleef.org>
21720 * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
21721 (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
21722 (gst_glimagesink_fixate): Move local variable declarations to
21723 make gcc-2.95 happy.
21725 2004-08-27 Thomas Vander Stichele <thomas at apestaart dot org>
21728 bump nano for prerelease
21730 2004-08-27 David Schleef <ds@schleef.org>
21732 * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
21733 * sys/sunaudio/gstsunaudiosrc.c:
21734 * sys/sunaudio/gstsunaudiosrc.h:
21736 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
21738 * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
21739 handle EOS correctly
21740 * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
21741 * gst/matroska/matroska-mux.h:
21742 added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
21743 VFW compatibility mode
21745 2004-08-27 Thomas Vander Stichele <thomas at apestaart dot org>
21747 patch by: Zaheer Abbas Merali
21749 * ext/ogg/gstoggmux.c:
21750 * ext/vorbis/vorbisenc.c:
21751 * ext/vorbis/vorbisenc.h:
21754 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
21756 * gst/matroska/ebml-write.c: (gst_ebml_write_float),
21757 fix byte order reversion on little endian machines.
21758 * gst/matroska/matroska-mux.c: (audiosink_templ),
21759 (gst_matroska_mux_audio_pad_link):
21760 add TTA codec to the list of supported codecs.
21761 * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
21762 (gst_matroska_mux_start), (gst_matroska_mux_finish),
21763 (gst_matroska_mux_write_data):
21764 * gst/matroska/matroska-mux.h:
21765 write segment duration correctly, write muxing app string, fixes bugs
21766 #140897 and #140898.
21767 * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
21768 wait for all pads to be negotiated before starting to mux.
21770 2004-08-26 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21772 * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
21773 * ext/lame/gstlame.h:
21774 Added new media support to lame
21776 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
21778 * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
21779 send vorbis headers at the beginning of a stream, fixes bug #141554.
21780 Interpret BLOCKDURATION and set buffer duration accordingly, fixes
21782 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
21783 (gst_matroska_demux_plugin_init):
21784 * gst/matroska/matroska-ids.h:
21785 enable demuxing of TTA audio streams, fixes bug #148951.
21786 * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
21787 enable typefinding for TTA audio files, fixes bug #148711.
21788 * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
21789 set XVID_LOWDELAY flag for decoding so xvid always returns an image,
21790 fixes playback of packed bitstream and xvid with bframes, bug #135407.
21792 2004-08-24 Sebastien Cote <sc5@hermes.usherb.ca>
21794 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
21795 (gst_riff_read_element_data), (gst_riff_read_seek),
21796 (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
21797 #144616, patch reviewed by Ronald and committed by Christophe Fergeau
21800 2004-08-23 Iain <iaingnome@gmail.com>
21802 * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
21803 tags. They appear to be handled differently to normal.
21804 (tag_list_to_id3_tag_foreach): Ditto.
21806 2004-08-22 Wim Taymans <wim@fluendo.com>
21808 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21809 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21810 Make sure we never send -1 granulepos.
21812 2004-08-20 Wim Taymans <wim@fluendo.com>
21814 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21815 (gst_ogg_mux_loop):
21816 I will accept bitchslappings with non sharp objects.
21818 2004-08-20 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21821 Clean up the test for lame presets
21823 2004-08-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21826 * ext/lame/Makefile.am:
21827 * ext/lame/gstlame.c: (gst_lame_class_init),
21828 (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
21829 Only enable lame presets if version of lame has presets in API
21831 2004-08-19 Jan Schmidt <thaytan@mad.scientist.com>
21832 * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
21833 * gst/udp/gstudpsrc.h:
21834 Don't call gst_pad_push in a get function. Fixes #150449
21836 2004-08-18 Wim Taymans <wim@fluendo.com>
21838 * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
21839 (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
21840 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
21841 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21842 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21844 * gst/tcp/gstfdset.h:
21845 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21846 (gst_multifdsink_client_queue_buffer),
21847 (gst_multifdsink_handle_client_write):
21848 * gst/tcp/gstmultifdsink.h:
21849 Some extra checks in gstfdset.
21850 Only use send() when the fd is a socket. Don't try to
21851 read from write only fds.
21853 2004-08-18 Wim Taymans <wim@fluendo.com>
21855 * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
21856 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
21857 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21858 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21860 Add more locking and bounds checking.
21862 2004-08-18 Wim Taymans <wim@fluendo.com>
21864 * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
21865 Realloc test fdset in the lock and right before starting
21866 the poll call. Bump the limit to 4096.
21868 2004-08-17 David Schleef <ds@schleef.org>
21870 * sys/sunaudio/Makefile.am:
21871 * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
21872 of rates and channels. Make debugging less obnoxious.
21874 Patch from Balamurali Viswanathan implementing a mixer for
21875 Sun audio. (bug #144091):
21876 * sys/sunaudio/gstsunelement.c:
21877 * sys/sunaudio/gstsunelement.h:
21878 * sys/sunaudio/gstsunmixer.c:
21879 * sys/sunaudio/gstsunmixer.h:
21881 2004-08-17 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21883 * gst/audioscale/gstaudioscale.c:
21884 * gst/audioscale/gstaudioscale.h:
21885 made audioscale resample from any sample rate to any sample rate
21887 2004-08-17 Thomas Vander Stichele <thomas at apestaart dot org>
21889 * ext/libpng/gstpngdec.c:
21890 error out on unsupported types
21892 2004-08-17 Iain <iaingnome@gmail.com>
21894 * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
21895 mid_side and loose_mid_side properties if its a stereo stream.
21897 2004-08-17 Wim Taymans <wim@fluendo.com>
21899 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
21900 (theora_get_formats), (theora_dec_src_convert),
21901 (theora_dec_sink_convert), (theora_dec_src_query),
21902 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
21905 2004-08-17 Wim Taymans <wim@fluendo.com>
21907 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
21908 (gst_ogg_pad_push):
21909 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
21910 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
21911 (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
21912 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21913 Mark delta units in the muxer.
21914 Try to decode the packet after an out-of-sync error from
21917 2004-08-17 Wim Taymans <wim@fluendo.com>
21919 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21920 (gst_multifdsink_init), (gst_multifdsink_add),
21921 (gst_multifdsink_client_queue_buffer),
21922 (gst_multifdsink_set_property), (gst_multifdsink_get_property):
21923 * gst/tcp/gstmultifdsink.h:
21924 Added option to send a keyframe to clients as the first buffer.
21925 Make timeout property writable.
21927 2004-08-17 Thomas Vander Stichele <thomas at apestaart dot org>
21929 patch by: Wim Taymans
21931 * gst/tcp/gstfdset.c:
21932 * gst/tcp/gstmultifdsink.c:
21933 fix index comparison, should include 0
21935 2004-08-16 Wim Taymans <wim@fluendo.com>
21937 * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
21938 (gst_fdset_add_fd), (gst_fdset_remove_fd),
21939 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21940 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21942 copy when reallocing for poll so the select arguments don't get
21943 changed during the call
21945 2004-08-16 Wim Taymans <wim@fluendo.com>
21947 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
21948 (gst_theora_enc_class_init), (theora_enc_sink_link),
21949 (theora_buffer_from_packet), (theora_enc_chain):
21950 Fix bug where buffers were not marked as keyframes
21953 2004-08-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21955 * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
21956 (gst_lame_preset_get_type), (gst_lame_class_init):
21957 describe the enum values for vbr mode and presets more verbosely
21959 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21961 * ext/lame/gstlame.c: (gst_lame_mode_get_type),
21962 (gst_lame_quality_get_type), (gst_lame_padding_get_type),
21963 (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
21964 (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
21965 * ext/lame/gstlame.h:
21966 add preset property to lame so it can use lame presets
21968 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21970 * ext/lame/gstlame.c: (gst_lame_get_property):
21971 whoops forgot break, thanks teuf
21973 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21975 * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
21976 (gst_lame_class_init), (gst_lame_src_getcaps),
21977 (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
21978 (gst_lame_get_property), (gst_lame_setup):
21979 * ext/lame/gstlame.h:
21980 fix lame's broken vbr stuff, allow it to resample if need be, and also
21981 make xing header optional
21983 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21985 * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
21986 added getcaps function so samplerate doesnt get fixated to silly values
21988 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21990 * ext/lame/gstlame.c: (gst_lame_src_link):
21991 revert previous fix
21993 2004-08-12 Johan Dahlin <johan@gnome.org>
21995 * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
21996 checks. Doesn't matter what state we are in. Interfaces are a
21997 compile time thing, not runtime. It also broke the python bindings.
21999 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22001 * ext/lame/gstlame.c: (gst_lame_src_link):
22002 made source pad link function check if sinkpad is ok..fixes the problem
22003 where core fixates the output rate of lame stupidly
22005 2004-08-12 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
22007 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
22008 * sys/v4l/v4l_calls.c:
22009 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
22010 fix fixate function to handle nonsimple caps.
22011 remove bogus check in _link
22014 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22016 * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
22017 set default compression ratio parameter to 0.0 so bitrate parameter
22020 2004-08-11 David Schleef <ds@schleef.org>
22022 * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
22024 2004-08-11 David Schleef <ds@schleef.org>
22026 * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
22029 2004-08-11 David Schleef <ds@schleef.org>
22031 * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
22033 2004-08-11 David Schleef <ds@schleef.org>
22035 * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
22037 * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
22038 * gst-libs/gst/video/gstvideosink.c: Change copyright block to
22040 * gst/auparse/gstauparse.c: Fix plugin license field.
22041 * gst/monoscope/gstmonoscope.c: Fix plugin license field.
22042 * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
22043 * gst/rtp/gstrtp.c: Fix plugin license field.
22045 2004-08-11 Wim Taymans <wim@fluendo.com>
22047 * gst/tcp/Makefile.am:
22048 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
22049 (ensure_size), (gst_fdset_new), (gst_fdset_free),
22050 (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
22051 (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
22052 (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
22053 (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
22054 (gst_fdset_fd_can_write), (gst_fdset_wait):
22055 * gst/tcp/gstfdset.h:
22056 * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
22057 (gst_multifdsink_class_init), (gst_multifdsink_init),
22058 (gst_multifdsink_add), (gst_multifdsink_remove),
22059 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
22060 (gst_multifdsink_remove_client_link),
22061 (gst_multifdsink_handle_client_read),
22062 (gst_multifdsink_client_queue_data),
22063 (gst_multifdsink_client_queue_caps),
22064 (gst_multifdsink_client_queue_buffer),
22065 (gst_multifdsink_handle_client_write),
22066 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
22067 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
22068 (gst_multifdsink_get_property), (gst_multifdsink_init_send),
22069 (gst_multifdsink_close):
22070 * gst/tcp/gstmultifdsink.h:
22071 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
22072 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
22073 (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
22074 (gst_tcpserversink_close):
22075 * gst/tcp/gsttcpserversink.h:
22076 Abstracted away the select call, implemented poll (yes we ran into
22077 the 1024 limit in production).
22079 2004-08-11 Thomas Vander Stichele <thomas at apestaart dot org>
22081 * gst/tcp/gsttcp.c:
22082 * gst/tcp/gsttcpplugin.c:
22083 improve debuggging, remove assert
22085 2004-08-10 Wim Taymans <wim@fluendo.com>
22087 * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
22088 (gst_client_status_get_type), (gst_multifdsink_class_init),
22089 (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
22090 (gst_multifdsink_handle_client_read),
22091 (gst_multifdsink_handle_client_write),
22092 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
22093 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
22094 (gst_multifdsink_get_property):
22095 * gst/tcp/gstmultifdsink.h:
22096 * gst/tcp/gsttcp-marshal.list:
22097 Starting to prepare for specifying buffer time in other units
22098 than buffers. Expose remove reason in signal.
22100 2004-08-10 Wim Taymans <wim@fluendo.com>
22102 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
22103 (gst_multifdsink_remove), (gst_multifdsink_clear),
22104 (gst_multifdsink_remove_client_link),
22105 (gst_multifdsink_handle_client_read),
22106 (gst_multifdsink_client_queue_data),
22107 (gst_multifdsink_client_queue_buffer),
22108 (gst_multifdsink_handle_client_write),
22109 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
22110 (gst_multifdsink_chain), (gst_multifdsink_close):
22111 * gst/tcp/gstmultifdsink.h:
22112 Added more debugging info. Changed the way clients are
22113 removed from the lists. Fixed a bug where a bad file descriptor
22114 could cause many clients to be removed.
22116 2004-08-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
22118 * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
22119 allow all pixel-aspect-ratios, not just 1:1
22121 2004-08-09 David Schleef <ds@schleef.org>
22123 * sys/glsink/ARB_multitexture.h: Remove old files.
22124 * sys/glsink/EXT_paletted_texture.h:
22125 * sys/glsink/NV_register_combiners.h:
22126 * sys/glsink/gstgl_nvimage.c:
22127 * sys/glsink/gstgl_pdrimage.c:
22128 * sys/glsink/gstgl_rgbimage.c:
22129 * sys/glsink/gstglsink.c:
22130 * sys/glsink/gstglsink.h:
22131 * sys/glsink/gstglxwindow.c:
22132 * sys/glsink/regcomb_yuvrgb.c:
22134 2004-08-09 David Schleef <ds@schleef.org>
22136 Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
22137 GL sink plugin. (Bug #147302)
22139 * configure.ac: Test for OpenGL
22140 * sys/Makefile.am: Use test for OpenGL
22141 * sys/glsink/Makefile.am:
22142 * sys/glsink/glimagesink.c: rewrite
22143 * sys/glsink/glimagesink.h: rewrite
22145 2004-08-09 David Schleef <ds@schleef.org>
22147 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init): Only allow
22149 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
22150 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
22151 * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
22153 2004-08-09 Wim Taymans <wim@fluendo.com>
22155 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22156 (gst_multifdsink_add), (gst_multifdsink_get_stats),
22157 (gst_multifdsink_client_remove),
22158 (gst_multifdsink_handle_client_read),
22159 (gst_multifdsink_handle_client_write),
22160 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22161 Do a bit more logging, make the client_read code more robust.
22163 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22165 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
22166 (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
22167 (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
22168 (gst_jpegdec_init), (gst_jpegdec_chain):
22169 * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
22170 (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
22171 cleanups, debugging fixes and memleak plugging
22173 2004-08-09 Wim Taymans <wim@fluendo.com>
22175 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22176 (theora_get_formats), (theora_dec_src_convert),
22177 (theora_dec_sink_convert), (theora_dec_src_query),
22178 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
22179 (theora_dec_change_state):
22180 Don't crash on missing header packets.
22182 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22186 Added Albanian translation (Laurent Dhima)
22190 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22192 * ext/lame/gstlame.c:
22195 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22197 * sys/ximage/ximagesink.c:
22198 * sys/xvimage/xvimagesink.c:
22199 assign all TOO_LAZY's to a real category. Thanks to Warthy Warthog.
22201 2004-08-06 Wim Taymans <wim@fluendo.com>
22203 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22204 (gst_multifdsink_add), (gst_multifdsink_get_stats),
22205 (gst_multifdsink_client_remove),
22206 (gst_multifdsink_handle_client_read),
22207 (gst_multifdsink_handle_client_write),
22208 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22209 Make sure we don't try to read more from a client that what
22210 ioctl says us or we deadlock.
22212 2004-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
22214 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
22215 (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
22216 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
22217 decouple running_time and n_frames so it can handle changing
22218 framerate while running
22220 2004-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
22224 updated translations
22226 2004-08-04 Benjamin Otte <otte@gnome.org>
22228 * gst/videotestsrc/gstvideotestsrc.c:
22229 (gst_videotestsrc_get_capslist), (generate_capslist),
22231 generate the list of supported caps at startup and reuse it instead
22232 of always generating it
22234 2004-07-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
22236 * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
22237 whoops, last checkin broke normal build
22239 2004-08-03 Benjamin Otte <otte@gnome.org>
22241 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
22242 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
22243 (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
22244 (gst_alsa_mixer_get_option):
22245 * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
22246 (dvdnavsrc_print_event):
22247 * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
22248 * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
22249 (gst_ogg_mux_pad_unlink):
22250 * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
22251 (gst_multipart_mux_pad_unlink):
22252 * gst/videofilter/gstvideobalance.c:
22253 (gst_videobalance_colorbalance_set_value):
22254 * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
22255 (gst_videomixer_pad_unlink):
22257 * sys/oss/gstossmixer.c:
22258 * sys/v4l/gstv4lcolorbalance.c:
22259 * sys/v4l/gstv4ltuner.c:
22260 * sys/v4l/v4lsrc_calls.c:
22261 * sys/v4l2/gstv4l2colorbalance.c:
22262 * sys/v4l2/gstv4l2tuner.c:
22263 compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
22265 2004-08-03 Benjamin Otte <otte@gnome.org>
22267 * examples/dynparams/filter.c: (ui_control_create):
22268 * examples/gstplay/player.c: (print_tag):
22269 * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
22270 * ext/gdk_pixbuf/gstgdkanimation.c:
22271 (gst_gdk_animation_iter_may_advance):
22272 * ext/jack/gstjack.c: (gst_jack_request_new_pad):
22273 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
22274 (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
22275 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
22276 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
22277 * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
22278 * gst-libs/gst/media-info/media-info-test.c: (print_tag):
22279 * gst/sine/demo-dparams.c: (main):
22280 * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
22281 * testsuite/alsa/formats.c: (create_pipeline):
22282 * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
22283 fixes for G_DISABLE_ASSERT and friends
22284 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
22285 (mp3_type_frame_length_from_header), (mp3_type_find),
22287 require mp3 typefinding to have at least MIN_HEADERS valid headers
22288 add typefinding for AAC adts files
22290 2004-08-04 Jan Schmidt <thaytan@mad.scientist.com>
22292 * sys/ximage/ximagesink.c:
22293 (gst_ximagesink_calculate_pixel_aspect_ratio):
22294 * sys/xvimage/xvimagesink.c:
22295 (gst_xvimagesink_calculate_pixel_aspect_ratio):
22296 Make sure we calculate pixel-aspect-ratio using floating point maths
22298 2004-08-03 Thomas Vander Stichele <thomas at apestaart dot org>
22301 updated translation
22303 2004-08-03 Thomas Vander Stichele <thomas at apestaart dot org>
22305 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
22306 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
22307 add debugging for display PAR calculation
22309 2004-08-02 David Schleef <ds@schleef.org>
22311 * configure.ac: Fix mikmod CFLAGS.
22313 2004-07-27 Benjamin Otte <otte@gnome.org>
22315 * gst/audioscale/gstaudioscale.c:
22316 - fix templates to only support S16, it's the only format that works
22317 - make caps nego code use try_set_caps_nonfixed and fixation instead
22318 of try_set_caps twice, which is not nice for autopluggers
22319 - change rank to secondary, so autopluggers can pick it up after
22322 2004-08-02 Iain <iain@prettypeople.org>
22324 * gst/interleave/interleave.c (interleave_init),
22325 (interleave_request_new_pad),
22326 (interleave_pad_removed),
22327 (interleave_buffered_loop): Use the real pad count, not the artificial
22330 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22332 * configure.ac: bump nano back to development
22334 === release 0.8.3 ===
22336 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22338 * configure.ac: releasing 0.8.3, "Water"
22340 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22342 * sys/xvimage/xvimagesink.c:
22343 (gst_xvimagesink_calculate_pixel_aspect_ratio),
22344 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
22345 (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
22346 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22347 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22348 * sys/xvimage/xvimagesink.h:
22349 apply similar PAR fixes as to ximagesink
22351 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22353 patch from: Benjamin Otte
22355 * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
22356 add link function to lame. Fixes #148986.
22358 2004-08-02 Johan Dahlin <johan@gnome.org>
22360 * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
22363 2004-07-30 David Schleef <ds@schleef.org>
22365 * gst/videomixer/Makefile.am: Fix things that should have been
22366 fixed in the last checkin.
22368 2004-07-30 David Schleef <ds@schleef.org>
22370 * gst/multipart/Makefile.am: Fix things that should have been
22371 fixed in the last checkin.
22373 2004-07-30 David Schleef <ds@schleef.org>
22375 * testsuite/multifilesink/Makefile.am: Fix unused variable.
22377 2004-07-30 Thomas Vander Stichele <thomas at apestaart dot org>
22380 bump nano for prerelease
22392 2004-07-30 Wim Taymans <wim@fluendo.com>
22394 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22395 (gst_multifdsink_add), (gst_multifdsink_remove),
22396 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
22397 (gst_multifdsink_client_remove),
22398 (gst_multifdsink_handle_client_write),
22399 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22400 * gst/tcp/gstmultifdsink.h:
22401 Recover from a select with a bad file descriptor by removing
22404 2004-07-30 Thomas Vander Stichele <thomas at apestaart dot org>
22407 fix requirement of core
22408 * gst-libs/gst/play/play.c: (gst_play_error_plugin),
22409 (gst_play_pipeline_setup):
22410 don't use colorspace element. do use hermescolorspace element.
22411 make macro to get a colorspace element.
22412 mark strings for translation.
22424 update translations
22426 2004-07-30 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22428 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
22429 fix default for newmedia flag
22431 2004-07-30 Wim Taymans <wim@fluendo.com>
22433 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22434 (gst_theora_dec_init), (theora_get_formats),
22435 (theora_dec_src_convert), (theora_dec_sink_convert),
22436 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22437 (theora_dec_chain), (theora_dec_set_property),
22438 (theora_dec_get_property):
22439 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
22440 (gst_theora_enc_class_init), (gst_theora_enc_init),
22441 (theora_enc_sink_link), (theora_enc_chain),
22442 (theora_enc_set_property), (theora_enc_get_property):
22443 Added cropping option to theora decoder.
22444 Added border option to theora encoder.
22446 2004-07-30 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22448 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22449 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22450 (gst_pngenc_set_property):
22451 * ext/libpng/gstpngenc.h:
22452 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
22454 2004-07-30 Wim Taymans <wim@fluendo.com>
22456 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
22457 (theora_enc_sink_link), (theora_enc_chain),
22458 (theora_enc_set_property), (theora_enc_get_property):
22459 Fix encoding of non-multiple-of-16 video.
22461 2004-07-29 David Schleef <ds@schleef.org>
22463 * configure.ac: make test for audiofile more strict
22465 2004-07-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
22467 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
22468 give different names to typefind functions
22470 2004-07-28 Thomas Vander Stichele <thomas at apestaart dot org>
22472 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22473 (gst_ximagesink_calculate_pixel_aspect_ratio),
22474 (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
22475 (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
22476 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
22477 (gst_ximagesink_get_property), (gst_ximagesink_init):
22478 * sys/ximage/ximagesink.h:
22479 allocate PAR's dynamically.
22480 use autodetected PAR if no object-set PAR is given.
22481 add workaround for directfb's X not setting physical size.
22482 fix to xvimagesink will follow tomorrow.
22484 2004-07-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22486 * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
22487 * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
22488 (gst_shout2send_get_type), (gst_shout2send_set_clock),
22489 (gst_shout2send_class_init), (gst_shout2send_init),
22490 (set_shout_metadata), (gst_shout2send_set_metadata),
22491 (gst_shout2send_chain), (gst_shout2send_set_property),
22492 (gst_shout2send_get_property), (gst_shout2send_connect),
22493 (gst_shout2send_change_state):
22494 * ext/shout2/gstshout2.h:
22495 - fix for sending mp3 audio to icecast2 server, if pad link function not
22496 called before PAUSED state
22497 - added option to use GStreamer clock sync (as opposed to libshout's own sync)
22498 - added tagging support for mp3 audio broadcasted
22499 * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
22502 2004-07-28 Wim Taymans <wim@fluendo.com>
22504 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
22505 (gst_ogg_demux_push):
22506 Return query failure when we don't know the length of
22507 an ogg stream insteda of returning TRUE with a bogus value.
22509 2004-07-28 Wim Taymans <wim@fluendo.com>
22511 * ext/theora/theoradec.c: (theora_get_formats),
22512 (theora_dec_src_convert), (theora_dec_sink_convert),
22513 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22514 (theora_dec_chain):
22515 Don't screw up the 1 Chroma for 1 luma sample situation when we
22516 have an odd offset/width by adding a black border in those cases.
22518 2004-07-28 Wim Taymans <wim@fluendo.com>
22520 * ext/theora/theoradec.c: (theora_get_formats),
22521 (theora_dec_src_convert), (theora_dec_sink_convert),
22522 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22523 (theora_dec_chain):
22524 * ext/theora/theoraenc.c: (theora_enc_sink_link):
22525 Added first attempt at cropping of the image as required by the
22526 theora spec. We need more properties in the caps (offset_x,
22527 offset_y,stride) to implement this correctly.
22529 2004-07-28 Jan Schmidt <thaytan@mad.scientist.com>
22531 * ext/dvdnav/README:
22532 Update the README to use dvddemux
22533 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
22534 Ensure getcaps returns a subset of the template caps
22535 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
22536 (gst_mpeg2subt_init):
22537 Ensure getcaps returns a subset of the template caps
22538 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
22539 (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
22540 (gst_dvd_demux_get_subpicture_stream),
22541 (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
22542 * gst/mpegstream/gstdvddemux.h:
22543 Set the explicit caps on the current_video pad before pushing
22545 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
22546 (gst_mpeg_demux_get_audio_stream):
22547 Free caps used to gst_pad_set_explicit_caps, which takes a const
22550 2004-07-28 Thomas Vander Stichele <thomas at apestaart dot org>
22552 * configure.ac: update GStreamer requirement to 0.8.4 because of
22555 2004-07-28 Wim Taymans <wim@fluendo.com>
22557 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
22558 (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
22559 Add the pad to the element after setting up the caps. This
22560 makes it a lot easier to autoplug.
22562 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
22564 * gst/median/gstmedian.c:
22565 * gst/mpeg2subt/gstmpeg2subt.c:
22566 * gst/mpegaudioparse/gstmpegaudioparse.c:
22567 * gst/mpegstream/gstdvddemux.c:
22568 * gst/mpegstream/gstmpegdemux.c:
22569 * gst/mpegstream/gstmpegpacketize.c:
22570 * gst/rtjpeg/gstrtjpeg.c:
22571 * gst/rtjpeg/gstrtjpegdec.c:
22572 * gst/rtjpeg/gstrtjpegenc.c:
22573 * gst/sine/gstsinesrc.c:
22574 * gst/smooth/gstsmooth.c:
22575 * gst/smpte/gstsmpte.c:
22576 * gst/smpte/gstsmpte.h:
22577 * gst/stereo/gststereo.c:
22578 * gst/videofilter/gstgamma.c:
22579 * gst/videofilter/gstvideobalance.c:
22580 * gst/videofilter/gstvideofilter.c:
22581 * gst/videofilter/gstvideoflip.c:
22582 * gst/videoscale/gstvideoscale.c:
22583 * gst/videoscale/videoscale.c:
22584 * gst/videotestsrc/gstvideotestsrc.c:
22585 * gst/videotestsrc/videotestsrc.c:
22586 * gst/wavenc/gstwavenc.c:
22587 * gst/wavparse/gstwavparse.c:
22588 fix local includes and 64 bits constants
22590 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
22593 * gst-libs/gst/*/*.vcproj:
22595 more working plugins
22597 2004-07-27 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22599 * testsuite/alsa/Makefile.am:
22600 * testsuite/alsa/srcstate.c:
22601 add test for alsasrc changing state
22603 2004-07-27 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22605 * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
22607 * gst/silence/gstsilence.h:
22608 fix silence generation for 16bit raw audio
22610 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22612 * gst/matroska/matroska-demux.c:
22613 (gst_matroska_demux_parse_metadata),
22614 (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
22615 * gst/mpegaudio/common.c:
22616 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
22617 (gst_videoscale_getcaps), (gst_videoscale_link),
22618 (gst_videoscale_src_fixate), (gst_videoscale_init),
22619 (gst_videoscale_finalize):
22620 * gst/videoscale/gstvideoscale.h:
22621 * gst/videotestsrc/gstvideotestsrc.c:
22622 (gst_videotestsrc_get_capslist):
22623 * gst/wavenc/gstwavenc.c:
22624 * sys/oss/gstossmixer.c: (fill_labels):
22625 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22626 (gst_ximagesink_handle_xevents),
22627 (gst_ximagesink_calculate_pixel_aspect_ratio),
22628 (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
22629 (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
22630 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
22631 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
22632 (gst_ximagesink_init), (gst_ximagesink_class_init):
22633 * sys/ximage/ximagesink.h:
22634 * sys/xvimage/xvimagesink.c:
22635 (gst_xvimagesink_calculate_pixel_aspect_ratio),
22636 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
22637 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
22638 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22639 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22640 * sys/xvimage/xvimagesink.h:
22641 first batch of pixel aspect ratio commits.
22643 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22645 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22646 (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
22647 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
22648 handle stride, needs work if we want to move stride handling
22649 upstream, but works correctly for our purposes.
22651 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22653 * gst/videoscale/README:
22654 add testing examples
22655 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
22656 (gst_videoscale_chain):
22657 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22658 (gst_videoscale_get_size):
22659 add get_size function that handles stride like videotestsrc.
22660 fixes conversion for YUV formats for as much as I can test them.
22662 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22664 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22665 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
22666 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22667 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
22668 (gst_xvimagesink_xvimage_put):
22669 further cleanups, logging, error handling and synchronizing
22671 2004-07-27 Wim Taymans <wim@fluendo.com>
22673 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
22674 (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
22675 (gst_videomixer_pad_set_property),
22676 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
22677 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
22678 (gst_videomixer_class_init), (gst_videomixer_init),
22679 (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
22680 (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
22681 (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
22682 (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
22683 (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
22684 (gst_videomixer_loop), (plugin_init):
22685 Be a nicer negotiation citizen and provide a getcaps function on
22686 the srcpad. This also fixes a crash when resizing.
22688 2004-07-27 Julien MOUTTE <julien@moutte.net>
22690 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22691 (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
22693 2004-07-27 Wim Taymans <wim@fluendo.com>
22695 * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
22696 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22697 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22698 (gst_pngenc_set_property):
22699 * ext/libpng/gstpngenc.h:
22700 Added snapshot property to pngenc.
22701 removed g_print from pngdec
22703 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
22705 * gst/ac3parse/ac3parse.vcproj
22706 * gst/adder/adder.vcproj
22707 * gst/alpha/alpha.vcproj
22708 * gst/alpha/alphacolor.vcproj
22709 * gst/asfdemux/asf.vcproj
22710 * gst/audioconvert/audioconvert.vcproj
22711 * gst/audiorate/audiorate.vcproj
22712 * gst/audioscale/audioscale.vcproj
22713 * gst/auparse/auparse.vcproj
22714 * gst/avi/avi.vcproj
22715 * gst/cdxaparse/cdxaparse.vcproj
22716 * gst/chart/chart.vcproj
22717 * gst/colorspace/colorspace.vcproj
22718 * gst/cutter/cutter.vcproj
22719 * gst/debug/debug.vcproj
22720 * gst/debug/efence.vcproj
22721 * gst/debug/navigationtest.vcproj
22722 * gst/deinterlace/deinterlace.vcproj
22723 * gst/effectv/effectv.vcproj
22724 * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
22725 * gst/filter/filter.vcproj
22726 * gst/flx/flxdec.vcproj
22727 * gst/goom/goom.vcproj
22728 * gst/interleave/interleave.vcproj
22729 * gst/law/alaw.vcproj
22730 * gst/law/mulaw.vcproj
22731 * gst/matroska/matroska.vcproj
22732 * gst/median/median.vcproj
22733 * gst/mixmatrix/mixmatrix.vcproj
22734 * gst/mpeg1sys/mpeg1systemencode.vcproj
22735 * gst/mpeg1videoparse/mp1videoparse.vcproj
22736 * gst/mpeg2sub/mpeg2subt.vcproj
22737 * gst/mpegaudio/mpegaudio.vcproj
22738 * gst/mpegaudioparse/mpegaudioparse.vcproj
22739 * gst/mpegstream/mpegstream.vcproj
22740 * gst/multifilesink/multifilesink.vcproj
22741 * gst/multipart/multipart.vcproj
22742 * gst/oneton/oneton.vcproj
22743 * gst/overlay/overlay.vcproj
22744 * gst/passthrough/passthrough.vcproj
22745 * gst/qtdemux/qtdemux.vcproj
22746 * gst/realmedia/rmdemux.vcproj
22747 * gst/rtjpeg/rtjpeg.vcproj
22748 * gst/rtp/rtp.vcproj
22749 * gst/silence/silence.vcproj
22750 * gst/sine/sinesrc.vcproj
22751 * gst/smooth/smooth.vcproj
22752 * gst/smpte/smpte.vcproj
22753 * gst/spectrum/spectrum.vcproj
22754 * gst/speed/speed.vcproj
22755 * gst/stereo/stereo.vcproj
22756 * gst/switch/switch.vcproj
22757 * gst/tags/tagedit.vcproj
22758 * gst/tcp/tcp.vcproj
22759 * gst/typefind/typefindfunctions.vcproj
22760 * gst/udp/udp.vcproj
22761 * gst/videobox/videobox.vcproj
22762 * gst/videocrop/videocrop.vcproj
22763 * gst/videodrop/videodrop.vcproj
22764 * gst/videofilter/gamma.vcproj
22765 * gst/videofilter/videobalance.vcproj
22766 * gst/videofilter/videofilter.vcproj
22767 * gst/videofilter/videoflip.vcproj
22768 * gst/videoflip/videoflip.vcproj
22769 * gst/videomixer/videomixer.vcproj
22770 * gst/videorate/videorate.vcproj
22771 * gst/videoscale/videoscale.vcproj
22772 * gst/videotestsrc/videotestsrc.vcproj
22773 * gst/virtualdub/virtualdub.vcproj
22774 * gst/volenv/volenv.vcproj
22775 * gst/volume/volume.vcproj
22776 * gst/wavenc/wavenc.vcproj
22777 * gst/wavparse/wavparse.vcproj
22778 * gst/y4m/y4menc.vcproj
22779 * gst-libs/gst/audio/audio.vcproj
22780 * gst-libs/gst/audio/audiofilter.vcproj
22781 * gst-libs/gst/colorbalance/colorbalance.vcproj
22782 * gst-libs/gst/idct/idtc.vcproj
22783 * gst-libs/gst/media-info/media-info.vcproj
22784 * gst-libs/gst/mixer/mixer.vcproj
22785 * gst-libs/gst/navigation/navigation.vcproj
22786 * gst-libs/gst/play/play.vcproj
22787 * gst-libs/gst/propertyprobe/propertyprobe.vcproj
22788 * gst-libs/gst/resample/resample.vcproj
22789 * gst-libs/gst/riff/riff.vcproj
22790 * gst-libs/gst/tuner/tuner.vcproj
22791 * gst-libs/gst/video/video.vcproj
22792 * gst-libs/gst/xoverlay/xoverlay.vcproj
22793 avoid problems with math.h, fix release dependancy
22794 rename GStreamer-0.8.lib to libgstreamer.lib
22796 2004-07-27 Julien MOUTTE <julien@moutte.net>
22798 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
22799 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
22800 the atom is not available we have to unlock the mutex. Fixes #148023
22802 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22804 * gst-libs/gst/media-info/media-info.h:
22805 issue for a vararg macro with MSVC
22807 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22809 * gst/effectv/effectv.vcproj
22810 * gst-libs/gst/idct/idct.vcproj:
22811 * gst-libs/gst/media-info/media-info.vcproj:
22812 * gst-libs/gst/navigation/navigation.vcproj:
22813 * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
22814 * gst-libs/gst/video/video.vcproj:
22815 * gst-libs/gst/xoverlay/xoverlay.vcproj:
22816 fixes for build problems
22818 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22820 * gst-libs/gst/audio/audio.def:
22821 * gst-libs/gst/audio/riff.def:
22822 add some definitions needed by plugins
22824 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22826 * gst/asfdemux/gstasfmux.c
22827 Fix some 64 bits constants to be glib friendly
22829 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22831 * gst/ac3parse/gstac3parse.c
22832 * gst/audioscale/gstaudioscale.c
22833 * gst/auparse/gstauparse.c
22834 * gst/colorspace/gstcolorspace.c
22835 * gst/colorspace/yuv2rgb.h
22836 local include fixes
22838 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22841 add more plugins to the build
22843 2004-07-26 Julien MOUTTE <julien@moutte.net>
22845 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22846 (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
22848 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22850 * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
22851 (gst_level_set_property), (gst_level_get_property),
22852 (gst_level_base_init), (gst_level_class_init):
22853 add debugging categories. cleanups.
22855 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22857 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22858 (gst_videoscale_planar411), (gst_videoscale_planar400),
22859 (gst_videoscale_packed422), (gst_videoscale_packed422rev),
22860 (gst_videoscale_scale_nearest_str1),
22861 (gst_videoscale_scale_nearest_str2),
22862 (gst_videoscale_scale_nearest_str4),
22863 (gst_videoscale_scale_nearest_16bit),
22864 (gst_videoscale_scale_nearest_24bit):
22865 fixed stride issues
22866 tested with 320x240 -> 321, 322, 324 x240
22867 tested with YV12, I420, YUY2, UYVY
22868 fixed packed422rev (don't think it could have worked before)
22869 by testing with UYVY
22871 2004-07-26 Benjamin Otte <otte@gnome.org>
22873 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
22874 (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
22876 add debugging category, add error checks like checking return values
22877 of setup calls, make sure it still works after
22878 PLAYING=>NULL=>PLAYING, fix encoding of mono streams
22880 2004-07-26 Wim Taymans <wim@fluendo.com>
22882 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
22883 (gst_mpeg_demux_get_audio_stream),
22884 (gst_mpeg_demux_process_private):
22885 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
22886 Check for error codes from the negotiation functions. Make sure
22887 we really set the pad caps when a new pad is created.
22889 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22891 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
22892 (gst_ffmpeg_caps_to_pix_fmt):
22893 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
22894 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22895 (gst_ffmpegcolorspace_pad_link):
22896 don't make function do two things at the same time without reason.
22898 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22900 * gst/ac3parse/ac3parse.vcproj
22901 * gst/adder/adder.vcproj
22902 * gst/alpha/alpha.vcproj
22903 * gst/alpha/alphacolor.vcproj
22904 * gst/asfdemux/asf.vcproj
22905 * gst/audioconvert/audioconvert.vcproj
22906 * gst/audiorate/audiorate.vcproj
22907 * gst/audioscale/audioscale.vcproj
22908 * gst/auparse/auparse.vcproj
22909 * gst/avi/avi.vcproj
22910 * gst/cdxaparse/cdxaparse.vcproj
22911 * gst/chart/chart.vcproj
22912 * gst/colorspace/colorspace.vcproj
22913 * gst/cutter/cutter.vcproj
22914 * gst/debug/debug.vcproj
22915 * gst/debug/efence.vcproj
22916 * gst/debug/navigationtest.vcproj
22917 * gst/deinterlace/deinterlace.vcproj
22918 * gst/effectv/effectv.vcproj
22919 * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
22920 * gst/filter/filter.vcproj
22921 * gst/flx/flxdec.vcproj
22922 * gst/goom/goom.vcproj
22923 * gst/interleave/interleave.vcproj
22924 * gst/law/alaw.vcproj
22925 * gst/law/mulaw.vcproj
22926 * gst/matroska/matroska.vcproj
22927 * gst/median/median.vcproj
22928 * gst/mixmatrix/mixmatrix.vcproj
22929 * gst/mpeg1sys/mpeg1systemencode.vcproj
22930 * gst/mpeg1videoparse/mp1videoparse.vcproj
22931 * gst/mpeg2sub/mpeg2subt.vcproj
22932 * gst/mpegaudio/mpegaudio.vcproj
22933 * gst/mpegaudioparse/mpegaudioparse.vcproj
22934 * gst/mpegstream/mpegstream.vcproj
22935 * gst/multifilesink/multifilesink.vcproj
22936 * gst/multipart/multipart.vcproj
22937 * gst/oneton/oneton.vcproj
22938 * gst/overlay/overlay.vcproj
22939 * gst/passthrough/passthrough.vcproj
22940 * gst/qtdemux/qtdemux.vcproj
22941 * gst/realmedia/rmdemux.vcproj
22942 * gst/rtjpeg/rtjpeg.vcproj
22943 * gst/rtp/rtp.vcproj
22944 * gst/silence/silence.vcproj
22945 * gst/sine/sinesrc.vcproj
22946 * gst/smooth/smooth.vcproj
22947 * gst/smpte/smpte.vcproj
22948 * gst/spectrum/spectrum.vcproj
22949 * gst/speed/speed.vcproj
22950 * gst/stereo/stereo.vcproj
22951 * gst/switch/switch.vcproj
22952 * gst/tags/tagedit.vcproj
22953 * gst/tcp/tcp.vcproj
22954 * gst/typefind/typefindfunctions.vcproj
22955 * gst/udp/udp.vcproj
22956 * gst/videobox/videobox.vcproj
22957 * gst/videocrop/videocrop.vcproj
22958 * gst/videodrop/videodrop.vcproj
22959 * gst/videofilter/gamma.vcproj
22960 * gst/videofilter/videobalance.vcproj
22961 * gst/videofilter/videofilter.vcproj
22962 * gst/videofilter/videoflip.vcproj
22963 * gst/videoflip/videoflip.vcproj
22964 * gst/videomixer/videomixer.vcproj
22965 * gst/videorate/videorate.vcproj
22966 * gst/videoscale/videoscale.vcproj
22967 * gst/videotestsrc/videotestsrc.vcproj
22968 * gst/virtualdub/virtualdub.vcproj
22969 * gst/volenv/volenv.vcproj
22970 * gst/volume/volume.vcproj
22971 * gst/wavenc/wavenc.vcproj
22972 * gst/wavparse/wavparse.vcproj
22973 * gst/y4m/y4menc.vcproj
22974 more plugins supported under windows
22976 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22978 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
22979 (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
22980 (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
22981 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
22982 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
22983 Add debugging statements. Use the sizes as returned by the
22984 *CreateImage calls.
22986 2004-07-26 Johan Dahlin <johan@gnome.org>
22988 * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
22989 the pad is negotiated.
22991 * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
22993 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22995 * gst-libs/gst/colorbalance/colorbalance.vcproj:
22996 * gst-libs/gst/idct/idct.vcproj:
22997 * gst-libs/gst/media-info/media-info.vcproj:
22998 * gst-libs/gst/mixer/mixer.vcproj:
22999 * gst-libs/gst/navigation/navigation.vcproj:
23000 * gst-libs/gst/play/play.vcproj:
23001 * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
23002 * gst-libs/gst/resample/resample.vcproj:
23003 * gst-libs/gst/tuner/tuner.vcproj:
23004 * gst-libs/gst/video/video.vcproj:
23005 * gst-libs/gst/xoverlay/xoverlay.vcproj:
23006 more plugins supported under windows
23008 2004-07-25 Iain <iain@prettypeople.org>
23010 * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
23011 pad now rather than when the pad is created because state changes wipe
23012 explicit caps (fixes #148043).
23014 2004-07-25 Sebastien Cote <sc5@hermes.usherb.ca>
23016 reviewed by Benjamin Otte <otte@gnome.org>
23018 * ext/mad/gstmad.c:
23019 fix mad plugin crashing on Sun (fixes #148289)
23021 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23024 * gst/avi/avi.vcproj:
23025 * gst/matroska/matroska.def:
23026 * gst/matroska/matroska.vcproj:
23027 remove unused .def files
23029 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23031 * gst-libs/gst/audio/gstaudiofilter.c:
23032 Clean the local include
23034 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23037 * gst-libs/gst/audio/audio.def:
23038 * gst-libs/gst/audio/audio.vcproj:
23039 * gst-libs/gst/audio/audiofilter.vcproj:
23040 * gst-libs/gst/audio/riff.def:
23041 * gst-libs/gst/audio/riff.vcproj:
23042 * gst-libs/gst/gst-libs.def:
23043 * gst-libs/gst/gst-libs.vcproj:
23044 * gst/avi/avi.vcproj:
23045 * gst/avi/avi.vcproj:
23046 Copy the files where needed after building, cleaner projects
23048 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23050 * gst/matroska/ebml-write.c:
23051 Fix some 64 bits constants to be glib friendly
23053 2004-07-24 Steve Lhomme <steve.lhomme@free.fr>
23056 * gst-libs/gst/gst-libs.def:
23057 * gst-libs/gst/gst-libs.vcproj:
23058 * gst/matroska/matroska.def:
23059 * gst/matroska/matroska.vcproj:
23060 Add the preliminary canvas to build plugins on Win32
23062 2004-07-23 Benjamin Otte <otte@gnome.org>
23064 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
23065 don't enfore negotiation from source side, it breaks
23066 sinesrc ! audioconvert ! osssink
23068 2004-07-22 David Schleef <ds@schleef.org>
23070 * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
23071 for ELF files, since they can easily be recognized as audio/mpeg.
23074 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
23076 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
23077 (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
23078 (gst_videoscale_scale_nearest_24bit),
23079 (gst_videoscale_scale_nearest_16bit):
23080 fix 16bit and 24bit for stride (24bit might need testing)
23081 don't pretend we do more than one algorithm
23083 2004-07-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
23087 * gst/multifilesink/Makefile.am:
23088 * gst/multifilesink/gstmultifilesink.c:
23089 (gst_multifilesink_get_formats),
23090 (gst_multifilesink_get_query_types), (_do_init),
23091 (gst_multifilesink_base_init), (gst_multifilesink_class_init),
23092 (gst_multifilesink_init), (gst_multifilesink_dispose),
23093 (gst_multifilesink_set_location), (gst_multifilesink_set_property),
23094 (gst_multifilesink_get_property), (gst_multifilesink_open_file),
23095 (gst_multifilesink_close_file), (gst_multifilesink_next_file),
23096 (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
23097 (gst_multifilesink_chain), (gst_multifilesink_change_state),
23098 (gst_multifilesink_uri_get_type),
23099 (gst_multifilesink_uri_get_protocols),
23100 (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
23101 (gst_multifilesink_uri_handler_init), (plugin_init):
23102 * gst/multifilesink/gstmultifilesink.h:
23103 * testsuite/Makefile.am:
23104 * testsuite/multifilesink/Makefile.am:
23105 * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
23106 (gst_newmedia_class_init), (gst_newmedia_init),
23107 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
23108 (newfile_signal), (test_signal), (main):
23109 multifilesink plugin for creating new files every time a new media
23110 discontinuity event occurs
23112 2004-07-22 Wim Taymans <wim@fluendo.com>
23114 * gst/alpha/Makefile.am:
23115 * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
23116 (gst_alpha_color_base_init), (gst_alpha_color_class_init),
23117 (gst_alpha_color_init), (gst_alpha_color_set_property),
23118 (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
23119 (transform), (gst_alpha_color_chain),
23120 (gst_alpha_color_change_state), (plugin_init):
23121 Stupid plugin to to RGBA to AYUV conversion because none of
23122 the colorspace plugins can handle that yet.
23124 2004-07-22 Wim Taymans <wim@fluendo.com>
23126 * examples/seeking/seek.c: (update_scale), (main):
23127 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23128 (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
23129 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
23130 (gst_decode_bin_init), (gst_decode_bin_dispose),
23131 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23132 (no_more_pads), (close_link), (type_found),
23133 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23135 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23136 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23137 (gst_play_base_bin_dispose), (queue_overrun),
23138 (gen_preroll_element), (remove_prerolls), (unknown_type),
23139 (no_more_pads), (new_stream), (setup_source),
23140 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
23141 (play_base_eos), (gst_play_base_bin_change_state),
23142 (gst_play_base_bin_add_element),
23143 (gst_play_base_bin_remove_element),
23144 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23145 (gst_play_base_bin_unlink_stream),
23146 (gst_play_base_bin_get_streaminfo):
23147 * gst/playback/gstplaybin.c: (gen_video_element),
23148 (gen_audio_element):
23149 * gst/playback/gststreaminfo.h:
23150 More playback updates, attempt to fix things after the state change
23153 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
23155 * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
23156 (gst_videoscale_scale_nearest_16bit):
23159 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
23161 * gst/videotestsrc/gstvideotestsrc.c:
23162 (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
23163 (gst_videotestsrc_init), (gst_videotestsrc_get),
23164 (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
23165 (gst_videotestsrc_get_property):
23166 * gst/videotestsrc/gstvideotestsrc.h:
23167 * gst/videotestsrc/videotestsrc.c:
23168 * gst/videotestsrc/videotestsrc.h:
23169 cleanup and commenting
23171 2004-07-21 Wim Taymans <wim@fluendo.com>
23173 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
23174 (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
23175 (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
23176 (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
23177 (_find_chain_get_unknown_part), (_find_streams_check),
23178 (gst_ogg_demux_push), (gst_ogg_pad_push):
23179 * ext/theora/theoradec.c: (theora_get_formats),
23180 (theora_dec_src_convert), (theora_dec_sink_convert),
23181 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
23182 (theora_dec_chain):
23183 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
23184 (vorbis_dec_convert), (vorbis_dec_src_query),
23185 (vorbis_dec_src_event), (vorbis_dec_event):
23186 More seeking fixes, oggdemux now supports seeking to time and
23187 uses the downstream element to convert granulepos to time.
23188 Seeking in theora-only ogg files now works.
23190 2004-07-21 Wim Taymans <wim@fluendo.com>
23192 * ext/theora/theoradec.c: (gst_theora_dec_init),
23193 (theora_get_formats), (theora_get_event_masks),
23194 (theora_get_query_types), (theora_dec_src_convert),
23195 (theora_dec_sink_convert), (theora_dec_src_query),
23196 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
23197 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
23198 (vorbis_get_event_masks), (vorbis_get_query_types),
23199 (gst_vorbis_dec_init), (vorbis_dec_convert),
23200 (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
23201 Added query/convert/formats functions to vorbis and theora decoders
23202 so that the outside world can use them too. Fixed seeking on an
23203 ogg/theora/vorbis file by disabling the seeking seeking on the
23206 2004-07-21 Julien MOUTTE <julien@moutte.net>
23208 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
23209 (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
23210 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
23211 images creation for both elements. We don't create the image on caps
23212 nego or renego, we just destroy the internal one if present if it does
23213 not match the needs. The chain function takes care of creating a new
23215 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
23216 (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
23217 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
23218 (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
23219 the image format information. The buffer pool checks for the context
23220 image format and discard images with different formats.
23221 * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
23223 2004-07-21 Thomas Vander Stichele <thomas at apestaart dot org>
23225 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23226 (gst_ffmpegcolorspace_chain):
23227 no point in doing any chaining if the pad we want to push from
23230 2004-07-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
23232 * gst-libs/gst/riff/riff-media.c:
23233 (gst_riff_create_audio_caps_with_data):
23234 Fix double end-to-native symbol conversion (#148021).
23236 2004-07-20 David Schleef <ds@schleef.org>
23238 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
23239 Don't use an Atom that doesn't exist.
23241 2004-07-20 Wim Taymans <wim@fluendo.com>
23243 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23244 (gst_multifdsink_add), (gst_multifdsink_get_stats),
23245 (gst_multifdsink_client_remove),
23246 (gst_multifdsink_handle_client_write),
23247 (gst_multifdsink_queue_buffer):
23248 * gst/tcp/gstmultifdsink.h:
23249 More multifdsink stats. Avoid deadlock by releasing locks
23250 before sending out a signal.
23252 2004-07-20 Thomas Vander Stichele <thomas at apestaart dot org>
23256 added Hungarian translation (Laszlo Dvornik)
23258 2004-07-20 Wim Taymans <wim@fluendo.com>
23260 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23261 (gst_multifdsink_add), (gst_multifdsink_client_remove),
23262 (gst_multifdsink_handle_client_write),
23263 (gst_multifdsink_queue_buffer):
23264 * gst/tcp/gsttcp-marshal.list:
23265 Fixed the stupid marshal definition.
23267 2004-07-20 Wim Taymans <wim@fluendo.com>
23269 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23270 (gst_multifdsink_init), (gst_multifdsink_add),
23271 (gst_multifdsink_client_remove),
23272 (gst_multifdsink_handle_client_write),
23273 (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
23274 (gst_multifdsink_set_property), (gst_multifdsink_get_property),
23275 (gst_multifdsink_init_send):
23276 * gst/tcp/gstmultifdsink.h:
23277 Added more stats, added timeout for a client, fixed some typos
23278 and added some comments.
23280 2004-07-20 Wim Taymans <wim@fluendo.com>
23282 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23283 (gst_multifdsink_add), (gst_multifdsink_get_stats),
23284 (gst_multifdsink_client_remove),
23285 (gst_multifdsink_handle_client_write):
23286 * gst/tcp/gstmultifdsink.h:
23287 * gst/tcp/gsttcp-marshal.list:
23288 Added get_stats method that returns a GValueArray of
23291 2004-07-19 Benjamin Otte <otte@gnome.org>
23293 * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
23294 make sure longname, description and author are valid UTF-8
23296 2004-07-19 Thomas Vander Stichele <thomas at apestaart dot org>
23298 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
23299 (gst_ximagesink_set_property):
23300 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
23301 (gst_xvimagesink_set_property):
23302 make sure SYNCHRONOUS is respected after getting the X context
23304 2004-07-18 Thomas Vander Stichele <thomas at apestaart dot org>
23306 * gst/matroska/matroska-demux.c:
23307 (gst_matroska_demux_handle_src_event),
23308 (gst_matroska_demux_parse_blockgroup):
23309 * gst/matroska/matroska-ids.h:
23310 add BlockReference tag and ignore it to clear out log.
23311 ignore NAVIGATION events to clear out log.
23313 2004-07-18 Thomas Vander Stichele <thomas at apestaart dot org>
23315 * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
23316 (gst_matroska_demux_add_stream):
23317 * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
23318 add debug categories
23320 2004-07-16 Wim Taymans <wim@fluendo.com>
23322 * ext/libpng/Makefile.am:
23323 * ext/libpng/gstpng.c: (plugin_init):
23324 * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
23325 (gst_pngdec_get_type), (gst_pngdec_base_init),
23326 (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
23327 (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
23328 * ext/libpng/gstpngdec.h:
23331 2004-07-16 Julien MOUTTE <julien@moutte.net>
23333 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
23334 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
23335 (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
23336 (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
23337 (gst_ximagesink_buffer_alloc):
23338 * sys/ximage/ximagesink.h:
23339 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
23340 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
23341 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
23342 (gst_xvimagesink_buffer_alloc):
23343 * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
23344 again. Using internal data pointer of the x(v)image to store image's
23345 data to be coherent with the buffer alloc mechanism. Investigated the
23346 image destruction code to be sure that everything gets freed correctly.
23348 2004-07-16 Wim Taymans <wim@fluendo.com>
23350 * gst-libs/gst/riff/riff-read.c:
23351 (gst_riff_read_strf_vids_with_data),
23352 (gst_riff_read_strf_auds_with_data):
23353 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
23354 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
23355 Make sure we don't create 0 sized subbuffers in riff-read.
23356 Signal the no more pads signal after reading the avi header.
23358 2004-07-16 Wim Taymans <wim@fluendo.com>
23360 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23361 (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
23362 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
23363 (gst_decode_bin_init), (gst_decode_bin_dispose),
23364 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23365 (no_more_pads), (close_link), (type_found),
23366 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23367 (gst_decode_bin_change_state), (plugin_init):
23368 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23369 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23370 (gst_play_base_bin_dispose), (queue_overrun),
23371 (gen_preroll_element), (remove_prerolls), (unknown_type),
23372 (no_more_pads), (new_stream), (setup_source),
23373 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
23374 (play_base_eos), (gst_play_base_bin_change_state),
23375 (gst_play_base_bin_add_element),
23376 (gst_play_base_bin_remove_element),
23377 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23378 (gst_play_base_bin_unlink_stream),
23379 (gst_play_base_bin_get_streaminfo):
23380 * gst/playback/gstplaybasebin.h:
23381 Better error recovery. Added configurable preroll queue size. Faster
23382 detection of no-more-pads.
23384 2004-07-16 Wim Taymans <wim@fluendo.com>
23386 * gst-libs/gst/video/video.h:
23387 Added 32 bits RGBA. Not sure if we should use another mime-type
23388 for alpha rgb. Currently the presence of the alpha_mask property
23389 signals an alpha channel.
23391 2004-07-16 Wim Taymans <wim@fluendo.com>
23393 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
23394 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
23395 FPS seems to be 0.0 to MAX everywhere else.
23397 2004-07-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
23399 * gst-libs/gst/riff/riff-media.c:
23400 (gst_riff_create_video_caps_with_data):
23401 mp42/mp43 (no caps) exist too.
23402 * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
23403 Set pixel_width/height; we've got them in-caps.
23404 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
23405 * gst/wavparse/gstwavparse.c: (plugin_init):
23406 Both are valid primary.
23407 * sys/oss/gstossmixer.c:
23408 Remove i18n hack and enable translations.
23410 2004-07-15 Benjamin Otte <otte@gnome.org>
23412 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
23413 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
23414 fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
23416 2004-07-15 Benjamin Otte <otte@gnome.org>
23418 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
23419 (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
23420 (gst_alsa_close_audio):
23421 disable some of the debugging code for now. Writing debugging to a
23422 buffer is broken in current alsalib releases.
23424 2004-07-12 Benjamin Otte <otte@gnome.org>
23426 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
23429 2004-07-14 Thomas Vander Stichele <thomas at apestaart dot org>
23431 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
23432 (theora_dec_src_query), (theora_dec_event):
23433 * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
23434 add debugging categories. Remove \n's.
23436 2004-07-13 Johan Dahlin <johan@gnome.org>
23438 * gst/playback/gstplaybin.c (gst_play_bin_set_property)
23439 (gst_play_bin_get_property): Impl.
23441 2004-07-13 Wim Taymans <wim@fluendo.com>
23443 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
23444 When trying to find the stream length, seek back N pages
23445 instead of just one, where N is the number of streams in
23448 2004-07-13 Wim Taymans <wim@fluendo.com>
23450 * gst-libs/gst/riff/riff-media.c:
23451 (gst_riff_create_audio_caps_with_data),
23452 (gst_riff_create_audio_caps),
23453 (gst_riff_create_audio_template_caps):
23454 * gst-libs/gst/riff/riff-media.h:
23455 * gst-libs/gst/riff/riff-read.c:
23456 (gst_riff_read_strf_vids_with_data),
23457 (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
23458 * gst-libs/gst/riff/riff-read.h:
23459 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
23460 (gst_avi_demux_add_stream):
23461 Set codec_data on caps for avidemuxer.
23463 2004-07-12 David Schleef <ds@schleef.org>
23465 * configure.ac: Fix test for Objective C
23467 2004-07-12 Jan Schmidt <thaytan@mad.scientist.com>
23468 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
23469 (gst_gdk_pixbuf_chain):
23470 Add svg and pcx to template caps, and ensure that getcaps returns a
23471 subset of the template caps.
23472 Copy each row manually for output, as gdkpixbuf may pad the
23473 rowstride to a 32-bit word boundary.
23475 2004-07-12 Wim Taymans <wim@fluendo.com>
23477 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
23478 (gst_riff_create_video_template_caps):
23479 Fix the template caps to include some more media types.
23481 2004-07-12 Wim Taymans <wim@fluendo.com>
23483 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23484 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23485 (compare_ranks), (print_feature), (gst_decode_bin_init),
23486 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23487 (try_to_link_1), (new_pad), (close_link), (type_found),
23488 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23489 (gst_decode_bin_change_state), (plugin_init):
23490 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23491 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23492 (gst_play_base_bin_dispose), (queue_overrun),
23493 (gen_preroll_element), (remove_prerolls), (no_more_pads),
23494 (new_stream), (setup_source), (gst_play_base_bin_set_property),
23495 (gst_play_base_bin_get_property), (play_base_eos),
23496 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
23497 (gst_play_base_bin_remove_element),
23498 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23499 (gst_play_base_bin_unlink_stream),
23500 (gst_play_base_bin_get_streaminfo):
23501 * gst/playback/gstplaybasebin.h:
23502 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23503 (gst_play_bin_class_init), (gst_play_bin_init),
23504 (gst_play_bin_dispose), (gst_play_bin_set_property),
23505 (gst_play_bin_get_property), (gen_video_element),
23506 (gen_audio_element), (remove_sinks), (setup_sinks),
23507 (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
23508 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23509 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23510 (gst_play_bin_query), (plugin_init):
23511 * gst/playback/test4.c: (main):
23512 More fixes on reusing of the element.
23514 2004-07-11 Benjamin Otte <otte@gnome.org>
23516 * ext/mad/gstmad.c: (normal_seek):
23517 allow seeking for other methods than just SET
23519 2004-07-11 Andy Wingo <wingo@pobox.com>
23521 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
23522 float, "any" caps -> buffer_frames=[0,MAX].
23524 * gst/interleave/interleave.c (interleave_getcaps): Seems the core
23525 doesn't intersect our caps with the template any more. Do it
23527 (interleave_buffered_loop): Use g_newa instead of malloc/free.
23529 2004-07-09 Wim Taymans <wim@fluendo.com>
23531 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23532 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23533 (compare_ranks), (print_feature), (gst_decode_bin_init),
23534 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23535 (try_to_link_1), (new_pad), (close_link), (type_found),
23536 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23537 (gst_decode_bin_change_state), (plugin_init):
23538 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23539 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23540 (gst_play_base_bin_dispose), (queue_overrun),
23541 (gen_preroll_element), (remove_prerolls), (no_more_pads),
23542 (new_stream), (setup_source), (gst_play_base_bin_set_property),
23543 (gst_play_base_bin_get_property), (play_base_eos),
23544 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
23545 (gst_play_base_bin_remove_element),
23546 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23547 (gst_play_base_bin_unlink_stream),
23548 (gst_play_base_bin_get_streaminfo):
23549 * gst/playback/gstplaybasebin.h:
23550 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23551 (gst_play_bin_class_init), (gst_play_bin_init),
23552 (gst_play_bin_dispose), (gst_play_bin_set_property),
23553 (gst_play_bin_get_property), (gen_video_element),
23554 (gen_audio_element), (remove_sinks), (setup_sinks),
23555 (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
23556 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23557 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23558 (gst_play_bin_query), (plugin_init):
23559 * gst/playback/test4.c: (main):
23560 Work on object reuse and seeking.
23562 2004-07-09 Wim Taymans <wim@fluendo.com>
23564 * examples/seeking/seek.c: (iterate):
23565 Don't consume all CPU in the idle loop.
23567 2004-07-09 Wim Taymans <wim@fluendo.com>
23569 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
23570 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
23571 Add pad to element *after* setting the pad functions so that
23572 the scheduler can use the correct ones.
23574 2004-07-09 Wim Taymans <wim@fluendo.com>
23576 * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23577 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
23578 Sync to keyframe after seek
23580 2004-07-09 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23582 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
23583 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
23584 (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
23585 * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
23586 * ext/libvisual/visual.c: (gst_visual_change_state):
23587 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
23588 * ext/theora/theoradec.c: (theora_dec_change_state):
23589 * ext/theora/theoraenc.c: (theora_enc_change_state):
23590 * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
23591 * gst-libs/gst/navigation/navigation.c:
23592 * gst/adder/gstadder.c: (gst_adder_change_state):
23593 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
23594 (gst_audio_convert_get_buffer):
23595 * gst/multipart/multipartdemux.c:
23596 (gst_multipart_demux_change_state):
23597 * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
23598 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
23599 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
23600 * gst/videoscale/gstvideoscale.c:
23601 (gst_videoscale_handle_src_event):
23602 * gst/volume/gstvolume.c: (volume_chain_int16):
23603 don't assert in state change, this should be done by the base
23605 various debugging fixes.
23607 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23610 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23611 (gst_play_dispose), (gst_play_set_location),
23612 (gst_play_set_data_src), (gst_play_set_video_sink),
23613 (gst_play_set_audio_sink), (gst_play_set_visualization),
23614 (gst_play_connect_visualization), (gst_play_get_sink_element),
23615 (gst_play_get_all_by_interface):
23616 * gst-libs/gst/play/play.h:
23617 add new method to get elements implementing an interface.
23618 add various error logging
23620 2004-07-08 Wim Taymans <wim@fluendo.com>
23622 * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
23623 (make_mpeg_pipeline), (make_mpegnt_pipeline),
23624 (make_playerbin_pipeline), (query_durations_elems),
23625 (query_durations_pads), (query_positions_elems),
23626 (query_positions_pads), (update_scale), (iterate), (stop_seek),
23628 Added playbin seeking example.
23630 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23632 * gst-libs/gst/play/play.c: (gst_play_set_location),
23633 (gst_play_set_data_src), (gst_play_set_video_sink),
23634 (gst_play_set_audio_sink), (gst_play_set_visualization),
23635 (gst_play_connect_visualization), (gst_play_get_framerate):
23636 use a macro to look up elements from hash table
23638 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23640 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23641 (gst_play_get_length_callback), (gst_play_set_location),
23642 (gst_play_seek_to_time), (gst_play_set_data_src),
23643 (gst_play_set_video_sink), (gst_play_set_audio_sink),
23644 (gst_play_set_visualization), (gst_play_connect_visualization),
23645 (gst_play_get_sink_element):
23646 - add debugging info
23647 - fix looking up sink elements by iterating over complete caps
23648 - put everything except for source and autoplugger in a complete bin
23650 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23652 * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
23653 * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
23654 (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
23655 (gst_alsa_sink_write), (gst_alsa_sink_loop):
23656 * ext/alsa/gstalsasink.h:
23657 - add debugging info
23658 - clean up schizophrenia of data/buffer/event
23659 - fix double event unref error
23661 2004-07-08 Wim Taymans <wim@fluendo.com>
23663 * gst/playback/Makefile.am:
23664 Add headers to noinst
23666 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23668 * tools/gst-launch-ext-m.m:
23669 * tools/gst-launch-ext.1.in:
23670 convert to the third millenium
23672 2004-07-07 David Schleef <ds@schleef.org>
23674 * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
23676 2004-07-07 Wim Taymans <wim@fluendo.com>
23678 * gst/playback/Makefile.am:
23679 * gst/playback/README:
23680 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23681 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23682 (compare_ranks), (print_feature), (gst_decode_bin_init),
23683 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23684 (try_to_link_1), (new_pad), (close_link), (type_found),
23685 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23687 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23688 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23689 (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
23690 (gen_preroll_element), (no_more_pads), (new_stream),
23691 (setup_source), (gst_play_base_bin_set_property),
23692 (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
23693 (gst_play_base_bin_add_element),
23694 (gst_play_base_bin_remove_element),
23695 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23696 (gst_play_base_bin_unlink_stream),
23697 (gst_play_base_bin_get_streaminfo):
23698 * gst/playback/gstplaybasebin.h:
23699 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23700 (gst_play_bin_class_init), (gst_play_bin_init),
23701 (gst_play_bin_dispose), (gst_play_bin_set_property),
23702 (gst_play_bin_get_property), (gen_video_element),
23703 (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
23704 (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
23705 (gst_play_bin_get_formats), (gst_play_bin_convert),
23706 (gst_play_bin_get_query_types), (gst_play_bin_query),
23708 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
23709 (gst_stream_info_get_type), (gst_stream_info_class_init),
23710 (gst_stream_info_init), (gst_stream_info_new),
23711 (gst_stream_info_dispose), (gst_stream_info_set_property),
23712 (gst_stream_info_get_property):
23713 * gst/playback/gststreaminfo.h:
23714 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
23716 * gst/playback/test2.c: (main):
23717 * gst/playback/test3.c: (update_scale), (main):
23718 More playbin fixes. Added README. Do better element filtering.
23719 Added base class to preroll media. Added test apps.
23721 2004-07-07 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23723 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
23724 * ext/mpeg2dec/gstmpeg2dec.h:
23725 various debugging improvements. Reset stream to next picture
23726 instead of sequence header, otherwise seeks cannot work.
23728 2004-07-07 Wim Taymans <wim@fluendo.com>
23730 * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
23731 (gst_video_box_class_init), (gst_video_box_set_property),
23732 (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
23733 Use pad_alloc where possible.
23735 2004-07-07 Wim Taymans <wim@fluendo.com>
23737 * sys/oss/gstosselement.c: (gst_osselement_reset),
23738 (gst_osselement_parse_caps):
23739 * sys/oss/gstosselement.h:
23740 * sys/oss/gstosssrc.c: (gst_osssrc_get):
23741 Fix offset on osssrc.
23743 2004-07-07 Wim Taymans <wim@fluendo.com>
23745 * ext/theora/theora.c: (plugin_init):
23746 * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23747 (theora_dec_src_query), (theora_dec_chain):
23748 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
23749 (theora_enc_sink_link), (theora_buffer_from_packet),
23750 (theora_push_packet), (theora_enc_chain):
23751 Fix theora granulepos calculation.
23752 Fix overflow in duration/position calculation.
23753 Bump rank to PRIMARY for theoradec.
23754 Use granulepos of last packet to calculate position.
23755 Set keyframe flag on buffers when needed.
23757 2004-07-06 David Schleef <ds@schleef.org>
23759 * gst/playback/Makefile.am: 'test' in bin_PROGRAMS? Are you
23760 serious? (Fixed, obviously.)
23762 2004-07-06 Thomas Vander Stichele <thomas at apestaart dot org>
23766 added Czech translation (Miloslav Trmac)
23768 2004-07-05 Wim Taymans <wim@fluendo.com>
23770 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23771 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23772 (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23773 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23774 (close_link), (type_found), (gst_decode_bin_set_property),
23775 (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
23776 (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
23777 (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
23778 (gst_decode_bin_query), (plugin_init):
23779 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23780 (gst_play_bin_class_init), (gst_play_bin_init),
23781 (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
23782 (get_video_element), (new_pad), (setup_source),
23783 (gst_play_bin_set_property), (gst_play_bin_get_property),
23784 (gst_play_bin_change_state), (gst_play_bin_add_element),
23785 (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23786 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23787 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23788 (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23789 * gst/playback/test.c: (main):
23790 More fixes, cleaned up playbin, make it use decodebin. Added
23791 threaded property to playbin.
23793 2004-07-05 Wim Taymans <wim@fluendo.com>
23796 * gst/playback/Makefile.am:
23797 * gst/playback/decodetest.c: (main):
23798 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23799 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23800 (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23801 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23802 (close_link), (type_found), (gst_decode_bin_set_property),
23803 (gst_decode_bin_get_property), (gst_decode_bin_change_state),
23804 (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
23805 (gst_decode_bin_get_formats), (gst_decode_bin_convert),
23806 (gst_decode_bin_get_query_types), (gst_decode_bin_query),
23808 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23809 (gst_play_bin_class_init), (gst_play_bin_init),
23810 (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
23811 (collect_sink_pads), (find_compatibles), (close_pad_link),
23812 (try_to_link_1), (new_pad), (close_link), (type_found),
23813 (setup_source), (gst_play_bin_set_property),
23814 (gst_play_bin_get_property), (gst_play_bin_factory_filter),
23815 (compare_ranks), (gst_play_bin_collect_factories),
23816 (gst_play_bin_change_state), (gst_play_bin_add_element),
23817 (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23818 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23819 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23820 (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23821 * gst/playback/test.c: (main):
23822 Added some playback helper elements and some test apps, very alpha
23825 2004-07-04 Benjamin Otte <otte@gnome.org>
23827 * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23828 only restart audio when we indeed have an xrun to fix repeated
23829 xruns. Fix suggested by Giuliano Pochini.
23831 2004-07-03 David Schleef <ds@schleef.org>
23833 * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
23834 call to gst_debug_log() if debugging is disabled (bug #145118)
23836 2004-07-03 Benjamin Otte <otte@gnome.org>
23838 * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23839 use our own functions for restarting the alsa device.
23840 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23841 I should apply patches myself - use MIN for the third argument, not
23842 the second, this fixes seeking
23844 2004-07-02 David Schleef <ds@schleef.org>
23846 * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
23847 (gst_flacdec_write): Actually, GST_PAD_CAPS() has nothing to
23850 2004-07-02 David Schleef <ds@schleef.org>
23852 * ext/flac/gstflacdec.c: (gst_flacdec_write): Set duration on
23853 output buffers. Fix logic mistake. (bug #144866)
23855 2004-07-02 David Schleef <ds@schleef.org>
23857 * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
23858 on X. (bug #144753)
23860 2004-07-02 David Schleef <ds@schleef.org>
23862 * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
23863 (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
23865 * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
23866 (gst_osselement_rate_probe_check): Add another workaround for
23867 buggy drivers (bug #145336)
23869 2004-07-02 David Schleef <ds@schleef.org>
23871 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
23872 Most systems don't have MSG_NOSIGNAL.
23874 2004-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
23877 * gst-libs/gst/colorbalance/Makefile.am:
23878 * gst-libs/gst/mixer/Makefile.am:
23879 * gst-libs/gst/play/Makefile.am:
23880 * gst-libs/gst/tuner/Makefile.am:
23881 (hopefully) fix both install and dist and make error message useful.
23882 needs testing across automakes.
23884 2004-07-02 Benjamin Otte <otte@gnome.org>
23886 * ext/ogg/gstogg.c: (plugin_init):
23887 we require bytestream now
23888 * ext/ogg/gstoggdemux.c:
23889 huge diff to implement chain setup in a fast and generic way. This
23890 improves tag reading and startup of huge files (read: Theora videos)
23891 quite a bit. It probably contains bugs, too, so please test.
23892 Seeking is not improved to the fast method.
23894 2004-06-29 Wim Taymans <wim@fluendo.com>
23896 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
23897 * ext/ogg/gstoggmux.c:
23898 Fix memleak in oggdemux when running unconnected pads.
23899 doc update in mux, start working on keyframe mode.
23901 2004-06-29 Benjamin Otte <otte@gnome.org>
23903 * sys/oss/gstosssink.c:
23904 * sys/oss/gstosssrc.c:
23905 advertise correct template caps - we indeed do non-native endianness
23906 and 8bit audio has no endianness
23907 * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
23908 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
23909 avoid (wrong) duplications in getcaps function and return
23912 2004-06-29 Wim Taymans <wim@fluendo.com>
23914 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23915 (gst_multifdsink_class_init), (gst_multifdsink_add),
23916 (gst_multifdsink_remove), (gst_multifdsink_clear),
23917 (gst_multifdsink_client_remove),
23918 (gst_multifdsink_handle_client_read),
23919 (gst_multifdsink_client_queue_data),
23920 (gst_multifdsink_client_queue_caps),
23921 (gst_multifdsink_client_queue_buffer),
23922 (gst_multifdsink_handle_client_write),
23923 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
23924 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
23925 (gst_multifdsink_init_send), (gst_multifdsink_close):
23926 Fix wrong GList iteration that could crash the server when
23927 more then 2 clients disconnect at the same time. Read all the
23928 pending commands in one batch to recover from command storms under
23931 2004-06-28 Wim Taymans <wim@fluendo.com>
23933 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
23934 (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
23935 (gst_videomixer_pad_set_property),
23936 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
23937 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
23938 (gst_videomixer_class_init), (gst_videomixer_init),
23939 (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
23940 (pad_zorder_compare), (gst_videomixer_sort_pads),
23941 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
23942 (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
23943 (gst_videomixer_update_queues), (gst_videomixer_loop),
23945 Avoid divide by zero, choose masterpad as the pad with the highest
23948 2004-06-27 Julien Moutte <julien@moutte.net>
23950 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
23951 (gst_ximagesink_xwindow_new):
23952 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
23953 (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
23954 function directly. We might want to call it from somewhere else one day.
23956 2004-06-27 Julien Moutte <julien@moutte.net>
23958 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
23959 (gst_ximagesink_xwindow_new):
23960 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
23961 (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
23962 window decorations.
23964 2004-06-27 Wim Taymans <wim@fluendo.com>
23966 * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
23967 (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
23968 (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
23969 (gst_dvdec_set_property), (gst_dvdec_get_property):
23970 * ext/dv/gstdvdec.h:
23971 Implement drop_factor property to lower the framerate with
23974 2004-06-27 Thomas Vander Stichele <thomas at apestaart dot org>
23976 * gst-libs/gst/colorbalance/Makefile.am:
23977 * gst-libs/gst/mixer/Makefile.am:
23978 * gst-libs/gst/play/Makefile.am:
23979 * gst-libs/gst/tuner/Makefile.am:
23980 unbreak Company's fix that didn't install the -enum.h files
23982 2004-06-27 Wim Taymans <wim@fluendo.com>
23984 * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
23985 (gst_dvdec_change_state):
23986 * ext/dv/gstdvdec.h:
23987 Fix timestamp, duration and offset of the buffers.
23989 2004-06-27 Wim Taymans <wim@fluendo.com>
23991 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23992 (gst_multifdsink_class_init), (gst_multifdsink_add),
23993 (gst_multifdsink_remove), (gst_multifdsink_clear),
23994 (gst_multifdsink_client_remove),
23995 (gst_multifdsink_handle_client_read),
23996 (gst_multifdsink_client_queue_data),
23997 (gst_multifdsink_client_queue_caps),
23998 (gst_multifdsink_client_queue_buffer),
23999 (gst_multifdsink_handle_client_write),
24000 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
24001 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
24002 (gst_multifdsink_init_send), (gst_multifdsink_close):
24003 * gst/tcp/gstmultifdsink.h:
24004 * gst/tcp/gsttcpserversink.c:
24005 (gst_tcpserversink_handle_server_read),
24006 (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
24007 More multifdsink fixes, more recovery policy fixes.
24008 Removed stupid g_print
24010 2004-06-26 Wim Taymans <wim@fluendo.com>
24012 * gst/tcp/Makefile.am:
24013 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
24014 (gst_multifdsink_get_type), (gst_multifdsink_base_init),
24015 (gst_multifdsink_class_init), (gst_multifdsink_init),
24016 (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
24017 (gst_multifdsink_handle_client_read),
24018 (gst_multifdsink_client_queue_data),
24019 (gst_multifdsink_client_queue_caps),
24020 (gst_multifdsink_client_queue_buffer),
24021 (gst_multifdsink_handle_client_write),
24022 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
24023 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
24024 (gst_multifdsink_chain), (gst_multifdsink_set_property),
24025 (gst_multifdsink_get_property), (gst_multifdsink_init_send),
24026 (gst_multifdsink_close), (gst_multifdsink_change_state):
24027 * gst/tcp/gstmultifdsink.h:
24028 * gst/tcp/gsttcpplugin.c: (plugin_init):
24029 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
24030 (gst_tcpserversink_class_init), (gst_tcpserversink_init),
24031 (gst_tcpserversink_handle_server_read),
24032 (gst_tcpserversink_handle_select),
24033 (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
24034 (gst_tcpserversink_init_send), (gst_tcpserversink_close):
24035 * gst/tcp/gsttcpserversink.h:
24036 Added multifdsink, made tcpserversink a subclass of fdsink, removed
24037 one of the locks, added recovery policy to multifdsink.
24039 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
24041 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
24042 fix decision for when getting frames with same timestamp
24043 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
24044 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24045 (gst_v4lsrc_get_property):
24046 * sys/v4l/gstv4lsrc.h:
24047 add latency offset property
24049 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
24051 * gst/videorate/gstvideorate.c: (gst_videorate_chain),
24053 fix debugging. add category.
24055 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
24057 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
24060 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
24062 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24063 (gst_alsa_src_get_time), (gst_alsa_src_loop),
24064 (gst_alsa_src_change_state):
24065 return a time that is in sync with the element's processing
24067 2004-06-25 Wim Taymans <wim@fluendo.com>
24069 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
24070 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
24071 (gst_tcpserversink_client_remove),
24072 (gst_tcpserversink_handle_client_read),
24073 (gst_tcpserversink_client_queue_data),
24074 (gst_tcpserversink_client_queue_caps),
24075 (gst_tcpserversink_client_queue_buffer),
24076 (gst_tcpserversink_handle_client_write),
24077 (gst_tcpserversink_queue_buffer),
24078 (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
24079 (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
24080 (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
24081 (gst_tcpserversink_close):
24082 * gst/tcp/gsttcpserversink.h:
24083 Serversink rewrite. Really do non blocking writes to clients and
24084 maintain an internal queue to handle slower clients while not
24085 disturbing fast clients.
24087 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
24089 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24090 better debug, don't override OFFSET and OFFSET_END
24092 2004-06-25 Iain <iain@prettypeople.org>
24094 * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
24095 name=source for the wavparse pipeline.
24097 2004-06-24 Johan Dahlin <johan@gnome.org>
24099 * ext/theora/theoraenc.c (theora_enc_chain): Call
24100 gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
24101 streamheader caps are set correctly.
24103 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
24105 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
24106 (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
24107 respect minimum bitrate; same could be done for max bitrate
24109 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
24111 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
24112 (gst_vorbisenc_setup):
24113 fix sample rate range
24115 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
24117 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
24118 (gst_oggvorbisenc_setup):
24119 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
24120 (gst_vorbisenc_setup):
24121 resolve ambiguities in code and description
24123 2004-06-24 Wim Taymans <wim@fluendo.com>
24125 * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
24126 * ext/alsa/gstalsa.h:
24127 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24128 (gst_alsa_src_update_avail), (gst_alsa_src_loop):
24129 Use alsa trigger_tstamp to get the timestamp of the first
24130 sample in the buffer for more precise sync. Some cleanups.
24132 2004-06-24 Wim Taymans <wim@fluendo.com>
24134 * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
24135 (gst_audiorate_init), (gst_audiorate_chain),
24136 (gst_audiorate_set_property), (gst_audiorate_get_property):
24137 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24138 (gst_videorate_chain):
24139 Added some logging, fixed an overflow bug in videorate.
24141 2004-06-24 Benjamin Otte <otte@gnome.org>
24143 * ext/kio/Makefile.am:
24144 fix for builddir != srcdir and distcheck
24146 2004-06-24 Benjamin Otte <otte@gnome.org>
24148 * gst-libs/gst/colorbalance/Makefile.am:
24149 * gst-libs/gst/mixer/Makefile.am:
24150 * gst-libs/gst/play/Makefile.am:
24151 * gst-libs/gst/tuner/Makefile.am:
24152 * gst/tcp/Makefile.am:
24153 * sys/dxr3/Makefile.am:
24154 don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
24156 Also add all *.list files that were missing.
24158 add a distcheck hook to ensure the above doesn't happen again.
24160 2004-06-23 David I. Lehn <dlehn@users.sourceforge.net>
24162 * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
24164 2004-06-23 Colin Walters <walters@redhat.com>
24166 * m4/Makefile.am: Distribute gst-fionread.m4.
24168 2004-06-23 Thomas Vander Stichele <thomas at apestaart dot org>
24170 * configure.ac: back to dev
24172 2004-06-23 Wim Taymans <wim@fluendo.com>
24174 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
24175 (gst_alsa_xrun_recovery):
24176 * ext/alsa/gstalsa.h:
24177 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
24178 (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
24179 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24180 (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
24181 (gst_alsa_src_loop):
24182 Add clock to alsasrc. Take new capture timestamp when
24183 restarting after an overrun. Split up some functions between
24184 alsasrc and alsasink.
24186 === release 0.8.2 ===
24188 2004-06-23 Thomas Vander Stichele <thomas at apestaart dot org>
24190 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
24191 (gst_alsa_change_state), (gst_alsa_update_avail),
24192 (gst_alsa_xrun_recovery):
24193 * ext/alsa/gstalsa.h:
24194 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24195 merge back changes from release
24197 2004-06-23 Wim Taymans <wim@fluendo.com>
24199 * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
24200 (gst_audiorate_init), (gst_audiorate_chain),
24201 (gst_audiorate_set_property), (gst_audiorate_get_property):
24202 Implement sample dropping and notify
24204 2004-06-22 Wim Taymans <wim@fluendo.com>
24206 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
24207 (theora_enc_sink_link), (theora_buffer_from_packet),
24208 (theora_push_packet), (theora_enc_chain):
24209 Some cleanups, make sure the timestamps are correct.
24211 2004-06-22 Wim Taymans <wim@fluendo.com>
24213 * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
24214 (gst_alsa_change_state), (gst_alsa_update_avail),
24215 (gst_alsa_xrun_recovery):
24216 * ext/alsa/gstalsa.h:
24217 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
24218 Cleanups, take queued samples into account when reporting
24221 2004-06-22 Wim Taymans <wim@fluendo.com>
24223 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24224 (gst_videorate_init):
24225 Initialize the property as well.
24227 2004-06-22 Wim Taymans <wim@fluendo.com>
24229 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24230 (gst_videorate_init), (gst_videorate_chain),
24231 (gst_videorate_set_property), (gst_videorate_get_property):
24232 Add property to make videorate silent.
24233 Add property to prefer new frames over old ones.
24235 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24237 * sys/osxvideo/Makefile.am:
24238 Workaround so that the osxvideo .so file gets linked with the
24239 Cocoa, OpenGL and QuickTime frameworks
24241 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24243 * sys/osxaudio/Makefile.am:
24244 Workaround so that the osxaudio .so file gets linked with the
24245 CoreAudio framework
24247 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24250 Whoops, my fault...fixed build issues
24252 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24255 Add objective-c support if running in Darwin/Mac OS X
24258 * sys/osxvideo/Makefile.am:
24259 * sys/osxvideo/osxvideosink.h:
24260 * sys/osxvideo/osxvideosink.m:
24261 * sys/osxvideo/cocoawindow.h:
24262 * sys/osxvideo/cocoawindow.m:
24263 Add osxvideosink, a cocoa-based osx video sink
24266 2004-06-19 Jan Schmidt <thaytan@mad.scientist.com>
24267 * ext/dvdnav/gst-dvd:
24268 Grab the gconf key from the right spot
24269 * gst/debug/gstnavseek.c: (gst_navseek_init),
24270 (gst_navseek_segseek), (gst_navseek_handle_src_event),
24271 (gst_navseek_chain):
24272 * gst/debug/gstnavseek.h:
24273 Add 's', 'e' and 'l' keypresses to navseek to define the start,end
24274 and loop parameters of a segment seek.
24275 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
24276 (gst_videotestsrc_get_event_masks),
24277 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
24278 * gst/videotestsrc/gstvideotestsrc.h:
24279 Add seeking support to videotestsrc
24280 Initialise the timestamp_offset variable.
24282 2004-06-18 Wim Taymans <wim@fluendo.com>
24284 * ext/sidplay/gstsiddec.cc:
24285 Fix negotiation and set correct end offset.
24287 2004-06-18 Thomas Vander Stichele <thomas at apestaart dot org>
24289 * configure.ac: branch and prerelease
24291 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24293 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
24294 (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
24295 (gst_tcpclientsrc_init_receive):
24296 * gst/tcp/gsttcpclientsrc.h:
24297 read caps when connecting to server for GDP so we set them correctly
24299 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24301 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
24302 notify drops and duplicates
24303 * gst/videoscale/videoscale.c: (videoscale_get_structure):
24304 no good reason to limit ourselves to 100x100
24306 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24308 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
24309 (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
24310 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24311 (gst_v4lsrc_get_property):
24312 * sys/v4l/gstv4lsrc.h:
24313 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24314 (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
24315 (gst_v4l_set_audio):
24316 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
24317 (gst_v4lsrc_try_capture):
24318 * sys/v4l/v4lsrc_calls.h:
24319 change try_palette to more general try_capture
24320 add autoprobe option so we can turn off autoprobing
24323 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24327 * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
24328 (gst_ximagesink_class_init):
24329 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
24330 (gst_xvimagesink_class_init):
24331 run them as finalize, not dispose, since dispose can be invoked
24334 2004-06-17 Wim Taymans <wim@fluendo.com>
24336 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
24337 (gst_alsa_get_time), (gst_alsa_xrun_recovery):
24338 * ext/alsa/gstalsa.h:
24339 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
24340 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
24341 (gst_alsa_src_change_state):
24342 * ext/alsa/gstalsasrc.h:
24343 Make the xrun code timestamp and offset the buffers correctly.
24344 moved the clock to the base class, use alsa methods to get time.
24345 Do correct timestamping on outgoing buffers.
24347 2004-06-17 Wim Taymans <wim@fluendo.com>
24349 * gst/audiorate/Makefile.am:
24350 * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
24351 (gst_audiorate_base_init), (gst_audiorate_class_init),
24352 (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
24353 (gst_audiorate_set_property), (gst_audiorate_get_property),
24354 (gst_audiorate_change_state), (plugin_init):
24355 Added an audiorate converter that fills in gaps.
24357 2004-06-17 Johan Dahlin <johan@gnome.org>
24359 * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
24361 2004-06-16 Wim Taymans <wim@fluendo.com>
24363 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
24364 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
24365 (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
24366 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24367 (gst_v4lsrc_get_property):
24368 * sys/v4l/gstv4lsrc.h:
24369 Added a copy mode to v4lsrc where it will output a copied version
24370 of its internal hardware buffer.
24371 Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
24374 2004-06-16 Wim Taymans <wim@fluendo.com>
24376 * sys/oss/gstosssrc.c: (gst_osssrc_get):
24379 2004-06-16 Wim Taymans <wim@fluendo.com>
24381 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
24382 (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
24383 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24384 (gst_v4lsrc_get_property):
24385 * sys/v4l/gstv4lsrc.h:
24386 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
24387 Added a sync mode enum property to control v4lsrc timestamp method
24388 Removed the use-fixed-fps property and moved functionality in
24390 Don't error on an error value from v4l-conf, it might not always
24393 2004-06-16 Wim Taymans <wim@fluendo.com>
24395 * gst/videorate/Makefile.am:
24396 * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
24397 (gst_videorate_base_init), (gst_videorate_class_init),
24398 (gst_videorate_getcaps), (gst_videorate_link),
24399 (gst_videorate_init), (gst_videorate_chain),
24400 (gst_videorate_set_property), (gst_videorate_get_property),
24401 (gst_videorate_change_state), (plugin_init):
24402 Added a video timestamp corrector.
24404 2004-06-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24406 fixed a potential leak with previous commit
24408 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
24410 2004-06-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24412 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
24413 Added missing refcount, fixes bug #144425
24414 Cheers Tim for finding the bug
24416 2004-06-15 Thomas Vander Stichele <thomas at apestaart dot org>
24418 * sys/v4l/gstv4l.c: (plugin_init):
24419 * sys/v4l/gstv4lcolorbalance.c:
24420 * sys/v4l/gstv4lcolorbalance.h:
24421 * sys/v4l/gstv4lelement.c:
24422 * sys/v4l/gstv4lelement.h:
24423 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
24424 * sys/v4l/gstv4lmjpegsink.h:
24425 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
24426 * sys/v4l/gstv4lmjpegsrc.h:
24427 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
24428 (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
24429 (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
24430 * sys/v4l/gstv4lsrc.h:
24431 * sys/v4l/gstv4ltuner.c:
24432 * sys/v4l/gstv4ltuner.h:
24433 * sys/v4l/gstv4lxoverlay.c:
24434 * sys/v4l/gstv4lxoverlay.h:
24435 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
24436 (gst_v4l_set_window), (gst_v4l_enable_overlay):
24437 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24438 (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
24439 (gst_v4l_set_audio):
24440 * sys/v4l/v4l_calls.h:
24441 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
24442 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
24443 (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
24444 (gst_v4lmjpegsink_playback_init),
24445 (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
24446 (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
24447 (gst_v4lmjpegsink_playback_stop),
24448 (gst_v4lmjpegsink_playback_deinit):
24449 * sys/v4l/v4lmjpegsink_calls.h:
24450 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
24451 (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
24452 (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
24453 (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
24454 (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
24455 (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
24456 * sys/v4l/v4lmjpegsrc_calls.h:
24457 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
24458 (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
24459 (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
24460 (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
24461 (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
24462 (gst_v4lsrc_try_palette):
24463 * sys/v4l/v4lsrc_calls.h:
24464 bunch of paranoia cleanups
24466 2004-06-14 David Schleef <ds@schleef.org>
24468 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
24469 (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
24470 Send discont events and change timestamps appropriately when
24471 we get a seek event. (bug #144240)
24472 * ext/cdparanoia/gstcdparanoia.h:
24474 2004-06-14 Benjamin Otte <otte@gnome.org>
24476 * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
24477 snd_pcm_hw_params_set_rate since the latter fails for no good
24478 reason on some setups.
24480 2004-06-14 David Schleef <ds@schleef.org>
24482 * gst/volume/demo.c: (value_changed_callback): exp10() is not
24483 standard. Thank you for playing.
24485 2004-06-14 Wim Taymans <wim@fluendo.com>
24487 * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
24488 Patch 1.3 broke the ordering of the colorspace info and
24489 made the plugin basically work by coincidence, reordered
24492 2004-06-14 Thomas Vander Stichele <thomas at apestaart dot org>
24494 * ext/lame/gstlame.c:
24495 * ext/mad/gstmad.c:
24496 sync caps. Make sure mad can only output a list of rates, not
24497 a full range. In the future, have three caps lists for each of the
24498 mpeg versions. Change mpegversion to a double as well.
24500 2004-06-14 Thomas Vander Stichele <thomas at apestaart dot org>
24502 * gst/volume/.cvsignore:
24503 * gst/volume/Makefile.am:
24504 * gst/volume/demo.c: (value_changed_callback), (idler),
24505 (setup_gui), (main):
24506 added small demo app
24508 2004-06-13 Jan Schmidt <thaytan@mad.scientist.com>
24509 * ext/esd/esdsink.c: (gst_esdsink_change_state):
24510 * ext/esd/esdsink.h:
24511 Close the esd connection on pause, because esd will just wait -
24512 blocking all other esd clients indefinitely.
24514 2004-06-12 Christophe Fergeau <teuf@gnome.org>
24516 * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
24517 previous commit with GST_DEBUG
24519 2004-06-12 Thomas Vander Stichele <thomas at apestaart dot org>
24522 add a header check for a dvdread header in dvdnav. Fixes #133002
24524 2004-06-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24526 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
24527 * gst/tcp/gsttcpclientsink.h:
24528 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
24529 * gst/tcp/gsttcpclientsrc.h:
24530 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
24531 (gst_tcpserversink_handle_server_read),
24532 (gst_tcpserversink_init_send):
24533 * gst/tcp/gsttcpserversink.h:
24534 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
24535 * gst/tcp/gsttcpserversrc.h:
24536 Modified the tcp plugins so they are portable (IPv4,IPv6, any future
24539 2004-06-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24542 Added ogg library so that OSX detects libtheora properly
24544 2004-06-11 Wim Taymans <wim@fluendo.com>
24546 * ext/theora/theoradec.c: (theora_dec_chain),
24547 (theora_dec_change_state):
24548 Don't try to decode frames before we received a keyframe.
24550 2004-06-11 Wim Taymans <wim@fluendo.com>
24552 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
24553 (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
24554 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24555 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
24556 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
24557 Added property to set the maximum delay of a page.
24559 2004-06-10 Wim Taymans <wim@fluendo.com>
24561 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
24562 (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
24563 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24564 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
24565 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
24566 Added max-delay property to control the maximum amount
24567 of data to put in one page.
24569 2004-06-10 Wim Taymans <wim@fluendo.com>
24571 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
24572 (gst_theora_enc_init), (theora_enc_sink_link),
24573 (theora_buffer_from_packet), (theora_enc_set_property),
24574 (theora_enc_get_property):
24575 Set duration on encoded buffer, added some more properties
24577 2004-06-10 Wim Taymans <wim@fluendo.com>
24579 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
24580 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24581 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
24582 * ext/theora/theoraenc.c: (theora_enc_chain):
24583 Fix refcounting bugs
24585 2004-06-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
24587 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
24588 (gst_asf_demux_loop), (gst_asf_demux_process_file),
24589 (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
24590 (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
24591 (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
24592 (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
24593 (gst_asf_demux_change_state):
24594 * gst/asfdemux/gstasfdemux.h:
24595 You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
24596 feels like. I think we should set a new requirement for demuxers
24597 from now on to implement sane loop functions, data loops, query
24598 and seek functions before first commit into CVS. And this commit
24599 fixes all of the above.
24601 2004-06-10 Christophe Fergeau <teuf@gnome.org>
24603 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
24604 vorbis comments are properly encoded in UTF-8 before adding them
24607 2004-06-09 Benjamin Otte <otte@gnome.org>
24609 * ext/alsa/gstalsa.c: (add_channels):
24610 handle min <= max correctly
24611 * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
24612 (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
24613 add fixation functions so we fixate correctly. No preferring of alaw
24614 anymore because it's the first structure.
24615 * ext/alsa/gstalsa.h:
24616 * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
24617 (gst_alsa_hw_params_dump):
24618 add functions to ease debugging in alsalib
24619 * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24620 (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24621 (gst_alsa_start_audio):
24622 only specify hw params if we really setup a format (fixes #134007 -
24623 or at least works around it)
24625 2004-06-09 Wim Taymans <wim@fluendo.com>
24627 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
24628 (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
24629 (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
24630 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
24631 (gst_ogg_mux_loop):
24632 Use stream caps to setup the initial pages in the ogg stream.
24633 Correctly set the streamheader caps on the srcpad.
24635 2004-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
24637 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
24638 (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
24639 (gst_v4lsrc_getcaps):
24640 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24641 (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
24642 add querying of fps lists for webcams. Negotiating to a framerate
24645 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24647 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
24648 (theora_push_buffer), (theora_push_packet),
24649 (theora_set_header_on_caps), (theora_enc_chain):
24650 mark buffers and put on streamheader, raw theora streaming
24651 now works too, whee
24653 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24655 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24656 (gst_tcp_gdp_read_caps):
24657 do a looping read for caps and GDP headers too
24659 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24661 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24662 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
24663 return EOS instead of NULL in _get
24665 2004-06-08 Wim Taymans <wim@fluendo.com>
24667 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24668 (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
24669 (gst_tcp_gdp_write_caps):
24670 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24671 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
24672 (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
24675 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24677 * ext/vorbis/Makefile.am:
24678 * ext/vorbis/vorbis.c: (plugin_init):
24679 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
24680 (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
24681 (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
24682 (vorbis_parse_change_state):
24683 * ext/vorbis/vorbisparse.h:
24684 adding a vorbisparse element that marks the buffers, streaming
24685 raw vorbis using GDP now works, whee
24687 2004-06-08 Wim Taymans <wim@fluendo.com>
24689 * ext/jpeg/Makefile.am:
24691 * ext/jpeg/gstjpeg.c: (plugin_init):
24692 * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
24693 (gst_smokedec_base_init), (gst_smokedec_class_init),
24694 (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
24695 * ext/jpeg/gstsmokedec.h:
24696 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
24697 (gst_smokeenc_base_init), (gst_smokeenc_class_init),
24698 (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
24699 (gst_smokeenc_resync), (gst_smokeenc_chain),
24700 (gst_smokeenc_set_property), (gst_smokeenc_get_property):
24701 * ext/jpeg/gstsmokeenc.h:
24702 * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
24703 (smokecodec_flush_destination), (smokecodec_term_destination),
24704 (smokecodec_init_source), (smokecodec_fill_input_buffer),
24705 (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
24706 (smokecodec_term_source), (smokecodec_encode_new),
24707 (smokecodec_decode_new), (smokecodec_info_free),
24708 (smokecodec_set_quality), (smokecodec_get_quality),
24709 (smokecodec_set_threshold), (smokecodec_get_threshold),
24710 (smokecodec_set_bitrate), (smokecodec_get_bitrate),
24711 (find_best_size), (abs_diff), (put), (smokecodec_encode),
24712 (smokecodec_parse_header), (smokecodec_decode):
24713 * ext/jpeg/smokecodec.h:
24714 Added a new simple jpeg based codec
24716 2004-06-08 Wim Taymans <wim@fluendo.com>
24718 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24719 (gst_multipart_mux_loop):
24722 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24724 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24725 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
24726 (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
24727 (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
24728 (gst_tcpserversink_init_send), (gst_tcpserversink_close):
24729 * gst/tcp/gsttcpserversink.h:
24730 take streamheader into account
24732 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24734 * gst/level/Makefile.am:
24735 * gst/level/gstlevel.c: (gst_level_class_init):
24736 clean up marshal generation
24738 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24740 * gst/tcp/Makefile.am:
24741 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
24742 (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
24743 (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
24744 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
24745 (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
24746 (gst_tcpclientsrc_get_property):
24747 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
24748 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
24749 (gst_tcpserversink_handle_client_read),
24750 (gst_tcpserversink_handle_client_write),
24751 (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
24752 * gst/tcp/gsttcpserversink.h:
24753 add signals client-added and client-removed
24754 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
24755 (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
24756 (gst_tcpserversrc_get_property):
24757 uniformized, change default protocol to NONE
24758 * gst/tcp/gsttcp-marshal.list: added
24759 2004-06-07 Benjamin Otte <otte@gnome.org>
24761 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24762 handle discont events if they happen before caps nego
24764 2004-06-07 Wim Taymans <wim@fluendo.com>
24766 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
24767 (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
24768 (gst_multipart_demux_plugin_init):
24769 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24770 (gst_multipart_mux_init), (gst_multipart_mux_loop),
24771 (gst_multipart_mux_change_state):
24772 Small updates, fix a memleak
24774 2004-06-07 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24776 * configure.ac: OSS portability
24777 * ext/arts/gst_arts.c: idem
24778 * sys/oss/gstosselement.c: idem
24779 * sys/oss/gstossmixer.c: idem
24780 * sys/oss/gstosssink.c: idem
24781 * sys/oss/gstosssrc.c: idem
24782 * sys/oss/oss_probe.c: idem
24783 - check for soundcard.h in different places for some BSD
24785 2004-06-07 Jan Schmidt <thaytan@mad.scientist.com>
24788 Add me to the authors file
24790 Increase the libdv requirement to >= version 0.100
24791 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
24792 (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
24793 (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
24794 * ext/dv/gstdvdec.h:
24795 Add support for the new_media flag when sending DISCONT events
24796 Make the querying work when video pad is not linked
24798 2004-06-07 Tim-Philipp Müller <t.i.m@zen.co.uk>
24800 reviewed by Benjamin Otte <otte@gnome.org>
24802 * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
24803 create a NULL-initialized array of pads, so we don't think they
24804 exist already. (fixes #143130)
24806 2004-06-07 Benjamin Otte <otte@gnome.org>
24808 * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
24809 (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
24810 (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
24811 don't use // coments
24813 2004-06-07 Benjamin Otte <otte@gnome.org>
24815 * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
24816 cast to GstClockTime to get higher granularity
24817 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24818 use gst_element_set_time_delay to get the exact time
24819 * ext/mad/gstmad.c: (gst_mad_chain):
24820 use the negotiated rate instead of the current frame's rate which
24821 might be wrong because of bit errors. This avoids emitting totally
24822 bogus timestamps and screwing sync.
24825 2004-06-07 Tim-Philipp Müller <t.i.m@zen.co.uk>
24827 reviewed by Benjamin Otte <otte@gnome.org>
24829 * gst/adder/gstadder.c: (gst_adder_loop):
24830 properly error out when no negotiation has happened yet. (fixes
24833 2004-06-06 Benjamin Otte <otte@gnome.org>
24835 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
24836 forward correctly transformed offset in discont events. Based on
24837 patch by Arwed v. Merkatz. (fixes #142851)
24839 2004-06-06 David Schleef <ds@schleef.org>
24841 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
24842 G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS. Should fix compile
24843 problems on several systems.
24845 2004-06-06 Benjamin Otte <otte@gnome.org>
24847 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
24848 use explicit caps on the srcpad
24849 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
24850 properly error out if caps couldn't be set (fixes #142764)
24852 2004-06-06 Benjamin Otte <otte@gnome.org>
24854 * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24855 (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24856 (gst_alsa_start_audio):
24857 - don't call set_periods_integer anymore, it breaks the
24858 configuration randomly
24859 - call snd_pcm_hw_params_set_access directly instead of using masks
24860 - don't fail if the sw_params can't be set, just use the default
24861 params and hope it works. Alsalib has weird issues when you touch
24862 sw_params and does no proper error reporting about what failed.
24863 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
24864 (gst_alsa_close_audio):
24865 make our alsa debugging go via gst debugging and not conditionally
24867 * ext/alsa/gstalsa.h:
24868 add ALSA_DEBUG_FLUSH macro
24869 * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
24871 wrap alsa errors to be printed via the gst debugging system and not
24874 2004-06-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
24876 * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
24877 (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
24878 (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
24879 (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
24880 (qtdemux_parse_trak):
24881 * gst/qtdemux/qtdemux.h:
24882 Bitch. Also known as seeking, querying & co.
24883 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
24884 (gst_osssink_change_state):
24885 * sys/oss/gstosssink.h:
24886 Resyncing is for weenies, this hack is no longer needed and was
24887 broken anyway (since it - unintendedly - always leaves resync to
24890 2004-06-05 Andrew Turner <zxombie@hotpop.com>
24892 * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
24893 * gst/tcp/gsttcpclientsrc.h: idem
24894 - define MSG_NOSIGNAL if not done
24895 - include unistd.h for off_t
24898 2004-06-05 Benjamin Otte <otte@gnome.org>
24901 * ext/kio/Makefile.am:
24902 check for qt's moc preprocessor explicitly and use it
24904 2004-06-03 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
24906 * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
24907 don't get a signal for EPIPE on socket writes
24908 (somebody check if this works on other platforms)
24910 2004-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
24912 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
24913 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
24914 check error condition on available samples correctly
24916 2004-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
24918 * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
24920 * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
24921 (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
24922 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
24923 (gst_tcpserversrc_gdp_read_header):
24924 use ssize_t over size_t since the former is signed and thus the
24925 check for error codes can work
24927 2004-06-02 Wim Taymans <wim@fluendo.com>
24931 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24932 (gst_multipart_mux_loop):
24935 2004-06-02 Wim Taymans <wim@fluendo.com>
24937 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24938 (gst_multipart_mux_init), (gst_multipart_mux_loop),
24939 (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
24940 (gst_multipart_mux_change_state):
24941 Added configurable boundary specifier, added the value as a
24942 caps field as well.
24944 2004-06-02 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24946 * gst/tcp/gsttcp.c:
24947 * gst/tcp/gsttcpclientsrc.c:
24948 * gst/tcp/gsttcpclientsrc.h:
24949 * gst/tcp/gsttcpserversrc.c:
24950 - portability fix, to compile on OSX
24953 * sys/osxaudio/gstosxaudioelement.c:
24954 * sys/osxaudio/gstosxaudiosink.c:
24955 * sys/osxaudio/gstosxaudiosrc.c:
24956 - compilation warnings on OSX
24959 2004-06-02 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24961 * ext/vorbis/vorbisdec.c : sign warning fixes
24963 * gst-libs/gst/mixer/mixertrack.c :
24964 do no use defines which are glib 2.4 specific
24966 2004-06-01 Christophe Fergeau <teuf@gnome.org>
24968 * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
24969 buffer since libflac doesn't expect it (reports a sync error when
24970 it encounters that)
24973 2004-06-01 Owen Fraser-Green <owen@discobabe.net>
24975 * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
24976 * gst-libs/gst/mixer/mixertrack.c:
24977 (gst_mixer_track_get_property), (get_mixer_track_init),
24978 (get_mixer_track_get_property): Added property accessors
24979 * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
24980 * gst-libs/gst/mixer/mixeroptions.c:
24981 (gst_mixer_options_get_values): Added
24982 * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
24983 * gst-libs/gst/mixer/mixer.c: Fixed comment
24986 2004-06-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
24988 * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
24989 improve error messages on open
24992 2004-06-01 Thomas Vander Stichele <thomas at apestaart dot org>
24994 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
24995 check if v4l-conf is in path
24997 2004-06-01 Thomas Vander Stichele <thomas at apestaart dot org>
24999 * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
25000 change assert to a more readable error message
25002 2004-05-31 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25004 * gst-libs/gst/tuner/tunerchannel.h:
25005 - add a freq_multiplicator field to make the conversion
25006 between internal frequency unit and Hz
25007 * sys/v4l/gstv4lelement.c:
25008 * sys/v4l2/gstv4l2element.c:
25009 - change default video device to /dev/video0
25010 * sys/v4l/v4l_calls.c:
25011 * sys/v4l2/v4l2_calls.c:
25012 - we only expose frequency to the user in Hz instead of
25013 bastard v4lX unit (either 62.5kHz or 62.5Hz)
25015 2004-05-31 Jan Schmidt <thaytan@mad.scientist.com>
25016 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
25017 Initialise b_o_s and e_o_s variables
25018 * gst-libs/gst/riff/riff-media.c:
25019 (gst_riff_create_video_caps_with_data):
25020 Add some unusual fourcc's from mplayer avi's
25021 * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
25022 Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
25025 2004-05-28 Wim Taymans <wim@fluendo.com>
25028 * gst/alpha/Makefile.am:
25029 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
25030 (gst_alpha_get_type), (gst_alpha_base_init),
25031 (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
25032 (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
25033 (gst_alpha_chroma_key), (gst_alpha_chain),
25034 (gst_alpha_change_state), (plugin_init):
25035 A plugin to add an alpha channel to I420 video. Can optionally do
25037 * gst/multipart/Makefile.am:
25038 * gst/multipart/multipart.c: (plugin_init):
25039 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
25040 (gst_multipart_demux_class_init), (gst_multipart_demux_init),
25041 (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
25042 (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
25043 (gst_multipart_demux_change_state),
25044 (gst_multipart_demux_plugin_init):
25045 * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
25046 (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
25047 (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
25048 (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
25049 (gst_multipart_mux_pad_unlink),
25050 (gst_multipart_mux_request_new_pad),
25051 (gst_multipart_mux_handle_src_event),
25052 (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
25053 (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
25054 (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
25055 (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
25056 A Multipart demuxer/muxer. Not sure if it violates specs. Used to
25057 send multipart jpeg images to a browser.
25058 * gst/videobox/Makefile.am:
25059 * gst/videobox/README:
25060 * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
25061 (gst_video_box_get_type), (gst_video_box_base_init),
25062 (gst_video_box_class_init), (gst_video_box_init),
25063 (gst_video_box_set_property), (gst_video_box_get_property),
25064 (gst_video_box_sink_link), (gst_video_box_i420),
25065 (gst_video_box_ayuv), (gst_video_box_chain),
25066 (gst_video_box_change_state), (plugin_init):
25067 Crops or adds borders around an image. can do alpha channel
25069 * gst/videomixer/Makefile.am:
25070 * gst/videomixer/README:
25071 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
25072 (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
25073 (gst_videomixer_pad_get_sink_event_masks),
25074 (gst_videomixer_pad_get_property),
25075 (gst_videomixer_pad_set_property),
25076 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
25077 (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
25078 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
25079 (gst_videomixer_base_init), (gst_videomixer_class_init),
25080 (gst_videomixer_init), (gst_videomixer_request_new_pad),
25081 (gst_videomixer_handle_src_event),
25082 (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
25083 (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
25084 (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
25085 (gst_videomixer_loop), (gst_videomixer_get_property),
25086 (gst_videomixer_set_property), (gst_videomixer_change_state),
25088 Generic video mixer plugin, can handle multiple inputs all with
25089 different framerates and video sizes. Is fully alpha channel
25092 2004-05-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
25094 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
25095 Select first track as master track. Not sure how else to handle
25097 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
25098 Discard discont events. Should fix #142962.
25100 2004-05-26 Ronald Bultje <rbultje@ronald.bitfreak.net>
25102 * ext/alsa/Makefile.am:
25103 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
25104 (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
25105 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
25106 (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
25107 (gst_alsa_mixer_get_option):
25108 * ext/alsa/gstalsamixer.h:
25109 * ext/alsa/gstalsamixeroptions.c:
25110 (gst_alsa_mixer_options_get_type),
25111 (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
25112 (gst_alsa_mixer_options_new):
25113 * ext/alsa/gstalsamixeroptions.h:
25114 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
25115 * ext/alsa/gstalsamixertrack.h:
25116 Add enumerations (as GstMixerOptions). Make correct distinction
25117 between input/output tracks. Add capture/playback private flag.
25118 Use flag to decide on whether to set capture or playback volumes
25119 or switches. Use playback and record switches.
25120 * gst-libs/gst/mixer/Makefile.am:
25121 * gst-libs/gst/mixer/mixer-marshal.list:
25122 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
25123 (gst_mixer_set_option), (gst_mixer_get_option),
25124 (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
25125 (gst_mixer_volume_changed), (gst_mixer_option_changed):
25126 * gst-libs/gst/mixer/mixer.h:
25127 * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
25128 (gst_mixer_options_class_init), (gst_mixer_options_init),
25129 (gst_mixer_options_dispose):
25130 * gst-libs/gst/mixer/mixeroptions.h:
25131 Add GstMixerOptions.
25132 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
25133 Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
25134 broken device detection on computers with multiple OSS sound
25137 2004-05-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
25139 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
25140 fixate nicely even when the peer is not negotiating
25142 2004-05-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
25144 * gst/audioconvert/gstaudioconvert.c:
25145 (gst_audio_convert_parse_caps):
25146 make sure we don't allow depth > width
25147 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
25148 fixate endianness to G_BYTE_ORDER as default
25149 * gst/audioscale/gstaudioscale.c:
25150 we don't handle another endianness as host-endianness
25152 2004-05-25 David Schleef <ds@schleef.org>
25154 * gst/ffmpegcolorspace/mem.c: malloc() is in stdlib.h, not malloc.h
25156 2004-05-24 Benjamin Otte <otte@gnome.org>
25158 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
25159 (gst_oggvorbisenc_setup):
25160 properly fail when we can't setup the vorbis encoder due to
25161 unsupported settings
25162 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
25163 (gst_vorbisenc_setup):
25165 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
25166 fix case where warnings occured when one pad was unlinked while the
25167 other's link function was called
25169 2004-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
25171 * gst/tcp/Makefile.am:
25174 2004-05-24 Benjamin Otte <in7y118@public.uni-hamburg.de>
25176 * gst-libs/gst/resample/private.h:
25177 don't use optimizations that are #if 0'ed
25179 2004-05-24 Wim Taymans <wim@fluendo.com>
25181 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
25182 Fix potential division by zero error and hopefully get
25183 the position query right to get correct timestamps on avi
25186 2004-05-24 Wim Taymans <wim@fluendo.com>
25188 * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
25189 (gst_videoscale_scale_nearest_str2),
25190 (gst_videoscale_scale_nearest_str4),
25191 (gst_videoscale_scale_nearest_32bit),
25192 (gst_videoscale_scale_nearest_24bit),
25193 (gst_videoscale_scale_nearest_16bit):
25194 Fix the scaling algorithm and avoid a buffer overflow.
25195 removed the while loop in the scaling function as it
25196 was used for point sampling only.
25198 2004-05-24 Benjamin Otte <in7y118@public.uni-hamburg.de>
25200 * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
25201 (gst_id3_tag_class_init), (gst_id3_tag_init),
25202 (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
25203 (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
25204 (gst_id3_tag_send_tag_event):
25205 lots of fixes to make id3mux work and id3demux work correctly
25207 2004-05-24 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25210 add rules to build shout2send (was removed by accident
25211 when this module was no more marked experimental/broken)
25213 2004-05-24 Zaheer Abbas Merali <zaheerabbas at merali dot org>
25215 * ext/shout2/gstshout2.c:
25216 * ext/shout2/gstshout2.h:
25217 adding a "connection problem" signal to shout2send
25220 2004-05-21 Thomas Vander Stichele <thomas at apestaart dot org>
25222 * ext/kio/kioreceiver.cpp:
25223 * ext/kio/kioreceiver.h:
25224 fix sign comparison issues
25226 2004-05-21 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25228 * gst/cdxaparse/gstcdxaparse.c:
25229 * gst/cdxaparse/gstcdxaparse.h:
25231 add some checks/sanity
25232 prepare for seek addition
25234 * sys/sunaudio/gstsunaudio.c:
25235 remove exported dupe init function
25237 2004-05-21 Jan Schmidt <thaytan@mad.scientist.com>
25239 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
25240 (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
25241 Fix format conversion and position querying.
25242 * gst/debug/progressreport.c: (gst_progressreport_report):
25243 Don't output a bogus total value that we didn't query.
25244 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
25245 Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
25246 only a blank window after xine has been used.
25248 2004-05-21 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
25251 sync with upstream version to fix test on FC2
25252 readd with -ko to preserve Id header
25254 2004-05-20 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25257 test for FIONREAD ioctl in sys/filio.h for Solaris compat.
25258 * gst/tcp/gsttcpclientsrc.c: idem
25259 * gst/tcp/gsttcpserversink.c: idem
25260 * gst/tcp/gsttcpserversrc.c: idem
25261 * m4/gst-fionread.m4: idem
25263 * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
25265 * configure.ac: enable speex plugin for speex 1.1.5+
25266 * ext/speex/gstspeexenc.c: fix cast warning
25268 * ext/esd/README: fix typo
25270 2004-05-20 David Schleef <ds@schleef.org>
25272 * configure.ac: Minor cosmetic change to convince the buildbot to
25274 * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
25275 (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
25276 (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
25277 (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
25278 (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
25279 (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
25280 More hacking. Plays audio now.
25282 2004-05-20 David Schleef <ds@schleef.org>
25287 2004-05-20 David Schleef <ds@schleef.org>
25289 * sys/osxaudio/Makefile.am: New OS X audio plugin by Zaheer Abbas Merali
25290 * sys/osxaudio/gstosxaudio.c:
25291 * sys/osxaudio/gstosxaudioelement.c:
25292 * sys/osxaudio/gstosxaudioelement.h:
25293 * sys/osxaudio/gstosxaudiosink.c:
25294 * sys/osxaudio/gstosxaudiosink.h:
25295 * sys/osxaudio/gstosxaudiosrc.c:
25296 * sys/osxaudio/gstosxaudiosrc.h:
25298 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
25300 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
25301 (gst_vorbisenc_chain):
25302 put the codec headers on the caps as streamheader as well as
25305 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
25307 * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
25308 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
25309 (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
25310 split up push_packet into two functions
25312 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
25314 * gst/tcp/.cvsignore:
25316 * gst/tcp/Makefile.am:
25318 * gst/tcp/gsttcp.c:
25319 * gst/tcp/gsttcp.h:
25320 * gst/tcp/gsttcpclientsink.c:
25321 * gst/tcp/gsttcpclientsink.h:
25322 * gst/tcp/gsttcpclientsrc.c:
25323 * gst/tcp/gsttcpclientsrc.h:
25324 * gst/tcp/gsttcpplugin.c:
25325 * gst/tcp/gsttcpserversink.c:
25326 * gst/tcp/gsttcpserversink.h:
25327 * gst/tcp/gsttcpserversrc.c:
25328 * gst/tcp/gsttcpserversrc.h:
25329 add new tcp elements
25331 2004-05-19 Wim Taymans <wim@fluendo.com>
25333 * gst/law/mulaw-conversion.c: (mulaw_encode):
25334 Fix overflow bug in ulaw encoding.
25336 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25338 * ext/mad/gstmad.c: (gst_mad_handle_event):
25339 don't unref the event twice
25341 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25344 remove -Wno-sign-compare
25346 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25349 remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
25350 if you want to work against glib 2.2 and 2.4
25352 2004-05-19 Thomas Vander Stichele <thomas at apestaart dot org>
25354 * gst/tcp/Makefile.am:
25355 * gst/tcp/gsttcp.c:
25356 * gst/tcp/gsttcp.h:
25357 * gst/tcp/gsttcpsink.h:
25358 * gst/tcp/gsttcpsrc.h:
25359 gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
25361 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25363 * gst/debug/tests.c: (md5_get_value):
25364 fix segfault on gst-inspect
25366 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25368 * gst/debug/testplugin.c:
25369 * gst/debug/tests.c:
25370 * gst/debug/tests.h:
25371 add new extensible and configurable testing element. Current tests
25372 include buffer count, stream length, timestamp/duration matching and
25374 * gst/debug/Makefile.am:
25375 * gst/debug/gstdebug.c: (plugin_init):
25376 add infrastructure for new element
25378 2004-05-19 Johan Dahlin <johan@gnome.org>
25380 * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
25381 ending of the array. Fixes gst-inspect segfault on ppc.
25383 2004-05-19 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25385 * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
25387 * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
25389 2004-05-18 David Schleef <ds@schleef.org>
25391 * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
25392 warnings (bugs, actually) noticed by gcc but not forte.
25394 2004-05-18 David Schleef <ds@schleef.org>
25396 * sys/sunaudio/Makefile.am:
25397 * sys/sunaudio/gstsunaudio.c: New sunaudiosink
25399 2004-05-18 David Schleef <ds@schleef.org>
25401 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
25402 (gst_qtdemux_loop_header): Patch from dcm@acm.org (David Moore)
25403 to allow qtdemux to use non-seekable streams. (bug #142272)
25405 2004-05-18 David Schleef <ds@schleef.org>
25407 * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
25408 (gst_resample_sinc_ft_float): Remove use of static temporary
25409 buffer. This code was obviously not supposed to last long, but
25410 it's stuck in our ABI, so it required a little hack to make it
25411 ABI-compatible. Fixes #142585.
25412 * gst-libs/gst/resample/resample.h: same.
25414 2004-05-18 David Schleef <ds@schleef.org>
25416 * configure.ac: Add sunaudio
25417 * examples/Makefile.am: make gstplay depend on gconf
25418 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
25419 * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
25420 (convert_table_lookup), (img_convert): remove c99-isms
25421 * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
25422 unsigned, to fix a warning on Solaris
25423 * gst/mpeg1sys/systems.c: bcopy->memcpy
25424 * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
25425 * sys/Makefile.am: Add sunaudio
25427 2004-05-18 Wim Taymans <wim@fluendo.com>
25429 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
25430 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
25431 (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
25432 (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
25433 (gst_ogg_mux_loop):
25434 Fix an ugly memleak where the muxer didn't flush enough ogg
25435 pages. This also resulted in badly muxed ogg files.
25437 2004-05-18 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25439 * gst/asfdemux/asfheaders.c :
25440 * gst/asfdemux/asfheaders.h :
25441 * gst/asfdemux/gstasfdemux.c :
25442 - fix ASF_OBJ_PADDING guid
25443 - add 3 new object guids (language list, metadata,
25444 extended stream properties)
25445 - add a function to parse extended header objects
25447 2004-05-18 Benjamin Otte <in7y118@public.uni-hamburg.de>
25449 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
25450 remove leftover debugging g_print
25452 2004-05-17 Ronald Bultje <rbultje@ronald.bitfreak.net>
25454 * ext/mad/gstmad.c: (gst_mad_handle_event):
25455 Fix for when the first format in a discont event is not a
25456 byte-based one. Should fix #137710.
25458 2004-05-18 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25460 * m4/a52.m4 : fix compilation with -Wall -Werror
25461 * m4/libfame.m4 : idem
25462 * m4/libmikmod.m4 : idem
25464 2004-05-17 Benjamin Otte <otte@gnome.org>
25466 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25467 signal the new tags before giving up the reference
25469 2004-05-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
25471 * ext/shout2/gstshout2.c:
25472 use application/ogg instead of application/x-ogg (patch by Patrick
25473 Guimond, fixes #142432)
25474 * sys/oss/gstosselement.c: (gst_osselement_reset),
25475 (gst_osselement_sync_parms):
25476 don't set fragment size unless specified (fixes #142493)
25478 2004-05-17 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25480 * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
25483 2004-05-17 Benjamin Otte <otte@gnome.org>
25485 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
25486 compute offsets correctly for internal buffers so timestamps are set
25487 correctly when we can't seek. Also handle cases where there are no
25488 offsets. (based on a patch by David Moore, fixes #142507)
25490 2004-05-17 Benjamin Otte <otte@gnome.org>
25492 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25493 use correct variable when determining amount of data to skip so we
25494 don't skip into the void and segfault
25496 2004-05-16 Benjamin Otte <otte@gnome.org>
25498 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
25501 2004-05-16 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25503 * gst/asfdemux/gstasfdemux.c:
25504 - fix a mem leak and always propagate tags
25505 - add WMV3 to known video codecs (but no decoder yet)
25506 - replace "surplus data" at end of audio header for what
25507 it is : codec specific data
25510 2004-05-16 Arwed v. Merkatz <v.merkatz@gmx.net>
25512 reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net>
25514 * gst-libs/gst/audio/audioclock.c:
25515 Fix wrong return type (#142205).
25517 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
25519 * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
25520 Ignore CRCs by default (fixes #142566).
25522 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
25524 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
25525 (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
25526 (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
25527 (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
25528 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
25529 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
25530 Fix for cases where we fail to attach to a mixer.
25532 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
25534 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
25535 Don't touch events after not owning them anymore.
25536 * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
25537 (gst_wavparse_fmt), (gst_wavparse_other),
25538 (gst_wavparse_handle_seek), (gst_wavparse_loop),
25539 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
25540 (gst_wavparse_srcpad_event):
25541 * gst/wavparse/gstwavparse.h:
25542 Add seeking, fix querying.
25544 2004-05-16 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25546 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25547 - process comments even if they don't end with \0\0
25548 g_convert would ignore them if present and works well without them
25550 2004-05-16 Benjamin Otte <otte@gnome.org>
25552 * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
25555 2004-05-16 Benjamin Otte <otte@gnome.org>
25557 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25558 don't write to memory we might not write to - g_convert does that
25559 for us anyway (fixes #142613)
25560 (gst_asf_demux_audio_caps):
25561 comment out gst_util_dump_mem
25563 2004-05-16 Benjamin Otte <otte@gnome.org>
25565 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25566 compute correct expected timestamps after seek (broken since
25568 * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
25569 rename element and debugging category to gdkpixbufscale
25571 2004-05-16 Benjamin Otte <otte@gnome.org>
25573 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25574 add error checking to snd_pcm_delay and remove duplicate call to
25575 snd_pcm_delay that caused issues (see inline code comments)
25576 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
25577 make more readable and fix return value when snd_pcm_delay fails
25580 2004-05-15 Jan Schmidt <thaytan@mad.scientisti.com>
25581 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
25582 (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
25583 (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
25584 (gst_pixbufscale_link), (gst_pixbufscale_init),
25585 (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
25586 (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
25587 (gst_pixbufscale_get_property), (pixbufscale_init):
25588 * ext/gdk_pixbuf/pixbufscale.h:
25589 Add these files I forgot earlier
25591 2004-05-15 Jan Schmidt <thaytan@mad.scientist.com>
25592 * ext/gdk_pixbuf/Makefile.am:
25593 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
25594 * ext/gdk_pixbuf/gstgdkpixbuf.h:
25595 Add new pixbufscale element to scale RGB video
25596 using gdk_pixbuf, because gdk_pixbuf does BILINEAR
25597 and HYPER interpolation correctly.
25598 * ext/theora/theoraenc.c: (theora_enc_chain),
25599 Discard buffer and return if explicit caps could not be set
25600 (theora_enc_get_property):
25601 Make _get return kbps for the bitrate consistent with
25605 2004-05-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
25607 * ext/libvisual/visual.c: (gst_visual_chain):
25608 add missing visual_audio_analyze
25610 2004-05-14 David Schleef <ds@schleef.org>
25612 * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
25613 is killed while we're playing.
25614 * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
25615 gst_element_no_more_pads().
25617 2004-05-14 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25619 * gst-libs/gst/riff/riff-read.c :
25620 - fix INFO tag extraction in RIFF/AVI files
25621 because gst_event_unref (event) also freed taglist
25624 2004-05-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25626 * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
25627 * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
25629 * gst/auparse/gstauparse.c :
25630 - add code (commented for now) to support audio/x-adpcm on src pad
25631 (we have no decoder for those layout yet)
25633 * gst/cdxaparse/gstcdxaparse.c :
25634 * gst/cdxaparse/gstcdxaparse.h :
25635 - partial rewrite using RiffRead (ripped iain's wavparse code)
25637 * gst/rtp/gstrtpL16enc.c : typo
25638 * gst/rtp/gstrtpgsmenc.c : typo
25640 2004-05-13 Benjamin Otte <otte@gnome.org>
25643 check for exact version of libvisual, it's not supposed to be
25646 2004-05-13 Benjamin Otte <in7y118@public.uni-hamburg.de>
25648 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
25649 signal no-more-pads
25651 2004-05-13 Jan Schmidt <thaytan@mad.scientist.com>
25653 * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
25654 Report which format was used for GST_FORMAT_DEFAULT
25655 * gst/debug/Makefile.am:
25656 * gst/debug/gstdebug.c: (plugin_init):
25657 * gst/debug/progressreport.c: (gst_progressreport_base_init),
25658 (gst_progressreport_class_init), (gst_progressreport_init),
25659 (gst_progressreport_report), (gst_progressreport_set_property),
25660 (gst_progressreport_get_property), (gst_progressreport_chain),
25661 (gst_progressreport_plugin_init):
25662 Add progressreport element for testing.
25664 2004-05-13 Thomas Vander Stichele <thomas at apestaart dot org>
25666 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
25667 * sys/v4l/gstv4lsrc.h:
25668 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
25669 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
25670 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
25671 (gst_v4lsrc_grab_frame):
25673 send a discont at start
25675 2004-05-12 Colin Walters <walters@redhat.com>
25677 * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
25678 inflooping if we can't find a chunk. Or in other words, don't blow
25679 chunks if we don't have a chunk to blow.
25681 2004-05-13 Jan Schmidt <thaytan@mad.scientist.com>
25682 * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
25683 Remove old debug output
25684 * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
25685 (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
25686 (gst_dvdec_set_property), (gst_dvdec_get_property):
25687 Change the quality setting to an enum, so it works from gst-launch
25688 Don't renegotiate a non-linked pad. Allows audio only decoding.
25689 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
25690 (gst_deinterlace_link), (gst_deinterlace_init):
25691 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
25692 (gst_videodrop_link):
25693 Some caps negotiation fixes
25695 2004-05-12 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25697 * ext/tarkin/gsttarkin.c :
25698 - Change RANK from NONE to PRIMARY
25699 * ext/gdk_pixbuf/gstgdkpixbuf.c :
25700 - Change RANK from NONE to MARGINAL
25701 * ext/divx/gstdivxenc.c :
25702 - Change RANK from PRIMARY to NONE (encoder/spider issue)
25704 2004-05-12 Thomas Vander Stichele <thomas at apestaart dot org>
25706 * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
25707 (gst_vorbisenc_push_packet):
25708 copy a function that was added between 1.0 and 1.0.1 until we
25709 depend on worthwhile features of post-1.0
25711 2004-05-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
25714 enable shout2 by default
25715 * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
25716 (gst_shout2send_base_init), (gst_shout2send_init),
25717 (gst_shout2send_connect), (gst_shout2send_change_state):
25718 * ext/shout2/gstshout2.h:
25719 make this work again. Based on a patch by Zaheer Abbas Merali (fixes
25721 * ext/theora/theora.c: (plugin_init):
25722 don't set rank on encoders
25724 2004-05-11 Jeremy Simon <jesimon@libertysurf.fr>
25726 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
25727 Use codec_data property instead of flag1 and flag2 for wma
25729 2004-05-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25731 * gst/cdxaparse/gstcdxaparse.c :
25732 - Add mpegversion to CAPS to make it link
25733 - Rank is as GST_RANK_SECONDARY instead of NONE
25734 * gst/auparse/gstauparse.c :
25735 - Document all audio encoding we can encounter from Solaris 9
25736 headers and libsndfile information.
25737 - Increase max. rate from 48000 to 192000 (to match other elements)
25738 - Don't try to play junk data between header and samples
25740 2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
25742 * ext/libvisual/visual.c: (gst_visual_getcaps):
25743 use the right caps depending on endianness (I hope)
25744 * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
25745 use GST_RANK_NONE for all non-decoding elements or spider gets
25748 2004-05-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
25750 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25751 Fix some odd cases and fix BE metadata parsing of unicode16 text.
25753 2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
25755 * gst/switch/gstswitch.c: (gst_switch_release_pad),
25756 (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
25757 (gst_switch_loop), (gst_switch_get_type):
25758 whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
25759 HEADERS. Had to be said.
25761 2004-05-10 David Schleef <ds@schleef.org>
25763 * configure.ac: Add prototype Dirac support.
25765 * ext/dirac/Makefile.am:
25766 * ext/dirac/gstdirac.cc:
25767 * ext/dirac/gstdiracdec.cc:
25769 2004-05-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
25771 * gst/auparse/gstauparse.c: (gst_auparse_class_init),
25772 (gst_auparse_init), (gst_auparse_chain),
25773 (gst_auparse_change_state):
25774 Hack around spider. Remove me some day please.
25776 2004-05-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
25778 * gst/auparse/gstauparse.c: (gst_auparse_chain):
25779 Fix for some uninitialized variables in previous patch, also
25780 makes it work. Fixes #142286 while we're at it.
25782 2004-05-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25784 * gst/auparse/gstauparse.c:
25785 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
25786 only unsupported formats are ADPCM/CCITT G.72x
25788 * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
25790 2004-05-10 Wim Taymans <wim@fluendo.com>
25792 * ext/vorbis/Makefile.am:
25793 * ext/vorbis/README:
25794 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
25795 (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
25796 (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
25797 (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
25798 (gst_oggvorbisenc_convert_sink),
25799 (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
25800 (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
25801 (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
25802 (get_constraints_string), (update_start_message),
25803 (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
25804 (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
25805 (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
25806 * ext/vorbis/oggvorbisenc.h:
25807 * ext/vorbis/vorbis.c: (plugin_init):
25808 * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
25809 (raw_caps_factory), (gst_vorbisenc_class_init),
25810 (gst_vorbisenc_init), (gst_vorbisenc_setup),
25811 (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
25812 (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
25813 * ext/vorbis/vorbisenc.h:
25814 Added a raw vorbis encoder to be used with the oggmuxer.
25815 We still need the old encoder for some gnome applications,
25816 read the README to find out how that works.
25817 The raw encoder is called "rawvorbisenc" until 0.9.
25819 2004-05-10 Wim Taymans <wim@fluendo.com>
25821 * ext/ogg/gstogg.c: (plugin_init):
25822 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
25824 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
25825 (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
25826 (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
25827 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
25828 (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
25829 (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
25830 (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
25831 (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
25832 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
25833 (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
25834 Added an ogg muxer.
25835 Small typo fixes in the demuxer.
25837 2004-05-10 Wim Taymans <wim@fluendo.com>
25839 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
25840 (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
25841 (theora_enc_change_state), (theora_enc_set_property),
25842 (theora_enc_get_property):
25843 Mark the last packet with an EOS flag which is not really needed
25845 Do some better video framerate initialisation.
25846 Update the buffer timestamp.
25848 2004-05-10 Jan Schmidt <thaytan@mad.scientist.com>
25850 * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
25851 Return the result of the parent state change call
25853 2004-05-10 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25855 * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
25856 * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
25857 * gst/law/alaw-encode.c : (idem)
25858 * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
25859 * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
25860 * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
25862 2004-05-09 Benjamin Otte <otte@gnome.org>
25864 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
25865 don't use a fixed buffer size when writing variable length data to
25866 it. Fixes memory corruption and makes alsasrc work
25868 2004-05-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
25870 * ext/gnomevfs/gstgnomevfssink.c:
25871 (_gst_boolean_allow_overwrite_accumulator),
25872 (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
25873 Run glib's default signal handler (??) in RUN_CLEANUP rather than
25874 RUN_LAST, and don't use that to set the accumulator value because
25875 then it's always FALSE.
25877 2004-05-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
25879 * gst-libs/gst/riff/riff-media.c:
25880 (gst_riff_create_video_caps_with_data),
25881 (gst_riff_create_audio_caps),
25882 (gst_riff_create_audio_template_caps):
25883 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
25884 Fix for unaligned RIFF files (i.e. where all the chunks together
25885 in a LIST chunk are not of the same size as the size given in
25886 the LIST chunk header). Fixes several odd WAVE files. Also fix
25887 ADPCM (block_align property) in audio, so that wavparse based
25888 on this works now as it used to stand-alone.
25890 2004-05-09 Edward Hervey <bilboed@bilboed.com>
25892 reviewed by Benjamin Otte <otte@gnome.org>
25894 * ext/a52dec/gsta52dec.c:
25895 * ext/divx/gstdivxdec.c:
25896 * ext/divx/gstdivxenc.c:
25897 * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
25898 * ext/faac/gstfaac.c: (gst_faac_base_init):
25899 * ext/faad/gstfaad.c: (gst_faad_base_init):
25900 * ext/ivorbis/vorbisfile.c:
25901 * ext/lame/gstlame.c:
25902 * ext/libfame/gstlibfame.c:
25903 * ext/mpeg2enc/gstmpeg2enc.cc:
25904 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
25905 * ext/sidplay/gstsiddec.cc:
25906 * ext/speex/gstspeexdec.c:
25907 * ext/speex/gstspeexenc.c:
25908 * ext/xvid/gstxviddec.c:
25909 * ext/xvid/gstxvidenc.c:
25910 correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
25913 2004-05-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
25915 * ext/alsa/gstalsa.c: (device_list),
25916 (gst_alsa_class_probe_devices):
25917 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
25918 Fix alsa oddness in mixer after the combination of using mixer
25919 in source/sink elements and using hw:x,y instead of just hw:x.
25921 2004-05-09 Benjamin Otte <otte@gnome.org>
25923 * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
25924 (gst_wavparse_create_sourcepad):
25925 make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
25928 2004-05-09 Benjamin Otte <otte@gnome.org>
25930 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
25931 allow discont events before caps nego
25933 2004-05-08 Benjamin Otte <otte@gnome.org>
25935 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
25938 2004-05-08 Benjamin Otte <otte@gnome.org>
25940 * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
25941 (gst_level_change_state), (gst_level_init):
25942 * gst/level/gstlevel.h:
25943 figure out if we're initialized directly instead of keeping a
25944 variable that's wrong in 90% of cases
25945 don't initialize pads and then leak them and use a new unitialized
25946 pad. (fixes #142084)
25947 these were bugs so n00bish I didn't find them for an hour :/
25949 2004-05-08 Iain <iain@prettypeople.org>
25951 * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
25952 * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
25953 (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
25954 return the length that was read.
25955 (gst_riff_read_strf_auds): Allow fmt tags as well.
25957 2004-05-07 David Schleef <ds@schleef.org>
25959 * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
25960 signed char assumption in faad.h.
25962 2004-05-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
25964 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
25965 Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
25967 2004-05-07 Colin Walters <walters@redhat.com>
25969 * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
25970 * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
25972 * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
25973 Add dispose function.
25975 2004-05-08 Jan Schmidt <thaytan@mad.scientist.com>
25976 * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
25977 Fix caps nego and pad templates. RGB mode caps should
25979 * ext/dvdnav/gst-dvd:
25980 Move mpeg2dec inside the thread because otherwise the
25981 queue rejects cap changes mid-stream
25982 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
25983 (gst_mpeg2dec_flush_decoder):
25984 For mpeg2dec > 0.4.0, call the flush function instead of
25985 manually extracting all in-flight frames.
25986 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
25987 (gst_dv1394src_init), (gst_dv1394src_iso_receive):
25988 Change mime type video/dv go video/x-dv to match the
25989 rest of gst-plugins
25991 2004-05-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
25993 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
25994 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
25995 (gst_alsa_sink_class_init):
25996 * ext/alsa/gstalsasink.h:
25997 * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
25998 (gst_alsa_src_class_init):
25999 * ext/alsa/gstalsasrc.h:
26000 Make alsasink/src a subclass of alsamixer so that mixer stuff
26001 shows up in gst-rec. Needs some finetuning.
26003 2004-05-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
26005 * ext/lame/gstlame.c: (gst_lame_chain):
26007 * ext/mad/gstmad.c: (gst_mad_handle_event):
26009 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
26010 be able to detect mp3 files < 4096 bytes
26012 2004-05-06 Wim Taymans <wim@fluendo.com>
26014 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
26015 (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
26016 (theora_enc_set_property), (theora_enc_get_property):
26017 Also encode the first frame, cleanup some code.
26019 2004-05-06 Wim Taymans <wim@fluendo.com>
26021 * ext/mpeg2enc/gstmpeg2enc.cc:
26022 Forward events first before deciding that negotiation was
26025 2004-05-06 Wim Taymans <wim@fluendo.com>
26027 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
26028 First process the events before deciding that negotiation
26031 2004-05-06 Wim Taymans <wim@fluendo.com>
26033 * ext/theora/Makefile.am:
26034 * ext/theora/theora.c: (plugin_init):
26035 * ext/theora/theoradec.c: (theora_dec_change_state):
26036 * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
26037 (gst_theora_enc_class_init), (gst_theora_enc_init),
26038 (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
26039 (theora_enc_chain), (theora_enc_change_state),
26040 (theora_enc_set_property), (theora_enc_get_property):
26041 Added a theora encoder, grouped the encoder and decoder into the
26044 2004-05-05 Thomas Vander Stichele <thomas at apestaart dot org>
26046 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26047 (gst_jpegenc_chain):
26048 fix DURATION on outgoing buffers
26049 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
26050 debug using time formats
26051 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
26052 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26053 (gst_xvimagesink_sink_link):
26054 windows with width/height 0 generate X errors, so don't allow them
26056 2004-05-05 Wim Taymans <wim@fluendo.com>
26058 * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
26059 (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
26060 (gst_mpeg2dec_negotiate_format):
26061 * ext/mpeg2dec/gstmpeg2dec.h:
26062 removed the static pad template so that we can add the
26063 more accurate framerate value to the caps.
26066 2004-05-04 Benjamin Otte <otte@gnome.org>
26069 check for kdemacros.h, too (should fix #141821)
26070 * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
26071 don't crash if no header was sent, but nicely error out (fixes part
26074 2004-05-04 Wim Taymans <wim@fluendo.com>
26076 * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
26077 parent dispose function to avoid segfault on destroy.
26079 2004-05-04 Thomas Vander Stichele <thomas at apestaart dot org>
26081 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
26083 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
26084 (gst_xvimagesink_sink_link):
26085 clean up debugging caps
26086 also recreate xvimage when format has changed
26088 2004-05-04 Benjamin Otte <otte@gnome.org>
26090 * ext/libvisual/Makefile.am:
26091 * ext/libvisual/visual.c: (gst_visual_class_init),
26092 (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
26093 (gst_visual_srclink), (gst_visual_chain),
26094 (gst_visual_change_state), (plugin_init):
26095 use a GstAdapter to correctly adapt buffer sizes - allows using a
26098 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26100 * sys/v4l/gstv4lelement.h:
26101 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
26102 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
26103 (gst_v4lsrc_buffer_free):
26104 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
26105 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
26106 (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
26107 (gst_v4lsrc_requeue_frame):
26108 move some debugging categories around
26109 query for fps index and set accordingly if found
26111 2004-05-03 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
26113 * ext/lame/gstlame.c:
26114 correct defaults that lame_init puts out of range
26116 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26118 * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
26119 (gst_divxenc_class_init):
26120 fix range since -1 is the default
26121 * gst/mpeg1sys/gstmpeg1systemencode.c:
26122 (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
26123 * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
26124 (gst_rtjpegdec_chain):
26125 * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
26126 (gst_rtjpegenc_chain):
26127 * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
26128 (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
26129 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
26130 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
26131 * sys/v4l/gstv4lsrc.c:
26132 * sys/v4l/v4l_calls.c: (gst_v4l_open):
26133 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
26134 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
26135 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
26136 * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
26137 remove gst_info calls
26139 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26148 Updated translations
26150 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26152 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26153 refactor/comment code
26155 2004-05-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
26157 * gst/asfdemux/Makefile.am:
26158 * gst/asfdemux/asfheaders.c:
26159 * gst/asfdemux/asfheaders.h:
26160 * gst/asfdemux/gstasf.c: (plugin_init):
26161 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
26162 (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
26163 (gst_asf_demux_setup_pad):
26164 * gst/asfdemux/gstasfdemux.h:
26165 * gst/asfdemux/gstasfmux.c:
26166 * gst/asfdemux/gstasfmux.h:
26167 Add tagging support to demuxer, split out registration in its own
26168 file instead of in demux (hacky), and prevent having some tables
26169 in our memory multiple times (in asfheaders.h).
26171 2004-05-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
26173 * gst/matroska/matroska-demux.c:
26174 (gst_matroska_demux_parse_metadata):
26175 * gst/matroska/matroska-ids.h:
26176 Basic tag reading support.
26178 2004-04-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
26180 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
26181 Really detect ac-3 audio.
26182 * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
26183 really detect matroska files (off-by-1).
26185 2004-04-30 David Schleef <ds@schleef.org>
26187 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26188 (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
26189 (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
26190 (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
26191 (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
26192 hackage -- parse a lot more atoms, extract a few tags. One might even
26193 mistake this for tag support. Maybe it is.
26194 * gst/qtdemux/qtdemux.h:
26196 2004-04-30 Colin Walters <walters@verbum.org>
26198 * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
26200 2004-04-30 Thomas Vander Stichele <thomas at apestaart dot org>
26202 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26203 (gst_ffmpegcolorspace_getcaps):
26204 remove broken nego fix
26206 2004-04-30 Benjamin Otte <otte@gnome.org>
26210 * ext/libvisual/Makefile.am:
26211 * ext/libvisual/visual.c:
26212 add initial support for libvisual (http://libvisual.sourceforge.net)
26213 libvisual is still quite alpha, so expect crashes in there :)
26215 2004-04-29 David Schleef <ds@schleef.org>
26217 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
26218 (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
26219 up qtdemux to make it spit out codec_data. Do _not_ look at this
26220 code; you will no longer respect me.
26222 2004-04-29 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
26224 * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
26225 * ext/alsa/gstalsa.h :
26226 change alsa pcm device discovery to find more than 1 device
26227 per card. code review by Ronald.
26229 2004-04-29 David Schleef <ds@schleef.org>
26231 * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
26232 Add a check for a driver bug on FreeBSD. (bug #140565)
26234 2004-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
26236 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
26237 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26238 (gst_jpegenc_getcaps):
26239 move format setting to inner loop
26240 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26241 (gst_ffmpegcolorspace_getcaps):
26242 use GST_PAD_CAPS if available so that we use already negotiated
26244 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26245 (qtdemux_parse_moov), (qtdemux_parse):
26247 * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
26248 * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
26249 move hardcoded path to DEFINE
26251 2004-04-28 David Schleef <ds@schleef.org>
26253 * gst/speed/gstspeed.c: (speed_parse_caps): Fix caps parsing.
26256 2004-04-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
26258 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
26259 Don't probe for playback device if we're a source element. Fixes
26262 2004-04-29 Benjamin Otte <otte@gnome.org>
26264 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
26265 (gst_id3_tag_chain):
26266 rewrite buffer offset
26268 2004-04-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
26272 * ext/dts/Makefile.am:
26273 * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
26274 (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
26275 (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
26276 (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
26277 (gst_dtsdec_loop), (gst_dtsdec_change_state),
26278 (gst_dtsdec_set_property), (gst_dtsdec_get_property),
26280 * ext/dts/gstdtsdec.h:
26282 * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
26283 (gst_faad_srcconnect):
26284 Add ESDS atom handling (.m4a).
26286 2004-04-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
26288 * ext/divx/gstdivxdec.c: (plugin_init):
26289 Remove comment that makes no sense.
26290 * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
26291 Fix for obvious typo that resulted in warnings during gst-register.
26292 * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
26293 (gst_xviddec_sink_link):
26294 Fix caps negotiation a bit better.
26295 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
26296 We call this 'codec_data', not 'esds'.
26298 2004-04-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
26300 * gst/monoscope/gstmonoscope.c:
26301 make sure we only provide 256x128
26302 * gst/monoscope/monoscope.c: (monoscope_init):
26303 assert size of 256x128
26305 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
26308 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
26309 (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
26310 fixate to max width and height of device
26312 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
26315 * sys/v4l/gstv4l.c:
26316 * sys/v4l/gstv4lsrc.c:
26317 * sys/v4l/v4l_calls.c:
26318 * sys/v4l/v4lsrc_calls.c:
26319 fix for qc-usb driver which fakes having more than one buffer
26320 by handing the same buffer twice, which confused GStreamer's/v4lsrc
26321 buffer_free override
26324 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
26327 * gst/videotestsrc/gstvideotestsrc.c:
26328 (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
26329 (gst_videotestsrc_init), (gst_videotestsrc_get),
26330 (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
26331 * gst/videotestsrc/gstvideotestsrc.h:
26332 add num-buffers property
26334 2004-04-26 Benjamin Otte <otte@gnome.org>
26336 * ext/mad/gstid3tag.c: (plugin_init):
26337 set id3mux rank to NONE so it doesn't confuse spider
26338 require audio/mpeg,mpegversion=1 in id3mux
26340 2004-04-26 Benjamin Otte <otte@gnome.org>
26343 detect faad correctly as non-working if it's indeed non-working
26345 2004-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
26348 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26349 (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
26350 fix _getcaps so it only negotiates to its supported format
26352 2004-04-25 Benjamin Otte <otte@gnome.org>
26354 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26357 2004-04-23 Benjamin Otte <otte@gnome.org>
26359 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
26360 audio/x-raw-int with height rules! not. Now it's depth.
26362 2004-04-22 Ronald Bultje <rbultje@ronald.bitfreak.net>
26364 * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
26365 (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
26366 (gst_wavparse_loop):
26367 Missing variable initialization. Add handling of DVI ADPCM. Fix
26368 mis-parsing of LIST chunks. This works around a bug where we mis-
26369 parse non-aligning LIST chunks (so LIST chunks where the contents
26370 don't align with the actual LIST size). The correct fix is to use
26371 rifflib, I'm not going to fix wavparse - too much work. All this
26374 2004-04-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
26376 reviewed by Benjamin Otte <otte@gnome.org>
26378 * ext/shout/gstshout.c: (gst_icecastsend_change_state):
26379 fix shoutcast not working (fixes #140844)
26381 2004-04-22 Benjamin Otte <otte@gnome.org>
26383 * ext/hermes/gsthermescolorspace.c:
26384 (gst_hermes_colorspace_caps_remove_format_info):
26385 * gst/colorspace/gstcolorspace.c:
26386 (gst_colorspace_caps_remove_format_info):
26387 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26388 (gst_ffmpegcolorspace_caps_remove_format_info):
26389 s/gst_caps_simplify/gst_caps_do_simplify/
26391 2004-04-22 Benjamin Otte <otte@gnome.org>
26393 * gst-libs/gst/riff/riff-media.c:
26394 (gst_riff_create_video_caps_with_data):
26395 mpegversion is an int
26396 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
26397 don't try to create pad templates with NULL caps, use any caps
26400 2004-04-20 David Schleef <ds@schleef.org>
26402 * ext/sdl/Makefile.am: Link against libgstinterfaces, not
26403 libgstxoverlay. jmmv@menta.net (Julio M. Merino Vidal)
26406 2004-04-20 Daniel Gazard <daniel.gazard@epita.fr>
26408 reviewed by David Schleef
26410 * ext/mad/gstid3tag.c: Add stdlib.h
26411 * gst/rtp/gstrtpgsmenc.c: same
26412 * gst/tags/gstid3tag.c: same
26413 * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
26414 * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
26415 GST_DISABLE_LOADSAVE use.
26416 * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
26417 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
26418 * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
26420 * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
26421 * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
26423 * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
26424 * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
26426 * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
26429 2004-04-20 David Schleef <ds@schleef.org>
26431 * gst/realmedia/rmdemux.c: This was supposed to part of the
26432 last checkin. Same idea.
26434 2004-04-20 Daniel Gazard <daniel.gazard@epita.fr>
26436 reviewed by David Schleef
26438 * configure.ac: bump required gstreamer version to 0.8.1.1
26439 because of following changes [--ds]
26441 * gst-libs/gst/riff/riff-read.c: Include gst/gstutils.h.
26442 (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
26443 (gst_riff_read_header): Use GST_READ_UINT*
26444 macros to access possibly unaligned memory.
26446 * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
26447 (mp3_type_find): Use GST_READ_UINT*
26448 macros to access possibly unaligned memory.
26449 (mp3_type_find, mpeg1_parse_header, qt_type_find)
26450 (speex_type_find): Likewise
26452 * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
26454 * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
26455 (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
26456 (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
26457 (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
26458 (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
26459 (qtdemux_tree_get_sibling_by_type): Use GST_READ_UINT*
26460 macros to access possibly unaligned memory.
26462 * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
26465 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
26466 (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
26468 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
26471 * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
26472 (gst_mpeg2subt_chain_subtitle): Likewise.
26474 * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
26475 (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
26478 * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
26481 * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
26484 * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
26487 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
26490 update required version of GStreamer because of GST_TIME_FORMAT
26492 2004-04-20 Benjamin Otte <in7y118@public.uni-hamburg.de>
26494 * ext/mad/gstid3tag.c: (gst_id3_tag_init):
26495 remove leftover g_print
26496 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
26497 don't try setting only a subset of the caps. We don't want to kill
26498 autoplugging on purpose
26500 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
26502 * sys/ximage/ximagesink.c: (plugin_init):
26503 * sys/xvimage/xvimagesink.c: (plugin_init):
26504 add debugging categories
26506 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
26510 Adding en_GB translation (Gareth Owen)
26512 2004-04-20 David Schleef <ds@schleef.org>
26514 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
26515 (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
26516 (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
26517 (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
26518 A number of new features and hacks to extract the esds atom and
26519 put it into the caps. (bug #137724)
26521 2004-04-19 David Schleef <ds@schleef.org>
26523 * gconf/Makefile.am: Fix for non-GNU make
26524 * gst-libs/gst/Makefile.am: Change directory order to handle
26525 GstPlay linking with gstinterfaces
26526 * gst-libs/gst/audio/make_filter: make use of tr portable
26527 * gst-libs/gst/play/Makefile.am: Add intended \
26528 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
26529 (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
26530 function prototype instead of void *.
26531 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
26533 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26534 (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
26535 * gst/videofilter/make_filter: make use of tr portable
26536 * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
26538 2004-04-19 Thomas Vander Stichele <thomas at apestaart dot org>
26542 Added Ukrainian translation (Maxim V. Dziumanenko)
26544 2004-04-18 Ronald Bultje <rbultje@ronald.bitfreak.net>
26546 * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
26547 (gst_gsmdec_link), (gst_gsmdec_chain):
26548 Fix capsnego, simplify chain function slightly.
26549 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
26552 2004-04-18 Ronald Bultje <rbultje@ronald.bitfreak.net>
26554 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
26555 (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
26556 (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
26557 Hack to make wavparse work with spider (always -> sometimes pad).
26558 Fixes #135862 && #140411.
26560 2004-04-18 Benjamin Otte <otte@gnome.org>
26562 * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
26563 (gst_osselement_rate_probe_check),
26564 (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
26565 get rid of \n in debug output
26567 2004-04-17 Iain <iain@prettypeople.org>
26569 * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
26572 2004-04-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
26574 * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
26575 (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
26576 (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
26577 (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
26578 (gst_id3_tag_src_link), (gst_id3_tag_chain),
26579 (gst_id3_tag_change_state), (plugin_init):
26580 deprecate id3tag element and replace with id3demux/id3mux.
26581 great side effect: this ugly file is now even uglier, yay!
26582 * ext/mad/gstmad.h:
26583 remove non-available function
26584 update for new get_type
26586 2004-04-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
26589 require mpeg2dec >= 0.4.0
26591 2004-04-17 Benjamin Otte <otte@gnome.org>
26593 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26594 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
26595 (gst_xvimagesink_set_xwindow_id):
26596 call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
26597 assorted cleanup fixes.
26599 2004-04-16 David Schleef <ds@schleef.org>
26601 * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
26602 * sys/xvimage/xvimagesink.h: same
26604 2004-04-16 Thomas Vander Stichele <thomas at apestaart dot org>
26606 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26607 Fix GST_ELEMENT_ERROR with (NULL)
26609 2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
26611 * gst-libs/gst/riff/riff-media.c:
26612 (gst_riff_create_video_caps_with_data):
26613 Add div[3456] as fourccs for DivX 3 (fixes #140137).
26615 2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
26617 * gst-libs/gst/riff/riff-media.c:
26618 (gst_riff_create_video_caps_with_data),
26619 (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
26620 (gst_riff_create_video_template_caps),
26621 (gst_riff_create_audio_template_caps):
26622 * gst-libs/gst/riff/riff-media.h:
26623 * gst-libs/gst/riff/riff-read.c:
26624 (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
26625 * gst-libs/gst/riff/riff-read.h:
26626 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
26627 Add MS RLE support. I added some functions to read out strf chunks
26628 into strf chunks and the data behind it. This is usually color
26629 palettes (as in RLE, but also in 8-bit RGB). Also use those during
26630 caps creation. Lastly, add ADPCM (similar to wavparse - which
26631 should eventually be rifflib based).
26632 * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
26633 (gst_matroska_demux_init), (gst_matroska_demux_reset):
26634 * gst/matroska/matroska-demux.h:
26635 Remove placeholders for some prehistoric tagging system. Didn't add
26636 support for any tag system really anyway.
26637 * gst/qtdemux/qtdemux.c:
26638 Add support for audio/x-m4a (MPEG-4) through spider.
26639 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
26640 (gst_wavparse_loop):
26641 ADPCM support (#135862). Increase max. buffer size because we
26642 cannot split buffers for ADPCM (screws references) and I've seen
26643 files with 2048 byte chunks. 4096 seems safe for now.
26645 2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org>
26647 * configure.ac: bump nano to 1
26649 === release 0.8.1 ===
26651 2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org>
26653 * configure.ac: releasing 0.8.1, "Comforting Sounds"
26655 2004-04-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
26657 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26658 Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
26661 2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
26663 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
26664 lower rank of dvddemux so that it's not used for mpeg playback.
26666 2004-04-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
26669 save libs correctly when checking mad
26671 2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
26673 * ext/mad/gstid3tag.c: (plugin_init):
26674 lower rank of id3tag as proposed by Benjamin. Fixes #139926.
26676 2004-04-13 David Schleef <ds@schleef.org>
26678 * common/m4/gst-feature.m4: Call -config scripts with
26679 --plugin-libs if it is supported.
26680 * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
26681 JPEG images are image/jpeg.
26682 * gst/debug/Makefile.am:
26683 * gst/debug/negotiation.c: (gst_negotiation_class_init),
26684 (gst_negotiation_getcaps), (gst_negotiation_pad_link),
26685 (gst_negotiation_update_caps), (gst_negotiation_get_property),
26686 (gst_negotiation_plugin_init): Add a property that acts like
26688 * testsuite/gst-lint: Move license checking to be a standard
26691 2004-04-13 David Schleef <ds@schleef.org>
26693 * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
26694 patch from Sebastien Cote (bug #139958)
26696 2004-04-13 Thomas Vander Stichele <thomas at apestaart dot org>
26698 * examples/gstplay/Makefile.am:
26699 * examples/gstplay/player.c: (main):
26700 make the commandline player example use gconf settings
26702 2004-04-13 Thomas Vander Stichele <thomas at apestaart dot org>
26704 * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
26705 (gst_cacasink_sinkconnect), (gst_cacasink_init),
26706 (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
26707 init/end library during state transition, not object
26708 creation/disposal. get rid of custom dispose handler.
26711 2004-04-12 Christian Schaller <Uraeus@gnome.org>
26713 * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
26716 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26718 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
26719 Handle JUNK chunks inside data section. Prevents warnings.
26721 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26723 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
26724 (gst_riff_create_video_template_caps):
26726 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
26727 (gst_avi_demux_stream_data):
26728 Add support for "rec-list" chunks.
26730 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26732 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
26733 Fix another codecname mismatch.
26735 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26737 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26738 Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
26739 so that MJPEG plays back.
26741 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26743 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
26744 (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
26745 * gst/mpeg1videoparse/gstmp1videoparse.h:
26746 Fix for some slight mis-cuts in buffer parsing, and for some
26747 potential overflows or faults-causers. Adds disconts. Also fixes
26748 #139105 while we're at it.
26750 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26753 * sys/v4l2/gstv4l2element.h:
26754 Workaround for missing struct v4l2_buffer declaration in Suse 9
26755 and Mandrake 10 linux/videodev2.h header file (#135919).
26757 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26759 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26760 Bail out if no filename was given.
26762 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26764 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
26765 (gst_v4l2_fourcc_from_structure):
26766 Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
26769 2004-04-09 Benjamin Otte <otte@gnome.org>
26771 * ext/gnomevfs/gstgnomevfssink.c:
26772 (_gst_boolean_allow_overwrite_accumulator),
26773 (gst_gnomevfssink_class_init):
26774 fix erase signal - if any handler returns false the file will not be
26775 overwritten. If no handler is connected, the file will not be
26776 overwritten either.
26777 renamed signal to "allow-overwrite"
26778 * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
26779 free string when adding it to ID3 failed
26780 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
26781 unref event when done
26782 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26784 * gst/typefind/gsttypefindfunctions.c:
26785 (mpeg_video_stream_type_find):
26788 2004-04-08 David Schleef <ds@schleef.org>
26790 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26791 (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
26793 2004-04-08 David Schleef <ds@schleef.org>
26795 * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
26796 we don't support (bug #139532)
26798 2004-04-07 Thomas Vander Stichele <thomas at apestaart dot org>
26800 * ext/mad/gstmad.c: (gst_mad_handle_event),
26801 (gst_mad_check_caps_reset), (gst_mad_chain),
26802 (gst_mad_change_state):
26803 only set explicit caps if they haven't been set before for
26804 this stream. MPEG-audio sample rate/channels aren't allowed
26805 to change in-stream.
26808 2004-04-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
26810 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
26811 (_gst_boolean_did_something_accumulator),
26812 (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
26813 (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
26814 (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
26815 (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
26816 (gst_gnomevfssink_change_state):
26817 Fix erase signal. Don't erase by default. Remove handoff signal.
26818 Remove erase property. Don't segfault. General cleanup.
26820 2004-04-07 Benjamin Otte <otte@gnome.org>
26822 * gst-libs/gst/gconf/test-gconf.c: (main):
26823 add missing gst_init
26825 2004-04-07 Benjamin Otte <otte@gnome.org>
26827 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26828 free the mutexes, too
26830 2004-04-07 Benjamin Otte <otte@gnome.org>
26832 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26833 actually free the URI string
26834 * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
26835 compute offset correctly when passing discont events
26836 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26837 don't leak discont events
26838 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
26839 add some missing breaks so caps aren't copied randomly
26840 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
26841 if we realloc memory, we better use it
26843 2004-04-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
26845 * ext/mad/gstmad.c: (normal_seek):
26846 fix GST_FORMAT_TIME usage
26848 2004-04-05 David Schleef <ds@schleef.org>
26850 * ext/kio/kiosrc.cpp: Undefine KDE_DEPRECATED so we can use
26851 a deprecated function (hack!)
26853 2004-04-05 Benjamin Otte <otte@gnome.org>
26855 * ext/esd/esdmon.c: (gst_esdmon_get):
26856 fix nonterminated vararg and memleak
26858 2004-04-05 Benjamin Otte <otte@gnome.org>
26860 * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
26861 (gst_ladspa_init), (gst_ladspa_force_src_caps),
26862 (gst_ladspa_set_property), (gst_ladspa_get_property),
26863 (gst_ladspa_instantiate), (gst_ladspa_activate),
26864 (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
26867 2004-04-05 Stefan Kost <kost@imn.htwk-leipzig.de>
26869 reviewed by Benjamin Otte <otte@gnome.org>
26871 * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
26872 check for broken LADSPA parameters (fixes #138635)
26874 2004-04-05 Benjamin Otte <otte@gnome.org>
26876 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
26877 advertise buffer-frames correctly on sinkpads
26879 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
26881 * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
26882 (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
26883 (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
26884 (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
26885 (gst_mad_check_caps_reset), (gst_mad_chain):
26886 add more debugging, only reset caps when we're not in error state
26888 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
26890 * ext/mad/gstmad.c: add debugging category, comment + cleanups
26892 2004-04-05 Julio M. Merino Vidal <jmmv@menta.net>
26894 reviewed by Benjamin Otte <otte@gnome.org>
26897 fix == in test(1) operator
26899 2004-04-05 Julio M. Merino Vidal <jmmv@menta.net>
26901 reviewed by Benjamin Otte <otte@gnome.org>
26904 fix --export-symblos-regex to a working regex.
26906 2004-04-04 Benjamin Otte <otte@gnome.org>
26908 * sys/oss/.cvsignore:
26911 2004-04-03 Tim-Phillip Müller <t.i.m@zen.co.uk>
26913 reviewed by Benjamin Otte <otte@gnome.org>
26915 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26916 add missing 'new_media' argument (fixes #138168)
26917 * gst/matroska/matroska-demux.c:
26918 (gst_matroska_demux_handle_seek_event):
26919 add vararg terminator (fixes #138169)
26921 2004-04-02 David Schleef <ds@schleef.org>
26923 * ext/gdk_pixbuf/Makefile.am: Make sure gstgdkanimation.h is
26924 disted (bug #138914)
26926 2004-04-01 Benjamin Otte <otte@gnome.org>
26928 * ext/alsa/gstalsa.c: (gst_alsa_change_state),
26929 (gst_alsa_close_audio):
26930 handle case better where a soundcard can't pause
26931 * ext/ogg/gstoggdemux.c:
26932 don't crash when we get events but don't have pads yet
26934 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
26936 * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
26937 throw an error if we couldn't probe any caps.
26939 2004-04-01 Jan Schmidt <thaytan@mad.scientist.com>
26941 * ext/dvdnav/gst-dvd:
26942 Add a really simple sample DVD player
26944 2004-04-01 Jan Schmidt <thaytan@mad.scientist.com>
26946 * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
26947 (gst_a52dec_push), (gst_a52dec_handle_event),
26948 (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
26949 (gst_a52dec_change_state):
26950 * ext/a52dec/gsta52dec.h:
26951 Use a debug category, Output timestamps correctly
26952 Emit tag info, Handle events, tell liba52dec about cpu
26953 capabilities so it can use MMX etc.
26954 * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
26955 Fix a crasher accessing invalid memory
26956 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
26957 (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
26958 (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
26959 (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
26961 Some support for byte-format seeking.
26962 Small fixes for still frames and menu button overlays
26963 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
26964 (gst_mpeg2dec_alloc_buffer):
26965 Use a debug category. Adjust the report level of several items to
26966 LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
26967 so it doesn't lose the GstBuffer pointer
26968 * gst/debug/Makefile.am:
26969 * gst/debug/gstdebug.c: (plugin_init):
26970 * gst/debug/gstnavseek.c: (gst_navseek_get_type),
26971 (gst_navseek_base_init), (gst_navseek_class_init),
26972 (gst_navseek_init), (gst_navseek_seek),
26973 (gst_navseek_handle_src_event), (gst_navseek_set_property),
26974 (gst_navseek_get_property), (gst_navseek_chain),
26975 (gst_navseek_plugin_init):
26976 * gst/debug/gstnavseek.h:
26977 Add the navseek debug element for seeking back and forth in a
26978 video stream using arrow keys.
26979 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
26980 (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
26981 (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
26982 (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
26983 (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
26984 (gst_mpeg2subt_parse_header), (gst_get_nibble),
26985 (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
26986 (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
26987 (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
26988 (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
26989 * gst/mpeg2sub/gstmpeg2subt.h:
26990 Pretty much a complete rewrite. Now a loopbased element. May still
26991 require work to properly synchronise subtitle buffers.
26992 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
26993 (gst_dvd_demux_send_subbuffer):
26994 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
26995 Don't attempt to create subbuffers of size 0
26996 Reduce a couple of error outputs to warnings.
26997 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
26998 (gst_y4mencode_chain):
26999 Output the y4m frame header correctly.
27001 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
27003 * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
27004 throw errors instead of allowing SIGFPE
27006 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
27008 * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
27009 (gst_gconf_render_bin_from_key):
27010 leak plugging and style fixing
27012 2004-03-31 David Schleef <ds@schleef.org>
27014 * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
27015 (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
27017 * gst/debug/Makefile.am:
27018 * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
27019 * gst/debug/gstdebug.c: (plugin_init): Merge elements into one
27021 * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
27022 (gst_negotiation_base_init), (gst_negotiation_class_init),
27023 (gst_negotiation_init), (gst_negotiation_getcaps),
27024 (gst_negotiation_pad_link), (gst_negotiation_chain),
27025 (gst_negotiation_set_property), (gst_negotiation_get_property),
27026 (gst_negotiation_plugin_init): New element to talk about random
27027 negotiation things happening in a pipeline.
27029 2004-03-31 Thomas Vander Stichele <thomas at apestaart dot org>
27031 * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
27032 fix integer addition with help of Stefan Kost
27034 2004-03-31 Thomas Vander Stichele <thomas at apestaart dot org>
27036 * po/nl.po: updated Dutch translation (Elros Cyriatan)
27038 2004-03-30 David Schleef <ds@schleef.org>
27040 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
27041 (gst_mpeg2dec_negotiate_format): Handle Y42B-format MPEG
27042 video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
27044 * ext/mpeg2dec/gstmpeg2dec.h:
27046 2004-03-30 David Schleef <ds@schleef.org>
27048 * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
27050 2004-03-30 David Schleef <ds@schleef.org>
27052 * tools/gst-launch-ext-m.m: Applied patch from gnome@flyn.org (W.
27053 Michael Petullo) to handle .mov
27055 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27057 * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
27058 (gst_osselement_rate_check_rate):
27059 probe caps correctly for sound cards that only support one format
27061 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27063 * ext/kio/kiosrc.cpp: (process_events):
27064 update handling event processing if inside KDE - untested
27066 2004-03-29 David Schleef <ds@schleef.org>
27068 * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
27069 by 2 to not interfere with other colorspaces.
27070 * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
27071 * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
27072 one to not interfere with ffmpeg_colorspace.
27074 2004-03-29 David Schleef <ds@schleef.org>
27076 * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
27077 aren't in the caps.
27078 * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
27079 * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
27081 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27083 * gst-libs/gst/riff/riff-media.c:
27084 fail on error, don't try to set stuff on NULL caps
27086 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27090 * ext/kio/Makefile.am:
27091 * ext/kio/kioreceiver.cpp:
27092 * ext/kio/kioreceiver.h:
27093 * ext/kio/kiosrc.cpp:
27094 * ext/kio/kiosrc.h:
27095 add experimental kiosrc plugin
27096 * ext/alsa/gstalsaplugin.c: (plugin_init):
27097 initialize debugging category only when we're sure registering the
27100 2004-03-29 Thomas Vander Stichele <thomas at apestaart dot org>
27102 * examples/gstplay/player.c: (main):
27103 * gst-libs/gst/play/play.c: (gst_play_class_init),
27104 (gst_play_set_location), (gst_play_set_data_src),
27105 (gst_play_set_video_sink), (gst_play_set_audio_sink),
27106 (gst_play_set_visualization), (gst_play_connect_visualization):
27107 check return values of element_set_state and return FALSE where
27110 2004-03-29 Benjamin Otte <otte@gnome.org>
27112 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
27113 try harder to check if an event is really a discont
27115 2004-03-29 Thomas Vander Stichele <thomas at apestaart dot org>
27117 * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
27120 2004-03-28 Benjamin Otte <otte@gnome.org>
27122 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
27123 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
27124 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
27125 get rid of non-standard "..." ranges in case statements.
27127 2004-03-27 Martin Soto <martinsoto@users.sourceforge.net>
27129 * gst/mpegstream/gstmpegdemux.c:
27130 * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
27131 specific functionality split to the new dvddemux element.
27132 * gst/mpegstream/gstdvddemux.c:
27133 * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
27134 streams, derived from mpegdemux.
27135 * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
27136 up. SCR based timestamp rewriting can be turned off (will probably
27137 completely disappear soon).
27138 * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
27139 hacking. General cleanup. All printf statements replaced by
27140 debugging messages. Almost complete libdvdnav support.
27141 (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
27142 by events. New properties for audio and subpicture languages.
27143 (dvdnavsrc_update_highlight): Now uses events.
27144 (dvdnavsrc_user_op): Cleaned up.
27145 (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
27146 based). Lots of cleanup, and propper support for most libdvdnav
27148 (dvdnavsrc_make_dvd_event): New function.
27149 (dvdnavsrc_make_dvd_nav_packet_event): New function.
27150 (dvdnavsrc_make_clut_change_event): New function.
27152 2004-03-26 Benjamin Otte <otte@gnome.org>
27154 * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
27155 fix bug where typefinding would claim it's theora whenever less then
27156 7 bytes of data were available
27158 2004-03-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
27160 * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
27161 (gst_alawdec_base_init), (gst_alawdec_class_init),
27162 (gst_alawdec_init), (gst_alawdec_chain):
27163 * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
27164 (gst_alawenc_base_init), (gst_alawenc_class_init),
27165 (gst_alawenc_init), (gst_alawenc_chain):
27166 * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
27167 (gst_mulawdec_base_init), (gst_mulawdec_class_init),
27168 (gst_mulawdec_init), (gst_mulawdec_chain):
27169 * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
27170 (gst_mulawenc_base_init), (gst_mulawenc_class_init),
27171 (gst_mulawenc_init), (gst_mulawenc_chain):
27172 Fix capsnego in all four, remove the unused property functions and
27173 simplify the chain functions slightly. I guess we could use macros
27174 or something similar for those, since the code is so similar, but
27175 I'm currently too lazy...
27177 2004-03-24 David Schleef <ds@schleef.org>
27179 * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
27180 (gst_osselement_close_audio), (gst_osselement_probe_caps),
27181 (gst_osselement_get_format_structure),
27182 (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
27183 (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
27184 (gst_osselement_rate_int_compare): Add code to handle rate probing
27186 * sys/oss/gstosselement.h: same
27187 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
27188 Use rate probing provided by osselement.
27189 * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
27191 2004-03-24 Ronald Bultje <rbultje@ronald.bitfreak.net>
27193 * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
27194 (gst_xvidenc_get_property):
27197 2004-03-24 David Schleef <ds@schleef.org>
27199 * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
27200 (gst_speexdec_init):
27201 * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
27202 (gst_speexenc_init): Create the pad template correctly (from
27203 the static pad template, not a NULL pointer.)
27205 2004-03-25 Benjamin Otte <otte@gnome.org>
27207 * gst/debug/Makefile.am:
27208 * gst/debug/breakmydata.c:
27209 add element that quasi-randomly changes bytes in the stream.
27210 Intended use is robustness checking of demuxers and decoders in
27213 2004-03-24 Benjamin Otte <otte@gnome.org>
27215 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
27216 (gst_alsa_probe_hw_params):
27217 * ext/alsa/gstalsa.h:
27218 debugging output fixes
27220 2004-03-24 Benjamin Otte <otte@gnome.org>
27222 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
27223 don't g_return_if_fail if element is PLAYING, fail silently as every
27225 * gst/effectv/gstquark.c: (gst_quarktv_chain):
27226 only fix needed for cast lvalue issues in gst-plugins
27227 * gst/volenv/gstvolenv.c: (gst_volenv_init):
27230 2004-03-24 Benjamin Otte <otte@gnome.org>
27232 * gst/level/gstlevel.c: (gst_level_init):
27233 add proxying getcaps function, so level doesn't advertise impossible
27236 2004-03-24 David Schleef <ds@schleef.org>
27238 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
27239 (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
27240 (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
27241 (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
27242 (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
27243 (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
27244 (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
27245 (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
27246 (qtdemux_parse_tree), (qtdemux_parse_trak): Fix debugging
27247 messages. Divide the chunk size by the compression ratio
27248 (needed for MACE audio)
27250 2004-03-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
27252 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
27253 Fix buffer overflow read error.
27255 2004-03-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
27257 * ext/alsa/gstalsa.h:
27258 Remove unused entry.
27259 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
27261 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
27262 (gst_videodrop_link), (gst_videodrop_chain):
27263 Fix, sort of. Was horribly broken with new capsnego. Bah...
27265 2004-03-23 Jeremy Simon <jesimon@libertysurf.fr>
27267 * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
27269 Add a monkeysaudio typefind function
27271 2004-03-23 Johan Dahlin <johan@gnome.org>
27273 * gst-libs/gst/play/play.c (gst_play_audio_fixate)
27274 (gst_play_video_fixate): Check so the structure has the field
27275 before trying to fixate them, this makes it possible to have
27276 fakesinks for video and audio output without printing errors on
27277 the output console.
27279 2004-03-22 David Schleef <ds@schleef.org>
27281 * sys/oss/Makefile.am:
27282 * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
27283 (check_rate), (add_rate): Rate probing test app.
27285 2004-03-21 Benjamin Otte <otte@gnome.org>
27287 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
27288 (_fixate_caps_to_int), (gst_audio_convert_fixate):
27289 add a fixation function that pretty much does the right thing (fixes
27292 2004-03-20 David I. Lehn <dlehn@users.sourceforge.net>
27294 * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
27296 2004-03-20 Tim-Phillip Müller <t.i.m@zen.co.uk>
27298 reviewed by: Benjamin Otte <otte@gnome.org>
27300 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
27301 terminate gst_event_new_discontinuous correctly (fixes parts of
27304 2004-03-19 David Schleef <ds@schleef.org>
27306 * gst-libs/gst/Makefile.am: Enable xoverlay unconditionally,
27307 since it doesn't depend on X, and it's part of our ABI.
27309 2004-03-19 Iain <iain@prettypeople.org>
27311 * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
27312 is_int in the structure, not the local variable.
27314 2004-03-19 David Schleef <ds@schleef.org>
27316 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
27317 (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
27318 (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
27319 Improvements in caps negotiation.
27321 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
27325 adding Afrikaans (Petri Jooste)
27327 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
27329 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27330 (gst_ffmpegcolorspace_chain):
27331 throw error instead of g_critical (#137588)
27333 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
27337 dist common and m4 correctly
27340 2004-03-17 David Schleef <ds@schleef.org>
27342 * pkgconfig/gstreamer-media-info.pc.in: Add Version.
27345 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
27349 adding Swedish translation (Christian Rose)
27351 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
27353 * Makefile.am: use release.mak
27355 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27357 * common/ChangeLog:
27358 * common/gst-autogen.sh:
27359 add some explanation about the version detection
27363 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27365 * configure.ac: bump nano to 1
27367 === release 0.8.0 ===
27369 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27371 * configure.ac: release 0.8.0, "Pharmaceutical Itch"
27373 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27376 update libtool version
27377 * gst-libs/gst/media-info/Makefile.am:
27378 actually use libtool version
27380 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27382 * configure.ac: fix speex detection to work with 1.0 but not 1.1
27384 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27387 * gst-plugins.spec.in:
27388 * pkgconfig/Makefile.am:
27389 * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
27390 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
27391 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
27392 * pkgconfig/gstreamer-libs.pc.in:
27393 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
27394 * pkgconfig/gstreamer-play-uninstalled.pc.in:
27395 * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
27396 * pkgconfig/gstreamer-plugins.pc.in:
27397 remove @VERSION@ from some of the pc files since core and plugins
27399 created gstreamer-plugins.pc as it's a better name, but keeping
27400 -libs around for now to get fixes upstream done first.
27402 2004-03-15 Julien MOUTTE <julien@moutte.net>
27404 * gst-libs/gst/play/play.c: (gst_play_get_framerate),
27405 (gst_play_get_sink_element): First draft of gst_play_get_framerate.
27406 * gst-libs/gst/play/play.h:
27408 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27410 * *.c, *.cc: don't mix tabs and spaces
27412 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27414 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
27415 use the new ffmpegcolorspace
27416 * gst-plugins.spec.in:
27417 package new colorspace and media-info
27419 * pkgconfig/Makefile.am:
27420 fix some more disting issues
27421 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
27422 * pkgconfig/gstreamer-media-info.pc.in:
27423 generate media-info pc files
27425 2004-03-15 Johan Dahlin <johan@gnome.org>
27427 * *.h: Revert indenting
27429 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27432 adding ffmpegcolorspace element
27433 * gst/ffmpegcolorspace/Makefile.am:
27434 * gst/ffmpegcolorspace/avcodec.h:
27435 * gst/ffmpegcolorspace/common.h:
27436 * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
27437 * gst/ffmpegcolorspace/dsputil.h:
27438 * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
27439 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27440 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
27441 (gst_ffmpeg_caps_to_pix_fmt):
27442 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
27443 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27444 (gst_ffmpegcolorspace_caps_remove_format_info),
27445 (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
27446 (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
27447 (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
27448 (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
27449 (gst_ffmpegcolorspace_set_property),
27450 (gst_ffmpegcolorspace_get_property),
27451 (gst_ffmpegcolorspace_register):
27452 * gst/ffmpegcolorspace/imgconvert.c:
27453 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
27454 (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
27455 (avpicture_get_size), (avcodec_get_pix_fmt_loss),
27456 (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
27457 (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
27458 (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
27459 (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
27460 (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
27461 (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
27462 (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
27463 (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
27464 (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
27465 (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
27466 (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
27467 (img_get_alpha_info), (deinterlace_line),
27468 (deinterlace_line_inplace), (deinterlace_bottom_field),
27469 (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
27470 * gst/ffmpegcolorspace/imgconvert_template.h:
27471 * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
27472 * gst/ffmpegcolorspace/mmx.h:
27473 * gst/ffmpegcolorspace/utils.c: (avcodec_init):
27474 adding ffmpegcolorspace element supplied by Ronald after cleaning
27475 up and pulling in the right bits of upstream source.
27476 I'm sure a better C/compiler wizard could do some cleaning up (for
27477 example use GLIB's malloc stuff), but as a first pass this
27480 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27482 * ext/alsa/gstalsa.h:
27483 I assume Ronald forgot to commit the change to have cardname
27484 as a struct member. Expect some public spanking at the next
27487 2004-03-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
27489 * ext/alsa/gstalsa.c: (gst_alsa_get_property),
27490 (gst_alsa_open_audio), (gst_alsa_close_audio):
27491 * ext/alsa/gstalsa.c:
27492 Don't open the device if we're a mixer (= padless).
27493 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
27494 (gst_alsa_mixer_init), (gst_alsa_mixer_open),
27495 (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
27496 Open mixer during state change rather than during object
27497 initialization. Also, get a device name. Currently in a somewhat
27498 hackish fashion, but I didn't really find something better.
27500 2004-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
27502 * *.c, *.h: run gst-indent
27504 2004-03-14 Benjamin Otte <otte@gnome.org>
27506 * gst/modplug/gstmodplug.cc:
27507 * gst/modplug/gstmodplug.h:
27508 set correct timestamps on outgoing buffers
27510 2004-03-14 Benjamin Otte <otte@gnome.org>
27512 * gst/modplug/gstmodplug.cc:
27513 handle events - don't do crap when a discont arrives that's not
27515 This allows correct loading and playback of mods in Rhythmbox
27517 2004-03-14 Benjamin Otte <otte@gnome.org>
27520 * gst-libs/gst/gconf/Makefile.am:
27521 * pkgconfig/Makefile.am:
27522 move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
27523 they get rebuilt properly
27525 when checking for vorbis, try pkgconfig first.
27526 * gst/modplug/gstmodplug.cc:
27527 add fixate function
27529 2004-03-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
27531 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
27532 Fix for obvious mistake, where we first shift the offset and then
27533 read a samplesize element assuming the old offset. Note that this
27534 part still has something weird, i.e. my movies containing those
27535 don't actually play well, but at least there's something that looks
27538 2004-03-14 Jan Schmidt <thaytan@mad.scientist.com>
27539 * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
27541 Add a typefind function for speex format
27543 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
27545 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
27546 (gst_asf_demux_setup_pad):
27547 Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
27548 instead of 0. Reason is simple: some elements have a fps range
27549 of 1-max instead of 0-max. So now ASF video actually works.
27551 2004-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
27555 adding serbian as a language
27557 2004-03-13 Benjamin Otte <otte@gnome.org>
27559 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
27560 return taglist correctly from _get function, don't gst_pad_push it.
27563 2004-03-13 Jan Schmidt <thaytan@mad.scientist.com>
27564 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
27566 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
27568 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
27569 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
27570 (gst_alsa_mixer_track_new):
27571 * ext/alsa/gstalsamixertrack.h:
27572 Fix ancient leftovers... MixerTrack is a GObject.
27574 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
27576 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
27577 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
27578 Don't block during probing...
27580 2004-03-12 Ronald Bultje <rbultje@ronald.bitfreak.net>
27582 * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
27583 (gst_alsa_get_property), (gst_alsa_probe_get_properties),
27584 (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
27585 (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
27586 (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
27587 (gst_alsa_open_audio), (gst_alsa_close_audio):
27588 * ext/alsa/gstalsa.h:
27589 Add propertyprobe interface implementation, add some device-name
27590 property, all this so that it looks good in gnome-volume-control.
27592 2004-03-12 David Schleef <ds@schleef.org>
27594 * configure.ac: the Hermes library controls hermescolorspace, not
27596 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27597 (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
27599 * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
27600 * ext/sdl/sdlvideosink.h: ditto.
27601 * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
27603 2004-03-12 Benjamin Otte <otte@gnome.org>
27605 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
27606 (gst_x_overlay_got_xwindow_id):
27607 * gst-libs/gst/xoverlay/xoverlay.h:
27608 replace XID with unsigned long to get rid of the xlibs dependency in
27609 XOverlay (fixes #137004)
27611 2004-03-13 Jan Schmidt <thaytan@mad.scientist.com>
27612 * gst/effectv/gstaging.c: (gst_agingtv_base_init),
27613 (gst_agingtv_setup):
27614 * gst/effectv/gstdice.c: (gst_dicetv_get_type),
27615 (gst_dicetv_base_init), (gst_dicetv_class_init),
27616 (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
27617 * gst/effectv/gstedge.c: (gst_edgetv_get_type),
27618 (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
27619 (gst_edgetv_setup), (gst_edgetv_rgb32):
27620 * gst/effectv/gsteffectv.c:
27621 * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
27622 (gst_quarktv_set_property):
27623 * gst/effectv/gstrev.c: (gst_revtv_get_type),
27624 (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
27625 (gst_revtv_setup), (gst_revtv_rgb32):
27626 * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
27627 (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
27628 (gst_shagadelictv_init), (gst_shagadelictv_setup),
27629 (gst_shagadelictv_rgb32):
27630 * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
27631 (gst_vertigotv_base_init), (gst_vertigotv_class_init),
27632 (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
27633 * gst/effectv/gstwarp.c:
27634 Port everything that can be ported to videofilter and fix up the caps.
27635 Can someone with a big-endian machine please check these?
27637 2004-03-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
27639 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
27640 (gst_osssink_chain), (gst_osssink_change_state):
27641 Latest fixes for A/V sync, audio playback and such. This is about
27642 all... MPEG playback issues are mostly related to the async build-
27643 up of MPEG files, I cannot fix that. Use basicgthread to solve it.
27645 2004-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
27647 patch from: Stephane Loeuillet
27650 use pkg-config for some libraries, falling back to the old .m4 way
27655 2004-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
27658 * tools/Makefile.am:
27659 * tools/Makefile.in:
27660 * tools/gst-launch-ext-m.m:
27661 * tools/gst-launch-ext.1.in:
27662 * tools/gst-visualise-m.m:
27663 * tools/gst-visualise.1:
27664 * tools/gst-visualise.1.in:
27665 reorganizing generation of script tools
27667 2004-03-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
27669 * ext/divx/gstdivxdec.c:
27670 Downgrade priority. We prefer ffdec_mpeg4.
27671 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
27672 (gst_faad_chain), (gst_faad_change_state):
27673 Fix capsnego. Doesn't work for some sounds because we don't have
27674 a 5:1 to stereo element.
27675 * ext/xvid/gstxvid.c: (plugin_init):
27677 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
27678 (gst_osssink_change_state):
27679 Add discont handling.
27681 2004-03-09 Colin Walters <walters@verbum.org>
27683 * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
27686 2004-03-09 Benjamin Otte <otte@gnome.org>
27688 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
27689 the signals take 2 arguments
27691 2004-03-09 David Schleef <ds@schleef.org>
27693 * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
27694 (gst_alsa_fixate): Add fixate function. (bug #136686)
27695 * ext/alsa/gstalsa.h:
27696 * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
27698 2004-03-09 Benjamin Otte <otte@gnome.org>
27700 * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
27701 (gst_mikmod_change_state):
27702 * ext/mikmod/gstmikmod.h:
27703 make mikmod's loop function not loop infinitely and call
27704 gst_element_yield anymore
27705 * gst/modplug/gstmodplug.cc:
27706 fix pad negotiation (fixes #136590)
27708 2004-03-09 David Schleef <ds@schleef.org>
27710 * ext/lcs/Makefile.am: Fix so that the lcs colorspace plugin
27711 doesn't conflict with the internal colorspace plugin.
27712 * gst-libs/gst/audio/make_filter: Use `` instead of $() to
27713 satisfy the crappy-ass shell shipped by a certain vendor.
27714 * gst/videofilter/make_filter: same (bug #135299)
27716 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27718 * configure.ac: bump nano to 1
27720 === release 0.7.6 ===
27722 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27724 * configure.in: releasing 0.7.6, "There"
27726 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27728 * pkgconfig/gstreamer-play-uninstalled.pc.in:
27729 * pkgconfig/gstreamer-play.pc.in:
27730 synchronize the two
27732 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27734 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
27735 (cdparanoia_open), (cdparanoia_event):
27736 fix/add error handling
27738 add cdparanoia source
27739 * tools/Makefile.am:
27740 make scripts executable
27742 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27745 * ext/vorbis/Makefile.am:
27747 remove id3types, vorbisfile and xvideosink from the build (#133783)
27749 2004-03-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
27751 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
27752 Fix metadata read crash (#136537).
27754 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
27756 * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
27757 * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
27758 adding mime types, fixing the one-stop function
27760 2004-03-08 Christian Schaller <Uraeus@gnome.org>
27762 * ext/nas/nassink.c and /ext/nas/nassink.h:
27763 More NAS love from Arwed von Merkatz
27764 So lets all sing 'Can you feel the NAS tonight'
27766 2004-03-08 Christian Schaller <Uraeus@gnome.org>
27768 * tools/gst-launch-ext.in:
27769 Replace vorbisfile with oggdemux/vorbisdec/audioconvert
27771 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
27773 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27774 (gst_mpeg2dec_init):
27775 remove the user_data pad for now, because it is being used in
27776 fixating causing MPEG playback to fixate on 1000 Hz for playback.
27777 If someone knows how to fix this properly, please do.
27779 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
27781 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27782 (gst_osssink_get_time):
27783 add a warning, IMO this won't get triggered anymore, remove later
27785 2004-03-07 David Schleef <ds@schleef.org>
27787 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Added Cinepak
27788 format (bug #136470)
27790 2004-03-07 Thomas Vander Stichele <thomas at apestaart dot org>
27792 * gst-libs/Makefile.am:
27793 * gst-libs/gst/media-info/Makefile.am:
27794 * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
27795 (error_callback), (gst_media_info_error_create),
27796 (gst_media_info_error_element), (gmip_init), (gmip_reset),
27797 (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
27798 * gst-libs/gst/media-info/media-info-priv.h:
27799 * gst-libs/gst/media-info/media-info-test.c: (main):
27800 * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
27801 (gst_media_info_class_init), (gst_media_info_instance_init),
27802 (gst_media_info_set_source), (gst_media_info_read_with_idler),
27803 (gst_media_info_read_idler), (gst_media_info_read):
27804 * gst-libs/gst/media-info/media-info.h:
27805 fixed, should work now
27807 2004-03-07 Christian Schaller <Uraeus@gnome.org>
27809 * ext/nas/nassink.c:
27810 A bunch of NAS fixes from Arwed von Merkatz
27812 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27814 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
27815 (qtdemux_parse_trak):
27816 Fix crash (j might be greater than n_samples, in which case we're
27817 writing outside the allocated space for the array) and memleak.
27819 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27821 * sys/oss/gstosssink.c: (gst_osssink_chain):
27822 And another caller that couldn't handle delay < 0 (unsigned
27823 integer overflow). Video now continues playing on an audio
27824 buffer underrun, and the clock continues working. Audio still
27827 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27829 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27830 (gst_osssink_get_time):
27831 get_delay() may return values lower than 0. In those cases, we
27832 should not actually cast to *unsigned* int64, that will break
27833 stuff horribly. In my case, it screwed up A/V sync in movies
27834 in totem rather badly.
27836 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27838 * ext/faac/gstfaac.c: (gst_faac_chain):
27839 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
27840 * ext/libpng/gstpngenc.c: (user_write_data):
27841 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
27842 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
27843 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
27844 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
27845 Fix several misuse of gst_buffer_merge (it doesn't take ownership
27846 of any buffer), should fix some leaks. I hope I didn't unref buffers
27847 that shouldn't be...
27849 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27851 * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
27852 (deep_notify_callback), (tag_flag_score), (found_tag_callback),
27853 (error_callback), (gmi_reset), (gmi_seek_to_track),
27854 (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
27855 (gmip_find_type_post), (gmip_find_stream_post),
27856 (gmip_find_track_streaminfo_post):
27857 * gst-libs/gst/media-info/media-info-priv.h:
27858 * gst-libs/gst/media-info/media-info-test.c: (print_tag),
27859 (info_print), (main):
27860 * gst-libs/gst/media-info/media-info.c:
27861 (gst_media_info_error_create), (gst_media_info_error_element),
27862 (gst_media_info_instance_init), (gst_media_info_get_property),
27863 (gst_media_info_new), (gst_media_info_set_source),
27864 (gst_media_info_read_idler), (gst_media_info_read):
27865 * gst-libs/gst/media-info/media-info.h:
27866 first pass at making this work again. This seems to work on
27867 tagged ogg/vorbis and mp3 files.
27869 2004-03-06 Benjamin Otte <otte@gnome.org>
27871 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
27872 fix huge leak: gst_buffer_merge doesn't unref the first argument
27875 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27877 * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
27878 report layer/mode/emphasis
27880 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27882 * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
27884 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27886 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
27889 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27891 * ext/vorbis/vorbis.c: (plugin_init):
27892 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
27893 (gst_vorbis_dec_init), (vorbis_dec_event):
27895 make vorbisdec handle _BYTE and _TIME queries
27897 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27899 * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
27900 from the xing header
27902 2004-03-06 Benjamin Otte <otte@gnome.org>
27904 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
27905 (gst_audio_convert_link), (gst_audio_convert_change_state),
27906 (gst_audio_convert_buffer_from_default_format):
27907 do conversions from/to float correctly, fix some caps nego errors,
27908 export correct supported caps in template and getcaps, use correct
27909 caps in try_set_caps functions
27911 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27913 For some reason, I only committed a ChangeLog entry yesterday and
27914 not the corresponding code...
27915 * ext/mad/gstmad.c: Fix detection of Xing headers
27916 * gst/tags/gstid3tag.c: Changes to support TLEN tags
27918 2004-03-06 Benjamin Otte <otte@gnome.org>
27920 * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
27921 (gst_ogg_demux_src_query):
27922 make sure to handle the case where there's no current chain
27925 2004-03-05 David Schleef <ds@schleef.org>
27927 * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
27928 Add fixate function. (bug #131128)
27929 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
27930 (gst_sdlvideosink_fixate): Add fixate function.
27931 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
27932 Fix attempt to print a non-pointer using GST_PTR_FORMAT.
27933 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
27934 Fix missing break that was causing ulaw to be interpreted as
27937 2004-03-05 David Schleef <ds@schleef.org>
27939 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
27940 Fix code that ignores return value of gst_buffer_merge().
27942 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
27943 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
27944 * testsuite/gst-lint: Check for above.
27946 2004-03-05 David Schleef <ds@schleef.org>
27948 * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Check for unfixed
27949 caps and throw an element error. (bug #136334)
27951 2004-03-05 David Schleef <ds@schleef.org>
27953 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
27954 (gst_faad_chain): Fix negotiation.
27955 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
27956 key and button events.
27957 * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
27959 * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
27961 * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
27962 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
27963 (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
27964 function to encourage better negotiation, particularly between
27965 audioconvert and osssink.
27966 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
27967 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak): Make some debugging
27969 * gst/typefind/gsttypefindfunctions.c: Fix mistake in flash
27971 * gst/vbidec/vbiscreen.c: Add glib header
27972 * pkgconfig/gstreamer-play.pc.in: Depends on gst-interfaces.
27974 2004-03-06 Christophe Fergeau <teuf@users.sourceforge.net>
27976 * ext/mad/gstmad.c: Fix detection of Xing headers
27977 * gst/tags/gstid3tag.c: Changes to support TLEN tags
27979 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27981 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
27982 (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
27985 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27987 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
27988 * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
27989 (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
27990 files, and report the parsed length as a GST_TAG_DURATION tag.
27991 * gst/tags/gstid3tag.c: support TLEN (duration) tag
27993 2004-03-05 Benjamin Otte <otte@gnome.org>
27995 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
27996 convert channels correctly. convert correctly to unsigned.
27998 2004-03-05 Julien MOUTTE <julien@moutte.net>
28000 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
28001 we have a window before clearing it.
28003 2004-03-05 Julien MOUTTE <julien@moutte.net>
28005 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
28006 have a window before clearing it.
28008 2004-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
28010 * gconf/gstreamer.schemas.in:
28011 * gst-libs/gst/gconf/Makefile.am:
28012 version installation path the same way as for 0.6
28013 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
28014 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28015 * pkgconfig/gstreamer-play-uninstalled.pc.in:
28016 remove comment that was fixed
28018 2004-03-05 David Schleef <ds@schleef.org>
28020 * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
28021 (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
28022 (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
28023 (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
28024 Add prototype code for handling seeking and querying.
28026 2004-03-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
28028 * examples/gstplay/player.c: (main):
28029 Initialize variables to NULL. Prevents a segfault because the
28030 (uninitialized) variable is not NULL, resulting in a crash on
28031 trying to reach error->message.
28033 2004-03-05 Benjamin Otte <otte@gnome.org>
28035 * gst/audioconvert/gstaudioconvert.c:
28036 (gst_audio_convert_buffer_to_default_format):
28037 make float=>int conversion work correctly even in cornercases.
28039 2004-03-04 David I. Lehn <dlehn@users.sourceforge.net>
28041 * debian/README.Debian:
28042 * debian/build-deps:
28043 * debian/changelog:
28045 * debian/control.in:
28046 * debian/copyright:
28047 * debian/gstreamer-a52dec.files:
28048 * debian/gstreamer-aa.files:
28049 * debian/gstreamer-alsa.files:
28050 * debian/gstreamer-alsa.manpages:
28051 * debian/gstreamer-arts.files:
28052 * debian/gstreamer-artsd.files:
28053 * debian/gstreamer-audiofile.files:
28054 * debian/gstreamer-avifile.files:
28055 * debian/gstreamer-cdparanoia.files:
28056 * debian/gstreamer-colorspace.files:
28057 * debian/gstreamer-doc.files:
28058 * debian/gstreamer-dv.files:
28059 * debian/gstreamer-dvd.files:
28060 * debian/gstreamer-esd.files:
28061 * debian/gstreamer-festival.files:
28062 * debian/gstreamer-flac.files:
28063 * debian/gstreamer-gconf.conffiles:
28064 * debian/gstreamer-gconf.files:
28065 * debian/gstreamer-gconf.postinst:
28066 * debian/gstreamer-gnomevfs.files:
28067 * debian/gstreamer-gsm.files:
28068 * debian/gstreamer-http.files:
28069 * debian/gstreamer-jack.files:
28070 * debian/gstreamer-jpeg.files:
28071 * debian/gstreamer-mad.files:
28072 * debian/gstreamer-mikmod.files:
28073 * debian/gstreamer-misc.files:
28074 * debian/gstreamer-mpeg2dec.files:
28075 * debian/gstreamer-oss.files:
28076 * debian/gstreamer-plugin-apps.files:
28077 * debian/gstreamer-plugin-apps.manpages:
28078 * debian/gstreamer-plugin-libs-dev.files:
28079 * debian/gstreamer-plugin-libs.files:
28080 * debian/gstreamer-plugin-template.postinst:
28081 * debian/gstreamer-plugin-template.postrm:
28082 * debian/gstreamer-sdl.files:
28083 * debian/gstreamer-sid.files:
28084 * debian/gstreamer-vorbis.files:
28085 * debian/gstreamer-x.files:
28086 * debian/mk.control:
28088 Debian package info not maintained here.
28090 2004-03-04 Thomas Vander Stichele <thomas at apestaart dot org>
28092 * ext/aalib/gstaasink.c: (gst_aasink_class_init):
28093 * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
28094 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
28095 * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
28096 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
28097 * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
28098 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
28099 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
28100 * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
28101 * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
28102 * gst-libs/gst/colorbalance/colorbalance.c:
28103 (gst_color_balance_class_init):
28104 * gst-libs/gst/colorbalance/colorbalancechannel.c:
28105 (gst_color_balance_channel_class_init):
28106 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
28107 * gst-libs/gst/play/play.c: (gst_play_class_init):
28108 * gst-libs/gst/propertyprobe/propertyprobe.c:
28109 (gst_property_probe_iface_init):
28110 * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
28111 * gst-libs/gst/tuner/tunerchannel.c:
28112 (gst_tuner_channel_class_init):
28113 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
28114 * gst/cutter/gstcutter.c: (gst_cutter_class_init):
28115 * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
28116 * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
28117 * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
28118 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
28119 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
28120 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
28121 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
28122 fix signals to use - instead of _
28123 * ext/libcaca/gstcacasink.h:
28124 * ext/sdl/sdlvideosink.h:
28127 2004-03-04 David Schleef <ds@schleef.org>
28129 * testsuite/gst-lint: Add a check for bad signal names.
28131 2004-03-04 Stefan Kost <kost@imn.htwk-leipzig.de>
28133 reviewed by David Schleef
28135 * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
28136 modified the alpha channel and caused a warning. (bug #136192)
28138 2004-04-03 Christian Schaller <Uraeus@gnome.org>
28140 * gst-plugins.spec.in:
28141 Change names of plugins to actually be correct. Try to keep things
28142 alphabetical to avoid getting beat up by Thomas
28144 2004-03-03 Julien MOUTTE <julien@moutte.net>
28146 * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
28147 Using ximagesink as a default if no gconf key found. We should
28148 probably consider using alsasink instead of osssink for the audio
28151 2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
28154 fix --with-plugins, don't think it ever worked before
28155 * gst-plugins.spec.in:
28158 2004-03-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
28160 * ext/sdl/sdlvideosink.h:
28161 * sys/ximage/ximagesink.h:
28162 * sys/xvideo/xvideosink.h:
28163 * sys/xvimage/xvimagesink.h:
28164 Fix for move of gstvideosink.h -> videosink.h.
28166 2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
28168 * gst-libs/gst/xwindowlistener/Makefile.am:
28169 this is a plugin library, not a library
28171 2004-03-01 David Schleef <ds@schleef.org>
28173 * AUTHORS: Added some names. Add yourself if you're still
28176 2004-03-01 David Schleef <ds@schleef.org>
28180 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28182 * gst-plugins.spec.in: clean up spec file
28184 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28186 * gst-libs/gst/video/Makefile.am:
28187 * gst-libs/gst/video/gstvideosink.c:
28188 * gst-libs/gst/video/gstvideosink.h:
28189 rename gstvideosink.h to videosink.h to match other headers
28190 * gst/mixmatrix/Makefile.am:
28191 fix plugin filename
28192 * gst/tags/Makefile.am: fix plugin filename
28194 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28196 * gst/tags/Makefile.am: fix plugin filename
28198 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28200 * examples/gstplay/player.c: (got_time_tick), (main):
28202 display time_tick more readably
28203 * gst/mixmatrix/Makefile.am:
28204 fix plugin file name
28206 2004-02-29 Christophe Fergeau <teuf@gnome.org>
28208 * sys/oss/gstosselement.c: (gst_osselement_probe),
28209 (device_combination_append), (gst_osselement_class_probe_devices):
28210 * sys/oss/gstosselement.h:
28211 Reworked enumeration of oss dsps and mixers so that gst-mixer works
28212 on my system using alsa oss emulation, fixes bug #135597
28214 2004-02-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
28216 * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
28217 (gst_videodrop_chain), (gst_videodrop_change_state):
28218 * gst/videodrop/gstvideodrop.h:
28219 Work based on timestamp of input data, not based on the expected
28220 framerate from the input. The consequence is that this element now
28221 not only scales framerates, but also functions as a framerate
28222 corrector or framerate stabilizer/constantizer.
28224 2004-02-27 David Schleef <ds@schleef.org>
28226 patches from jmmv@menta.net (Julio M. Merino Vidal)
28228 * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
28229 GST_ELEMENT_ERROR call (bug #135634)
28230 * gst/interleave/interleave.c: (interleave_buffered_loop),
28231 (interleave_bytestream_loop): Don't use alloca() (bug #135640)
28232 * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
28233 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
28234 (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
28235 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
28236 (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
28237 (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
28238 Fix GST_ELEMENT_ERROR call.
28239 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
28240 GST_ELEMENT_ERROR call.
28242 2004-02-27 Benjamin Otte <otte@gnome.org>
28244 * gst-libs/gst/audio/audio.h:
28245 add macro to make sure header isn't included twice
28246 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
28247 don't use gst_buffer_free
28248 * gst/playondemand/filter.func:
28249 don't use gst_data_free. Free data only once.
28251 2004-02-26 David Schleef <ds@schleef.org>
28253 * gst-libs/gst/colorbalance/Makefile.am:
28254 * gst-libs/gst/mixer/Makefile.am:
28255 * gst-libs/gst/tuner/Makefile.am:
28256 * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
28257 should not be disted, -marshal.h files should not be installed,
28258 and -enum.h files _should_ be installed. Fix to make this the
28261 === release 0.7.5 ===
28263 2004-02-26 Thomas Vander Stichele <thomas at apestaart dot org>
28265 * configure.ac: release 0.7.5, "Under The Sea"
28267 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
28269 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
28270 (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
28271 * gst/videoscale/gstvideoscale.c:
28272 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
28273 assorted debug/warning fixes
28275 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
28277 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
28278 (gst_videoscale_init), (gst_videoscale_chain),
28279 (gst_videoscale_set_property), (plugin_init):
28280 * gst/videoscale/gstvideoscale.h:
28281 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
28282 (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
28283 (gst_videoscale_planar400), (gst_videoscale_packed422),
28284 (gst_videoscale_packed422rev), (gst_videoscale_32bit),
28285 (gst_videoscale_24bit), (gst_videoscale_16bit),
28286 (gst_videoscale_bilinear), (gst_videoscale_bicubic),
28287 (gst_videoscale_scale_plane_slow),
28288 (gst_videoscale_scale_point_sample),
28289 (gst_videoscale_scale_nearest),
28290 (gst_videoscale_scale_nearest_str2),
28291 (gst_videoscale_scale_nearest_str4),
28292 (gst_videoscale_scale_nearest_32bit),
28293 (gst_videoscale_scale_nearest_24bit),
28294 (gst_videoscale_scale_nearest_16bit):
28295 add debugging category and use it properly
28296 fix use of GST_PTR_FORMAT
28298 2004-02-25 Andy Wingo <wingo@pobox.com>
28300 * gst/interleave/interleave.c (interleave_buffered_loop): Always
28301 push only when channel->buffer is NULL. Prevents segfaults doing
28302 the state change after a nonlocal exit, like a scheme exception.
28304 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
28305 Handle the case where the intersected caps is empty.
28307 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
28309 * gst/law/mulaw-decode.c: (mulawdec_link):
28310 * gst/law/mulaw.c: (plugin_init):
28311 fix mulawdec so it actually works again
28313 2004-02-24 Arwed v. Merkatz <v.merkatz@gmx.net>
28315 reviewed by: David Schleef <ds@schleef.org>
28317 * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
28318 (gst_gamma_init), (gst_gamma_set_property),
28319 (gst_gamma_get_property), (gst_gamma_calculate_tables),
28320 (gst_gamma_rgb24), (gst_gamma_rgb32): Adds gamma correction
28321 for RGB, with separate r g and b correction factors. (#131167)
28323 2004-02-24 Thomas Vander Stichele <thomas at apestaart dot org>
28325 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
28326 only signal tags for bitrate if they're > 0 (#134894)
28328 2004-02-24 David Schleef <ds@schleef.org>
28330 * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
28331 (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
28332 (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
28333 (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
28334 (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
28335 (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
28336 (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
28337 (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
28338 Cleanups. Convert g_prints to GST_LOGs. Add qtdemux debug
28339 category. Attempt to fix timestamp calculation.
28341 2004-02-24 Johan Dahlin <johan@gnome.org>
28343 * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
28345 2004-02-23 Thomas Vander Stichele <thomas at apestaart dot org>
28348 * gconf/Makefile.am:
28349 * gconf/gstreamer.schemas:
28350 * gst-libs/gst/gconf/Makefile.am:
28351 * gst-libs/gst/gconf/gconf.c:
28352 version gconf schemas and install locations
28354 2004-02-23 Benjamin Otte <otte@gnome.org>
28356 * ext/xine/xineinput.c: (gst_xine_input_dispose):
28357 (gst_xine_input_subclass_init):
28358 call parent dispose.
28359 change pad template for CD reader correctly
28360 * ext/xine/Makefile.am:
28361 * ext/xine/gstxine.h:
28362 * ext/xine/xine.c: (plugin_init):
28363 * ext/xine/xineaudiosink.c:
28364 wrap audio sinks, too
28365 * gst-libs/gst/resample/private.h:
28366 * gst-libs/gst/resample/resample.c: (gst_resample_init),
28367 (gst_resample_reinit), (gst_resample_scale),
28368 (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
28369 (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
28370 (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
28371 (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
28372 (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
28373 * gst-libs/gst/resample/resample.h:
28374 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
28375 (gst_audioscale_class_init), (gst_audioscale_link),
28376 (gst_audioscale_get_buffer), (gst_audioscale_init),
28377 (gst_audioscale_chain), (gst_audioscale_set_property),
28378 (gst_audioscale_get_property):
28379 * gst/audioscale/gstaudioscale.h:
28380 s/resample_*/gst_resample_*/i to not clobber namespaces
28382 2004-02-23 Julien MOUTTE <julien@moutte.net>
28384 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
28385 (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
28386 (gst_riff_create_video_template_caps),
28387 (gst_riff_create_audio_template_caps),
28388 (gst_riff_create_iavs_template_caps):
28389 * gst-libs/gst/riff/riff-media.h:
28390 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
28391 (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
28392 (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
28393 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
28394 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
28395 (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
28396 (gst_matroska_demux_plugin_init): First batch implementing audio and
28397 video codec tags in demuxers.
28399 2004-02-22 Benjamin Otte <otte@gnome.org>
28401 * ext/xine/Makefile.am:
28402 * ext/xine/gstxine.h:
28403 * ext/xine/xine.c: (plugin_init):
28404 * ext/xine/xineinput.c:
28405 add input plugin wrapper. Playback from files, http, mms and cdda
28407 * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
28408 remove leftover G_GNUC_UNUSED
28409 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
28410 (gst_asf_demux_identify_guid):
28411 improve debugging output
28413 2004-02-22 Benjamin Otte <otte@gnome.org>
28415 reported by: Padraig O'Briain <padraig.obriain@sun.com>
28418 replace test -e with test -x for mkinstalldirs to be more portable.
28421 2004-02-22 Benjamin Otte <otte@gnome.org>
28423 reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
28425 * gst/audioconvert/gstaudioconvert.c: (plugin_init):
28426 set rank to PRIMARY
28427 * gst/volume/gstvolume.c: (plugin_init):
28431 2004-02-22 Julio M. Merino Vidal <jmmv@menta.net>
28433 reviewed by Benjamin Otte <otte@gnome.org>
28435 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
28436 escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
28438 2004-02-22 Benjamin Otte <otte@gnome.org>
28441 export [_]*{gst,Gst,GST}.* symbols from plugins
28443 2004-02-22 Christophe Fergeau <teuf@gnome.org>
28445 reviewed by: Benjamin Otte <otte@gnome.org>
28447 * ext/lame/gstlame.c: (add_one_tag):
28448 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28449 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
28450 (gst_vorbisenc_metadata_set1):
28451 * gst/tags/gstid3tag.c:
28452 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
28453 apply fixes from bugs #135042 (lame can't write tags) and #133817
28454 (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
28456 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
28458 * configure.ac: Export only gst_plugin_desc from plugins.
28459 Note that this change only makes any effect with Linux using libtool
28460 1.5.2 or higher. Otherwise it is silently ignored, but it would build
28461 fine. And don't try to have several versions of libtool in different
28464 2004-02-20 Andy Wingo <wingo@pobox.com>
28466 * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
28467 interleave respectively.
28469 * gst/interleave/deinterleave.c: New plugin: deinterleave
28470 (replaces on oneton).
28471 * gst/interleave/interleave.c: New plugin: interleave.
28472 * gst/interleave/plugin.h: Support file.
28473 * gst/interleave/plugin.c: Support file.
28475 * configure.ac: Remove intfloat and oneton, add interleave.
28477 * ext/sndfile/gstsf.c: Handle events better.
28479 * gst/audioconvert/gstaudioconvert.c: Change to support int2float
28480 and float2int operation. int2float has scheduling problems as
28481 noted in in2float_chain.
28483 2004-02-20 Benjamin Otte <otte@gnome.org>
28485 * ext/xine/Makefile.am:
28486 * ext/xine/gstxine.h:
28488 * ext/xine/xineaudiodec.c:
28489 * ext/xine/xinecaps.c:
28490 add first version of xine plugin wrapper. Currently only wraps the
28491 QDM2 win32 DLL, and even that only in proof-of-concept quality.
28494 add xine plugin wrapper, disabled by default. Use --enable-xine to
28495 build. Note that it'll segfault on gst-register if you don't remove
28496 the goom and tvtime post plugins from xine.
28497 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
28498 (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
28499 add extradata parsing for QDM2.
28500 change around debugging prints.
28502 2004-02-19 Benjamin Otte <otte@gnome.org>
28504 * ext/lame/gstlame.c: (gst_lame_chain):
28505 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
28506 use gst_tag_list_insert when you want to insert tags
28508 2004-02-18 David Schleef <ds@schleef.org>
28510 * configure.ac: Move massink to gst-rotten
28512 * ext/mas/Makefile.am:
28513 * ext/mas/massink.c:
28514 * ext/mas/massink.h:
28516 2004-02-18 David Schleef <ds@schleef.org>
28518 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
28519 typefinding, since it seems to be worse than nothing.
28520 * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Add ftyp
28521 atom to recognize .mp4 and .m4a files as video/quicktime.
28523 2004-02-18 David Schleef <ds@schleef.org>
28525 * gst/sine/demo-dparams.c: (quit_live),
28526 (dynparm_log_value_changed), (dynparm_value_changed), (main):
28527 Use double dparams, not float.
28528 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28529 (gst_sinesrc_init): Change sync default to FALSE, since multiple
28530 sync'd elements don't really work correctly.
28531 * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
28532 (volume_update_volume), (volume_get_property): Change dparam
28535 2004-02-18 Julien MOUTTE <julien@moutte.net>
28537 * sys/ximage/ximagesink.c:
28538 (gst_ximagesink_xwindow_update_geometry),
28539 (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
28540 (gst_ximagesink_change_state), (gst_ximagesink_expose),
28541 (gst_ximagesink_init): Rework the way software video scaling works. So
28542 now we check on each chain call if the video frames are feeling the
28543 window. If not we try to renegotiate caps. On failure we memorize that
28544 and we won't try again for that PLAYING sessions.
28545 * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
28547 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
28550 2004-02-18 Thomas Vander Stichele <thomas at apestaart dot org>
28552 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
28553 break up _link so we can give a better debug message for errors
28555 2004-02-18 Thomas Vander Stichele <thomas at apestaart dot org>
28557 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
28558 set up debug category
28560 2004-02-18 Julien MOUTTE <julien@moutte.net>
28562 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28563 (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
28564 the way renegotiation work. The event handling function is not taking
28565 care of external windows and renegotiate method check for pad flags
28566 NEGOTIATING. Should fix : #133209
28568 2004-02-17 Julien MOUTTE <julien@moutte.net>
28570 * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
28571 pad is negotiating before trying renegotiation.
28573 2004-02-17 Thomas Vander Stichele <thomas at apestaart dot org>
28575 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
28576 pass on all possible mime types as typefind hints
28578 2004-02-17 Julien MOUTTE <julien@moutte.net>
28580 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
28581 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
28582 possible SHM leak if we crash. All other apps using XShm are doing
28585 2004-02-17 Julien MOUTTE <julien@moutte.net>
28587 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28588 (gst_ximagesink_expose): Renegotiate size on expose.
28589 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
28592 2004-02-16 Benjamin Otte <in7y118@public.uni-hamburg.de>
28594 * testsuite/alsa/sinesrc.c:
28595 cosmetic fix to fix compile issue with gcc 2.95.4
28597 2004-02-16 Julien MOUTTE <julien@moutte.net>
28599 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
28600 (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
28601 failed opening the audio device.
28602 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
28603 (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
28604 (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
28605 (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
28606 (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
28607 (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
28608 (gst_ximagesink_change_state), (gst_ximagesink_chain),
28609 (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
28610 Removing some useless g_return_if_fail like wingo suggested.
28611 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
28612 (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
28613 (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
28614 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
28615 (gst_xvimagesink_update_colorbalance),
28616 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
28617 (gst_xvimagesink_xcontext_clear),
28618 (gst_xvimagesink_get_fourcc_from_caps),
28619 (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
28620 (gst_xvimagesink_set_xwindow_id),
28621 (gst_xvimagesink_colorbalance_list_channels),
28622 (gst_xvimagesink_colorbalance_set_value),
28623 (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
28624 PAUSED. Removing some useless g_return_if_fail like wingo suggested.
28626 2004-02-16 Thomas Vander Stichele <thomas at apestaart dot org>
28628 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
28629 throw error when not negotiated instead of asserting
28631 2004-02-15 Julien MOUTTE <julien@moutte.net>
28633 * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
28634 correct data refcounting.
28636 2004-02-15 Julien MOUTTE <julien@moutte.net>
28638 * gst/switch/gstswitch.c: (gst_switch_change_state),
28639 (gst_switch_class_init): Cleaning the sinkpads correctly on state
28640 change, mostly the EOS flag.
28642 2004-02-15 Julien MOUTTE <julien@moutte.net>
28644 * examples/gstplay/player.c: (got_eos), (main): Adding some
28645 output for debugging.
28646 * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
28647 timeouts if we go to any state different from PLAYING.
28648 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
28649 more EOS bugs in riff lib.
28651 2004-02-14 Julien MOUTTE <julien@moutte.net>
28653 * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
28654 visualization until i find a way to fix switch correctly.
28655 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
28657 * gst/switch/gstswitch.c: (gst_switch_release_pad),
28658 (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
28659 (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
28660 Reworked switch to get a more correct behaviour with events and refing
28661 of data stored in sinkpads.
28662 * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
28663 we don't pull from a pad in EOS.
28665 2004-02-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
28667 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28668 remove v1 tag even if we can't read it (makes sure we don't detect
28671 2004-02-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
28673 * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
28674 (gst_alsa_xrun_recovery):
28675 * ext/alsa/gstalsa.h:
28676 try xrun recovery when wait failed. Make xrun recovery function
28677 return TRUE/FALSE to indicate success. (might fix #134354)
28679 2004-02-13 David Schleef <ds@schleef.org>
28681 * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
28682 (dynparm_value_changed), (main): Convert from float to double.
28683 * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
28685 2004-02-13 David Schleef <ds@schleef.org>
28687 * gst/silence/gstsilence.c: (gst_silence_class_init),
28688 (gst_silence_set_clock), (gst_silence_get),
28689 (gst_silence_set_property), (gst_silence_get_property):
28690 * gst/silence/gstsilence.h: Add sync property.
28691 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28692 (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
28693 (gst_sinesrc_set_property), (gst_sinesrc_get_property):
28694 * gst/sine/gstsinesrc.h: Add sync property.
28696 2004-02-13 David Schleef <ds@schleef.org>
28698 * gst/intfloat/gstint2float.c: (conv_f32_s16),
28699 (gst_int2float_chain_gint16): Change stdint usage to glib types.
28701 2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
28705 * gst-libs/ext/Makefile.am:
28706 move ffmpeg plugin to gst-ffmpeg module
28708 2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
28710 * configure.ac: use GST_ARCH to detect architecture
28712 2004-02-12 Julien MOUTTE <julien@moutte.net>
28714 * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
28716 2004-02-12 Thomas Vander Stichele <thomas at apestaart dot org>
28718 * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
28719 classify LADSPA plugins based on number of src/sink pads
28720 (#133663, Stefan Kost)
28721 * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
28722 fix dparams registration
28723 (#133528, Stefan Kost)
28724 * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
28725 fix use of isprint and use g_ascii_isprint instead
28726 (#133316, Stefan Kost)
28728 2004-02-11 David Schleef <ds@schleef.org>
28730 Convert a few inner loops to use liboil. This is currently
28731 optional, and is only enabled if liboil is present (duh!).
28732 * configure.ac: Check for liboil-0.1
28733 * gst/intfloat/Makefile.am:
28734 * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
28735 (gst_int2float_chain_gint16):
28736 * gst/videofilter/Makefile.am:
28737 * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
28738 (tablelookup_u8), (gst_videobalance_planar411):
28739 * gst/videotestsrc/Makefile.am:
28740 * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
28741 * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
28742 (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
28743 (paint_hline_RGB565), (paint_hline_xRGB1555):
28745 2004-02-11 David Schleef <ds@schleef.org>
28747 * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
28748 (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
28749 (gst_colorspace_getcaps), (gst_colorspace_link),
28750 (gst_colorspace_base_init), (gst_colorspace_init),
28751 (gst_colorspace_chain), (gst_colorspace_change_state),
28752 (plugin_init): Merge Ronald's patch (bug #117897) and update
28753 for new caps and negotiation. Seems to work, although it
28754 shows off bugs in lcs.
28756 2004-02-11 David Schleef <ds@schleef.org>
28758 * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
28759 (bug #133886) Noticed by bugs@leroutier.net (Stephane LOEUILLET)
28761 2004-02-11 David Schleef <ds@schleef.org>
28763 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
28764 (gst_rfbsrc_change_state), (gst_rfbsrc_init),
28765 (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
28766 Add server and port properties
28768 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
28773 * m4/as-liblame.m4:
28774 * m4/as-slurp-ffmpeg.m4:
28775 * m4/check-libheader.m4:
28782 * m4/gst-ivorbis.m4:
28783 * m4/gst-matroska.m4:
28785 * m4/gst-shout2.m4:
28793 fix underquotedness of macros (#133800)
28794 * m4/as-avifile.m4:
28796 removed because no longer used
28798 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
28801 require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
28802 by autopoint (fixes #132996)
28804 2004-02-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
28806 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
28807 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
28808 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
28809 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
28812 2004-02-11 David Schleef <ds@schleef.org>
28814 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
28815 (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
28816 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
28817 (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
28818 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
28819 (gst_jpegenc_class_init), (gst_jpegenc_init),
28820 (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
28821 (gst_jpegenc_chain), (gst_jpegenc_set_property),
28822 (gst_jpegenc_get_property): Fix negotiation. Add some properties.
28823 * ext/jpeg/gstjpegenc.h: Fix negotiation.
28825 2004-02-10 Benjamin Otte <in7y118@public.uni-hamburg.de>
28827 * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
28828 (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
28829 * ext/mikmod/gstmikmod.h:
28830 fix caps negotiation in mikmod
28831 * ext/ogg/gstoggdemux.c: (gst_ogg_print):
28832 output debug information
28834 2004-02-08 Benjamin Otte <in7y118@public.uni-hamburg.de>
28836 * gst-libs/gst/colorbalance/Makefile.am:
28837 * gst-libs/gst/navigation/Makefile.am:
28838 * gst-libs/gst/xoverlay/Makefile.am:
28839 remove unused GST_OPT_CFLAGS from Makefiles
28840 include X_CFLAGS and X_LIBS in xoverlay. (#131948)
28842 2004-02-07 David Schleef <ds@schleef.org>
28844 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
28845 push events to pads that haven't been created (#133508)
28847 2004-02-07 Jan Schmidt <thaytan@mad.scientist.com>
28849 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
28850 (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
28851 (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
28852 (gst_dvdec_loop), (gst_dvdec_change_state):
28853 Second attempt at committing a working dvdec element.
28855 2004-02-06 David Schleef <ds@schleef.org>
28857 Build fixes for OS X: (see #129600)
28858 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
28859 (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
28860 (gst_riff_read_strf_iavs):
28861 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
28862 (gst_avi_demux_stream_odml):
28863 * gst/playondemand/Makefile.am:
28864 * gst/rtp/rtp-packet.c:
28866 2004-02-05 David Schleef <ds@schleef.org>
28868 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
28869 last change, because it Just Doesn't Compile.
28871 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
28873 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28874 skip undecodable id3v2 tag instead of keeping it
28876 2004-02-05 David Schleef <ds@schleef.org>
28878 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
28879 Unref leaked buffer. (Noticed by Ronald)
28881 2004-02-05 David I. Lehn <dlehn@users.sourceforge.net>
28883 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28884 Sync requires with other checks. >= vs =.
28886 2004-02-06 Jan Schmidt <thaytan@mad.scientist.com>
28888 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
28889 (gst_dvdec_video_link), (gst_dvdec_loop):
28890 * ext/dv/gstdvdec.h:
28891 rework the caps negotiation so that dvdec works again instead
28892 of just segfaulting.
28894 === release 0.7.4 ===
28896 2004-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
28898 * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
28899 * configure.ac: changed for release
28901 2004-02-05 Thomas Vander Stichele <thomas at apestaart dot org>
28903 * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
28904 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
28905 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28906 * pkgconfig/gstreamer-play-uninstalled.pc.in:
28907 reworked patch by David Lehn to fix libdir and includedir for
28908 uninstalled libraries
28909 removed play and gconf from gstreamer-libs since they have their
28910 own pkgconfig files
28912 2004-02-04 David Schleef <ds@schleef.org>
28914 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
28917 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
28919 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
28920 use correct GST_TAG_ENCODER tag
28922 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
28924 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
28925 be sure to stop the clock when going to paused
28926 * sys/oss/gstosssink.c: (gst_osssink_change_state):
28927 reset number of transmitted when going to ready.
28930 2004-02-05 Charles Schmidt <cschmidt2@emich.edu>
28932 reviewed by Benjamin Otte
28934 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28935 extract track count (fixes #133410)
28937 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
28939 * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
28940 that should be !=, not == (fixes #132519)
28942 2004-02-04 David Schleef <ds@schleef.org>
28944 Make sure set_explicit_caps() is called before adding pad.
28945 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
28946 * gst/id3/gstid3types.c: (gst_id3types_loop):
28947 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
28948 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
28950 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
28953 bump nano to 2, first prerelease
28954 put back AM_PROG_LIBTOOL
28956 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
28958 * testsuite/alsa/Makefile.am:
28959 these are user test apps, not automatic testsuite tests
28961 2004-02-04 David Schleef <ds@schleef.org>
28963 Convert GST_DEBUG_CAPS() to GST_DEBUG():
28964 * gst/mpeg1videoparse/gstmp1videoparse.c:
28965 (mp1videoparse_parse_seq):
28966 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
28967 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
28968 * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
28969 * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
28970 (gst_xvideosink_getcaps):
28971 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
28972 * testsuite/gst-lint: more tests
28974 2004-02-04 David Schleef <ds@schleef.org>
28976 Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
28977 with the code that they would expand to.
28978 * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
28979 (gst_flacdec_get_src_query_types),
28980 (gst_flacdec_get_src_event_masks):
28981 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
28982 (gst_gnomevfssrc_get_query_types),
28983 (gst_gnomevfssrc_get_event_mask):
28985 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
28987 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28988 (gst_sinesrc_dispose):
28989 fix memleak by properly disposing sinesrc
28991 2004-02-04 Julien MOUTTE <julien@moutte.net>
28993 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
28994 * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
28995 an overlay to redraw the image because it has been exposed.
28996 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
28997 (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
28998 (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
28999 * sys/ximage/ximagesink.h: Implement expose method from XOverlay
29001 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
29002 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
29003 (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
29004 * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
29007 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29009 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
29010 more memleak fixage
29012 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29014 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
29015 * gst/typefind/gsttypefindfunctions.c:
29016 fix memleaks shown by gst-typefind
29018 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
29020 * common/glib-gen.mak:
29021 add hack rule to touch .Plo files
29022 * gst-libs/gst/colorbalance/Makefile.am:
29023 * gst-libs/gst/mixer/Makefile.am:
29024 * gst-libs/gst/play/Makefile.am:
29025 * gst-libs/gst/tuner/Makefile.am:
29026 remove glib_root variable
29028 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29030 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
29031 set explicit caps before adding the element, so the autopluggers can
29033 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
29034 (mpeg2_sys_type_find), (mpeg1_sys_type_find),
29035 (mpeg_video_type_find), (mpeg_video_stream_type_find),
29037 fix memleaks in typefind functions. gst_type_find_suggest takes a const
29040 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
29042 * gst-libs/gst/colorbalance/Makefile.am:
29043 * gst-libs/gst/colorbalance/colorbalance-marshal.list:
29044 * gst-libs/gst/colorbalance/colorbalance.c:
29045 * gst-libs/gst/colorbalance/colorbalance.h:
29046 * gst-libs/gst/colorbalance/colorbalancemarshal.list:
29047 * gst-libs/gst/mixer/Makefile.am:
29048 * gst-libs/gst/mixer/mixer-marshal.list:
29049 * gst-libs/gst/mixer/mixer.c:
29050 * gst-libs/gst/mixer/mixer.h:
29051 * gst-libs/gst/mixer/mixermarshal.list:
29052 * gst-libs/gst/play/Makefile.am:
29053 * gst-libs/gst/play/play.h:
29054 * gst-libs/gst/tuner/Makefile.am:
29055 * gst-libs/gst/tuner/tuner-marshal.list:
29056 * gst-libs/gst/tuner/tuner.c:
29057 * gst-libs/gst/tuner/tuner.h:
29058 * gst-libs/gst/tuner/tunermarshal.list:
29059 use new glib-gen.mak snippet to clean up Makefile.am
29060 fix various bugs in Makefile.am's
29062 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29064 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
29065 handle chain parsing correctly in the multichain case
29066 * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
29067 (theora_dec_from_granulepos), (theora_dec_to_granulepos),
29068 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
29069 (theora_dec_chain):
29070 handle events and queries correctly
29072 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29075 Ignore generated file _stdint.h.
29077 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29079 * gst-libs/gst/colorbalance/Makefile.am:
29080 * gst-libs/gst/colorbalance/colorbalance.h:
29081 * gst-libs/gst/mixer/Makefile.am:
29082 * gst-libs/gst/mixer/mixer.h:
29083 * gst-libs/gst/play/Makefile.am:
29084 * gst-libs/gst/play/play.h:
29085 * gst-libs/gst/tuner/Makefile.am:
29086 * gst-libs/gst/tuner/tuner.h:
29087 Generate enum type code with glib-mkenums.
29088 * gst-libs/gst/colorbalance/.cvsignore:
29089 * gst-libs/gst/mixer/.cvsignore:
29090 * gst-libs/gst/play/.cvsignore:
29091 * gst-libs/gst/tuner/.cvsignore:
29092 Ignore generated files.
29094 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29096 * gst-libs/gst/audio/.cvsignore:
29097 Ignore generated file.
29098 * gst-libs/gst/audio/Makefile.am:
29099 Do not install example filter.
29101 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29103 * examples/switch/.cvsignore:
29104 Ignore generated file.
29106 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29108 * common/m4/ax_create_stdint_h.m4:
29110 add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
29113 remove generated _stdint.h in DISTCLEANFILES
29114 * ext/a52dec/gsta52dec.c:
29115 include _stdint.h for a52dec. (should fix #133064)
29117 2004-02-02 Jeremy Simon <jesimon@libertysurf.fr>
29119 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
29120 (gst_tag_to_vorbis_comments):
29121 Add replaygain support to vorbistag
29123 2004-02-02 Jeremy Simon <jesimon@libertysurf.fr>
29124 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
29125 (gst_ffmpeg_caps_to_extradata):
29126 Fix SVQ3 caps flag properties
29127 Use glib macro for bytes swap
29129 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29131 * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
29132 * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
29133 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
29134 * ext/sndfile/gstsf.c: (plugin_init):
29135 * gst/avi/gstavi.c: (plugin_init):
29136 * sys/dxr3/dxr3init.c: (plugin_init):
29137 * sys/oss/gstossaudio.c: (plugin_init):
29138 * sys/v4l/gstv4l.c: (plugin_init):
29139 * sys/v4l2/gstv4l2.c: (plugin_init):
29140 remove textdomain calls
29142 update Dutch translation
29144 2004-02-02 Julien MOUTTE <julien@moutte.net>
29146 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
29147 (gst_play_set_audio_sink): Moving volume in the audio thread for
29148 instantaneous volume change. Maybe i will add another volume in front
29149 of visualization later, not sure yet though.
29151 2004-02-02 Julien MOUTTE <julien@moutte.net>
29153 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
29154 (gst_ximagesink_handle_xevents): Better X events handling, only take
29155 the latest events for configure and motion.
29156 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
29158 2004-02-02 Jon Trowbridge <trow@gnu.org>
29160 reviewed by: David Schleef <ds@schleef.org>
29163 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
29164 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
29166 2004-02-02 David Schleef <ds@schleef.org>
29168 code cleanup. Change bzero() to memset(). Remove duplicate ; at ends
29170 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
29171 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
29172 * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
29173 * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
29174 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
29175 * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
29176 * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
29177 * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
29178 (gst_float2_2_int_link):
29179 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
29180 * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
29181 * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
29182 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
29183 * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
29184 * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
29185 * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
29186 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
29187 * testsuite/gst-lint: Add tests for bzero and ;;
29189 2004-02-02 David Schleef <ds@schleef.org>
29191 * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
29193 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29195 * ext/aalib/gstaasink.c: (gst_aasink_open):
29196 * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
29197 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29198 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
29199 * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
29200 (gst_afsink_close_file):
29201 * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
29202 (gst_afsrc_close_file):
29203 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
29204 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
29205 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
29206 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
29207 * ext/esd/esdmon.c: (gst_esdmon_get):
29208 * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
29209 * ext/faac/gstfaac.c: (gst_faac_chain):
29210 * ext/faad/gstfaad.c: (gst_faad_chain):
29211 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
29212 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
29213 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
29214 * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
29215 (gst_flacdec_loop):
29216 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
29217 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
29218 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
29219 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
29220 (gst_gnomevfssink_close_file):
29221 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
29222 (gst_gnomevfssrc_open_file):
29223 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
29224 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
29225 * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
29226 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
29227 (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
29228 * ext/mad/gstmad.c: (gst_mad_chain):
29229 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
29230 * ext/mpeg2dec/gstmpeg2dec.c:
29231 * ext/mpeg2enc/gstmpeg2enc.cc:
29232 * ext/mplex/gstmplex.cc:
29233 * ext/mplex/gstmplexibitstream.cc:
29234 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
29235 (gst_ogg_demux_push):
29236 * ext/raw1394/gstdv1394src.c:
29237 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
29238 (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
29239 * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
29241 * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
29242 * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
29243 * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
29244 * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
29245 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
29246 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
29247 * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
29248 * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
29249 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29250 (gst_riff_read_element_data), (gst_riff_read_seek),
29251 (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
29252 * gst/adder/gstadder.c: (gst_adder_loop):
29253 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
29254 (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
29255 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
29256 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
29257 * gst/avi/gstavimux.c: (gst_avimux_stop_file):
29258 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
29259 * gst/goom/gstgoom.c: (gst_goom_chain):
29260 * gst/id3/gstid3types.c: (gst_id3types_loop):
29261 * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
29262 * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
29263 * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
29264 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29265 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
29266 (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
29267 (gst_ebml_read_float), (gst_ebml_read_header):
29268 * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
29269 (gst_matroska_demux_parse_blockgroup):
29270 * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
29271 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
29272 * gst/oneton/gstoneton.c: (gst_oneton_chain):
29273 * gst/silence/gstsilence.c: (gst_silence_get):
29274 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
29275 * gst/smpte/gstsmpte.c: (gst_smpte_loop):
29276 * gst/speed/gstspeed.c: (speed_loop):
29277 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
29278 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
29279 * gst/volenv/gstvolenv.c: (gst_volenv_chain):
29280 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
29281 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
29282 (gst_wavparse_loop):
29283 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
29284 (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
29285 (dxr3audiosink_close):
29286 * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
29287 * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
29288 (dxr3videosink_close), (dxr3videosink_write_data):
29289 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
29290 * sys/oss/gstosssink.c: (gst_osssink_chain):
29291 * sys/oss/gstosssrc.c: (gst_osssrc_get):
29292 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
29293 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
29294 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
29295 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
29296 (gst_v4l_set_window), (gst_v4l_enable_overlay):
29297 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
29298 (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
29299 (gst_v4l_get_frequency), (gst_v4l_set_frequency),
29300 (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
29301 (gst_v4l_set_audio):
29302 * sys/v4l/v4l_calls.h:
29303 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
29304 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
29305 (gst_v4lmjpegsink_playback_init),
29306 (gst_v4lmjpegsink_playback_start):
29307 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
29308 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
29309 (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
29310 (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
29311 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
29312 * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
29313 (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
29314 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
29315 (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
29316 (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
29317 (gst_v4l2_get_output), (gst_v4l2_set_output),
29318 (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
29319 (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
29320 (gst_v4l2_set_attribute):
29321 * sys/v4l2/v4l2_calls.h:
29322 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
29323 (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
29324 (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
29325 (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
29326 (gst_v4l2src_capture_stop):
29327 * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
29328 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
29329 (gst_ximagesink_chain):
29330 * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
29331 (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
29332 (gst_xvideosink_xwindow_new):
29333 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29334 (gst_xvimagesink_chain):
29336 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29338 * gst/volume/gstvolume.c: (gst_volume_set_volume),
29339 (gst_volume_get_volume), (volume_class_init), (volume_init),
29340 (volume_chain_int16), (volume_update_volume):
29341 * gst/volume/gstvolume.h:
29342 make code more readable by removing magic numbers
29343 make mixer interface export 0-100 range
29344 make it internally map to 0.0-1.0 range so users don't distort
29345 output by putting the sliders at full volume
29347 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29349 * gst-libs/gst/play/play.c: (gst_play_tick_callback),
29350 (gst_play_state_change), (gst_play_seek_to_time):
29351 block the tick callback for 0.5 secs after doing a seek
29353 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29355 * gst-libs/gst/play/play.c: (gst_play_new):
29358 2004-02-01 Julien MOUTTE <julien@moutte.net>
29360 * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
29361 (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
29362 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
29363 (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
29364 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
29365 (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
29367 2004-02-01 Thomas Vander Stichele <thomas at apestaart dot org>
29370 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29371 check for a function added in vorbis 1.1
29373 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
29375 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
29376 (gst_alsa_drain_audio), (gst_alsa_stop_audio):
29377 really start/stop clock only on PLAYING <=> PAUSED
29378 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29379 remove \n from debugging lines
29380 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
29381 make it work when seeking does not
29382 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29385 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
29387 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
29388 start clock on PAUSED=>PLAYING, not later
29389 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
29390 extract correct time for different discont formats
29391 (gst_alsa_sink_get_time):
29392 don't segfault when no format is negotiated yet, just return 0
29393 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29394 (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
29395 (gst_ogg_pad_push):
29396 handle flush and discont events correctly
29397 * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
29398 handle discont events correctly
29400 2004-01-31 Thomas Vander Stichele <thomas at apestaart dot org>
29402 * gst-libs/gst/play/play.c: (gst_play_error_quark),
29403 (gst_play_error_create), (gst_play_error_plugin),
29404 (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
29405 * gst-libs/gst/play/play.h:
29406 add error handling during creation
29407 * examples/gstplay/player.c: (main):
29408 use new gst_play_new
29411 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
29413 * ext/theora/theoradec.c: (theora_dec_chain):
29415 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
29416 (vorbis_dec_src_event), (vorbis_dec_chain):
29417 add encoder tag, fix tag reading to be more error tolerant, change
29418 BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
29419 gst_pad_event_default.
29420 * gst/tags/gstvorbistag.c:
29421 (gst_tag_list_from_vorbiscomment_buffer):
29422 undefine function specific define at end of function
29424 2004-01-31 Jeremy Simon <jesimon@libertysurf.fr>
29426 * ext/flac/gstflac.c: (plugin_init):
29427 * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
29428 * ext/flac/gstflacdec.h:
29429 * ext/flac/gstflacenc.h:
29432 2004-01-30 David I. Lehn <dlehn@users.sourceforge.net>
29434 * examples/gstplay/player.c: s/gstplay.h/play.h/
29436 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29438 * gst-libs/gst/play/Makefile.am:
29439 * gst-libs/gst/play/gstplay.c:
29440 * gst-libs/gst/play/gstplay.h:
29441 * gst-libs/gst/play/play.c:
29442 more surgery, operation complete
29444 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29446 * gst-libs/gst/play/play.old.c:
29447 * gst-libs/gst/play/play.old.h:
29448 after CVS surgery by moving, remove
29449 * gst-libs/gst/play/playpipelines.c:
29452 * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
29453 add negotiation error
29455 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29457 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29458 (gst_ogg_demux_push):
29459 add some seeking debug info
29460 send a flush when seeking
29462 2004-01-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
29468 * ext/theora/Makefile.am:
29469 * ext/theora/theoradec.c:
29470 add theora video decoder. Does just do simple decoding for now and
29471 has been tested against Theora cvs only. It only works when theora
29472 is compiled with --enable-static.
29473 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29474 always reset packetno on DISCONT
29476 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29478 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
29481 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29483 * gst/mpegaudioparse/gstmpegaudioparse.c:
29484 (mp3_type_frame_length_from_header):
29485 Fix header parsing - stolen from ffmpeg (thank you! :) ).
29487 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29489 * ext/esd/esdsink.c: (gst_esdsink_init):
29490 Since we have static pad template caps, we don't need to negotiate;
29491 either the core errors out or we know the format.
29493 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29495 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29496 (gst_riff_read_seek):
29497 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29498 (gst_ebml_read_seek):
29499 Fix event handling.
29501 2004-01-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
29503 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
29504 removee video/x-theora from vp3 decoder, it doesn't handle raw
29506 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
29507 fix bug with finalizing element that never went to PAUSED
29508 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
29509 length and position queries were swapped
29510 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
29511 (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
29512 (vorbis_dec_src_event):
29513 implement querying time and bytes
29515 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29517 * just about every source file:
29518 gst_element_error -> GST_ELEMENT_ERROR
29520 2004-01-29 Julien MOUTTE <julien@moutte.net>
29522 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
29523 emiting FLUSH and even before DISCONT.
29524 * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
29525 get the best instant seeking as possible yay!
29527 2004-01-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
29529 * gst/mpeg1videoparse/gstmp1videoparse.c:
29530 (gst_mp1videoparse_real_chain):
29531 Committed wrong version last week... Grr... Didn't notice until now.
29533 2004-01-29 Julien MOUTTE <julien@moutte.net>
29535 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
29536 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
29537 have_xwindow_id signal in xwindow_create.
29539 2004-01-29 Benjamin Otte <in7y118@public.uni-hamburg.de>
29541 * ext/ogg/gstoggdemux.c:
29542 lots of changes - mainly support for chained bitstreams, seeking,
29543 querying and bugfixes of course
29544 * ext/vorbis/Makefile.am:
29545 * ext/vorbis/vorbisdec.c:
29546 * ext/vorbis/vorbisdec.h:
29547 add vorbisdec raw vorbis decoder
29548 * ext/vorbis/vorbis.c: (plugin_init):
29549 register vorbisdec as PRIMARY, vorbisfile as SECONDARY
29550 * gst/intfloat/Makefile.am:
29551 * gst/intfloat/float22int.c:
29552 * gst/intfloat/float22int.h:
29553 * gst/intfloat/gstintfloatconvert.c: (plugin_init):
29554 add float2intnew plugin. It converts multichannel interleaved float to
29555 multichannel interleaved int. The name should probably be changed.
29556 * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
29558 add typefinding for raw theora video so oggdemux can detect it.
29560 2004-01-28 Julien MOUTTE <julien@moutte.net>
29562 * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
29563 sink element first.
29564 * gst/videoscale/gstvideoscale.c:
29565 (gst_videoscale_handle_src_event): Fixing src event handler.
29567 2004-01-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
29569 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
29570 (gst_v4lsrc_open), (gst_v4lsrc_close),
29571 (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
29572 (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
29573 * sys/v4l/gstv4lsrc.h:
29574 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
29575 (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
29576 Implement resizing... Hack. But that's why v4l is b0rked...
29578 2004-01-28 Julien MOUTTE <julien@moutte.net>
29580 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
29581 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
29582 (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
29583 (gst_ximagesink_xwindow_destroy):
29584 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
29585 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
29586 (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
29587 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
29588 (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
29589 correctly cleaning the image created to check xshm calls on succes,
29590 added a lot of XSync calls in X11 functions, and fixed a segfault when
29591 no image format was defined before negotiation happened.
29593 2004-01-28 Benjamin Otte <in7y118@public.uni-hamburg.de>
29595 * ext/alsa/gstalsa.c: (gst_alsa_query_func):
29596 use gst_element_get_time to get correct time
29598 2004-01-28 Julien MOUTTE <julien@moutte.net>
29600 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
29601 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
29602 (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
29603 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
29604 (gst_xvimagesink_check_xshm_calls),
29605 (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
29606 X plugins are now able to detect that XShm calls will fail even if the
29607 server claims that it has XShm support (remote displays most of the
29608 time). We then log the error as a GST_DEBUG and set use_shm to FALSE
29609 so that we use non XShm functions. This feature is almost useless for
29610 xvimagesink as Xv is not supported on remote displays anyway, but
29611 it might happen than even on the local display XShm calls fail.
29613 2004-01-27 David Schleef <ds@schleef.org>
29615 * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
29616 (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
29617 (gst_esdsink_change_state): Fix sync issues in esdsink. Also
29618 changed esdsink to only use 44100,16,2, since esd sucks at rate
29619 conversion and esdsink has had difficulty negotiating.
29621 2004-01-27 Julien MOUTTE <julien@moutte.net>
29623 * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
29624 (gst_play_seek_to_time): Fixing the way to get current position.
29626 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
29628 * sys/oss/gstosssink.c: (gst_osssink_sink_query):
29629 use gst_element_get_time to get correct time
29631 2004-01-27 Julien MOUTTE <julien@moutte.net>
29633 * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
29634 fix ever... Inverting 2 lines of code make spider autoplug correctly
29637 2004-01-27 David Schleef <ds@schleef.org>
29639 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
29640 Use gst_pad_try_set_caps_nonfixed().
29642 2004-01-27 David Schleef <ds@schleef.org>
29644 * gst/ac3parse/gstac3parse.c: update to checklist 5
29645 * gst/adder/gstadder.c: rewrite negotiation. update to checklist 5
29646 * gst/audioconvert/gstaudioconvert.c: update to checklist 5
29647 * gst/audioscale/gstaudioscale.c: same
29648 * gst/auparse/gstauparse.c: same
29649 * gst/avi/gstavidemux.c: same
29651 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
29653 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
29654 stop processing after EOS
29656 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
29658 * gst/asfdemux/asfheaders.h:
29659 * gst/asfdemux/gstasfdemux.c:
29660 * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
29661 (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
29662 (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
29663 lot's of fixes to make data extraction simpler and get the code
29664 architecture and compiler independant. Add debugging category
29665 * gst/goom/gstgoom.c: (gst_goom_change_state):
29666 reset channel count on PAUSED=>READY, not READY=>PAUSED
29668 2004-01-26 Colin Walters <walters@verbum.org>
29670 * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
29671 code to pull a bigger buffer in iradio mode. This as a side effect
29672 makes typefinding work.
29674 2004-01-26 Jeremy Simon <jesimon@libertysurf.fr>
29676 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
29677 Fix SVQ3 decoding on PPC
29679 2004-01-26 Julien MOUTTE <julien@moutte.net>
29681 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
29682 that one managed to stay there... Fixed.
29684 2004-01-26 Jeremy Simon <jesimon@libertysurf.fr>
29686 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
29687 (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
29688 * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
29689 (qtdemux_video_caps):
29690 * gst/qtdemux/qtdemux.h:
29691 Add SVQ3 specific flags to qtdemux and ffmpeg
29693 2004-01-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
29695 * gst-libs/gst/audio/audio.h:
29696 remove buffer-frames from audio caps
29697 * gst/audioconvert/gstaudioconvert.c:
29698 fix plugin to really work.
29700 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29702 * gst-libs/gst/mixer/mixer.c:
29703 * gst-libs/gst/propertyprobe/propertyprobe.c:
29704 * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
29705 (gst_tuner_find_channel_by_name):
29706 * gst-libs/gst/tuner/tuner.h:
29707 Add gtk-doc style comments. Also fix a function name.
29709 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29711 * ext/divx/gstdivxdec.c: (gst_divxdec_init),
29712 (gst_divxdec_negotiate):
29713 Fix for new capsnego - also fixes gst-player with divxdec.
29715 2004-01-25 Julien MOUTTE <julien@moutte.net>
29717 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29718 (gst_play_identity_handoff), (gst_play_set_location),
29719 (gst_play_set_visualization), (gst_play_connect_visualization): Another
29720 try in visualization implementation. Still have an issue with switch
29721 blocking when pulling from video_queue and only audio comes out of
29723 * gst/switch/gstswitch.c: (gst_switch_release_pad),
29724 (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
29725 release method. And check if the pad is usable before pulling.
29727 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29729 * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
29730 (gst_videobalance_init),
29731 (gst_videobalance_colorbalance_list_channels),
29732 (gst_videobalance_colorbalance_set_value),
29733 (gst_videobalance_colorbalance_get_value),
29734 (gst_videobalance_update_properties),
29735 (gst_videobalance_update_tables_planar411),
29736 (gst_videobalance_planar411):
29737 * gst/videofilter/gstvideobalance.h:
29738 Implement lookup-tables. +/- 10x faster.
29740 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29742 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29743 (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29744 The index reading was broken. The rest worked fine, but the whole
29745 goal of my rewrite was to make avidemux readable, and this was
29746 not at all readable. Please use typed variables.
29748 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29750 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29751 Additional pad usability check.
29752 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
29753 (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
29754 (gst_mp1videoparse_real_chain):
29755 Fix MPEG video stream parsing. The original plugin had several
29756 issues, including not timestamping streams where the source was
29757 not timestamped (this happens with PTS values in mpeg system
29758 streams, but MPEG video is also a valid stream on its own so
29759 that needs timestamps too). We use the display time code for that
29760 for now. Also, if one incoming buffer contains multiple valid
29761 frames, we push them all on correctly now, including proper EOS
29762 handling. Lastly, several potential segfaults were fixed, and we
29763 properly sync on new sequence/gop headers to include them in next,
29764 not previous frames (since they're header for the next frame, not
29765 the previous). Also see #119206.
29766 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
29768 Move caps setting so we only do it after finding several valid
29769 MPEG-1 fraes sequentially, not right after the first one (which
29770 might be coincidental).
29771 * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
29772 (mpeg_video_type_find), (mpeg_video_stream_type_find),
29774 Add unsynced MPEG video stream typefinding, and change some
29775 probability values so we detect streams rightly. The idea is as
29776 follows: I can have an unsynced system stream which contains
29777 video. In the current code, I would randomly get a type for either
29778 system or video stream type found, because the probabilities are
29779 being calculated rather randomly. I now use fixed values, so we
29780 always prefer system stream if that was found (and that is how it
29781 should be). If no system stream was found, we can still identity the stream as video-only.
29783 2004-01-23 Benjamin Otte <in7y118@public.uni-hamburg.de>
29785 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29786 (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29787 don't write to buffer. Extract data without the need of
29788 __attribute__ ((packed))
29790 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29792 * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
29793 (mpeg1_sys_type_find):
29794 Fix MPEG-1 stream typefinding.
29796 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29798 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
29799 Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
29801 2004-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
29803 * ext/esd/esdsink.c: (gst_esdsink_open_audio):
29804 * ext/esd/gstesd.c: (plugin_init):
29805 private debugging, better error reporting
29807 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29809 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
29810 (gst_riff_read_init), (gst_riff_read_change_state):
29811 * gst-libs/gst/riff/riff-read.h:
29812 Remove stuff fromold metadata system.
29814 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29816 * ext/ogg/gstoggdemux.c:
29817 Fix wrong file comment.
29818 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29819 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
29820 Add metadata reading properly.
29822 2004-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
29825 Fix nas DIST_SUBDIRS
29827 Fix bug where make distcheck doesn't get run on adding stuff to
29830 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29832 * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
29833 * ext/divx/gstdivxdec.h:
29834 Fix divx3 ("msmpeg4") playback using divxdec.
29836 2004-01-23 Benjamin Otte <in7y118@public.uni-hamburg.de>
29838 * gst/typefind/gsttypefindfunctions.c:
29839 (mp3_type_frame_length_from_header): fix bug in length computation
29840 (mp3_type_find): improve debugging output
29842 2004-01-23 Julien MOUTTE <julien@moutte.net>
29844 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29845 (gst_play_set_location), (gst_play_seek_to_time),
29846 (gst_play_set_audio_sink), (gst_play_set_visualization),
29847 (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
29848 the pipeline from scratch. Visualization is back and switch went out as
29849 i realized it was not possible to use the way i wanted.
29850 * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
29851 (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
29852 clearing in state change from READY to NULL. So that one can clean the
29853 X ressources keeping the element.
29854 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29855 (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
29856 (gst_xvimagesink_colorbalance_set_value),
29857 (gst_xvimagesink_colorbalance_get_value),
29858 (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
29859 (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
29860 change from READY to NULL and fixed some stupid bugs in colorbalance
29861 get/set values. Also added the following feature : when nobody tries to
29862 set some values to the colorbalance levels before the xcontext is
29863 grabbed, then when creating channels list from Xv attributes we set the
29864 internal values to the Xv defaults. This way we handle buggy Xv drivers
29865 that set default hue values far from the middle of the range (Thanks
29866 to Jon Trowbridge for pointing that issue).
29867 * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
29868 colorbalance levels have been set before xcontext is grabbed.
29870 2004-01-22 Ronald Bultje <rbultje@ronald.bitfreak.net>
29872 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
29873 Fix the ossmixer case where we shouldn't open /dev/dsp* because
29874 it might block operations (which is bad for a mixer).
29876 2004-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
29878 * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
29879 (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
29880 (gmip_find_type_pre):
29881 * gst-libs/gst/media-info/media-info-priv.h:
29882 * gst-libs/gst/media-info/media-info.c:
29883 (gst_media_info_instance_init), (gst_media_info_read_idler):
29884 add fakesink to get caps on decoder src pad again
29885 fix callback prototype to match new have_type signal signature
29887 2004-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
29889 * gst/adder/gstadder.c: (gst_adder_link):
29890 fix non-compile and cut-n-paste code
29892 2004-01-21 David Schleef <ds@schleef.org>
29894 * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
29895 (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
29896 (gst_swfdec_init), (gst_swfdec_change_state):
29897 * ext/swfdec/gstswfdec.h:
29899 * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
29900 (gst_adder_request_new_pad): Fix negotiation.
29901 * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
29902 Add a fixate function.
29903 * gst/intfloat/gstfloat2int.c:
29904 * gst/intfloat/gstfloat2int.h:
29905 * gst/intfloat/gstint2float.c:
29906 * gst/intfloat/gstint2float.h:
29907 Completely rewrite the negotiation. Doesn't quite work yet,
29908 due to some buffer-frames problem.
29910 2004-01-21 Thomas Vander Stichele <thomas at apestaart dot org>
29912 * ext/gnomevfs/gstgnomevfssrc.c:
29913 * sys/v4l2/v4l2_calls.h:
29914 fix includes for distcheck
29916 2004-01-21 Christian Schaller <uraeus@gnome.org>
29919 Add libnas (network audio system) plugin, patch from Arwed von Merkatz
29920 based on earlier patch from Laurent Vivier
29922 2004-01-20 Jeremy Simon <jesimon@libertysurf.fr>
29924 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
29925 Fix wma caps property
29926 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
29927 Fix typo (flags1 and flags2)
29929 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
29931 * gst-libs/gst/media-info/media-info-priv.c:
29932 (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
29933 (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
29934 (gmip_find_stream), (gmip_find_track_metadata),
29935 (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
29936 (gmip_find_track_format):
29937 * gst-libs/gst/media-info/media-info-priv.h:
29938 * gst-libs/gst/media-info/media-info-test.c: (main):
29939 * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
29940 (gst_media_info_read_idler), (gst_media_info_read):
29941 * gst-libs/gst/media-info/media-info.h:
29942 register debugging category and use it for debugging
29944 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
29946 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
29947 (gst_vorbisfile_new_link):
29948 signal streaminfo through tags
29950 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
29952 * ext/mplex/gstmplex.cc:
29953 * ext/mplex/gstmplexibitstream.cc:
29954 g++ doesn't like NULL in our i18n/error macros, should be
29955 either (NULL) or ("").
29957 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
29959 * sys/dxr3/dxr3audiosink.c:
29960 * sys/dxr3/dxr3init.c:
29961 * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
29962 * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
29963 Fix more error error error errors (missing includes here).
29965 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
29967 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
29968 fix thomas' error errors.
29970 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
29972 * ext/mpeg2enc/gstmpeg2enc.cc:
29975 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
29977 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
29978 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
29979 Fix for new error system.
29981 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
29983 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
29984 fix for new error reporting
29986 2004-01-20 David Schleef <ds@schleef.org>
29988 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
29989 (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
29990 (gst_ximagesink_set_xwindow_id): Change to using a framerate
29991 of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
29992 and neither is 100+, most likely.
29993 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
29994 (gst_xvimagesink_getcaps): same
29996 2004-01-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
29999 Up version requirement to 2.0.3 (not yet released) to avoid symbol
30000 clashes with ffmpeg.
30002 2004-01-20 Julien MOUTTE <julien@moutte.net>
30004 * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
30005 (gst_switch_init): Fixed switch element : proxying link and setting
30006 caps from src to sink on request.
30008 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30010 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
30011 * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
30012 (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
30015 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30017 * sys/v4l/v4l_calls.h:
30018 * sys/v4l2/v4l2_calls.h:
30019 element_error fixes
30021 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30023 * gst-libs/gst/gst-i18n-plugin.h:
30025 remove config.h inclusion
30027 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30030 adding autopoint invocation
30033 * gst-libs/gst/gettext.h:
30034 adding gettext bits
30035 * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
30036 * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
30037 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
30038 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
30039 (gst_gnomevfssink_close_file):
30040 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
30041 * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
30042 * gst-libs/gst/gst-i18n-plugin.h:
30043 * gst/avi/gstavi.c: (plugin_init):
30044 * sys/dxr3/dxr3init.c: (plugin_init):
30045 * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
30046 * sys/oss/gstossaudio.c: (plugin_init):
30047 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
30048 * sys/v4l/gstv4l.c: (plugin_init):
30049 * sys/v4l/v4l_calls.c: (gst_v4l_open):
30050 * sys/v4l2/gstv4l2.c: (plugin_init):
30051 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
30052 (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
30053 (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
30054 (gst_v4l2_set_output), (gst_v4l2_get_frequency),
30055 (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
30056 (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
30057 make sure locale and translation domain are set
30058 fix translated strings
30064 put translation files into place
30065 * sys/xvideo/imagetest.c: (main):
30066 * ext/dv/demo-play.c: (main):
30067 fix unnecessary translations
30069 2004-01-19 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
30071 * ext/sndfile/gstsf.c:
30072 * gst/avi/gstavimux.c:
30073 * ext/audiofile/gstafsink.c:
30074 * ext/audiofile/gstafsrc.c:
30075 * ext/gnomevfs/gstgnomevfssink.c:
30076 * ext/gnomevfs/gstgnomevfssrc.c:
30077 * sys/oss/gstosselement.c:
30078 * sys/v4l/v4l_calls.h:
30081 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30083 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
30084 (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
30085 (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
30086 (gst_v4l2_get_output), (gst_v4l2_set_output),
30087 (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
30088 (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
30089 (gst_v4l2_set_attribute):
30090 update to new error handling
30092 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30094 * ext/sidplay/gstsiddec.cc:
30095 * gst/modplug/gstmodplug.cc:
30096 parenthese NULL because C++ seems angry about it
30098 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30100 * gst-libs/gst/gst-i18n-plugin.h:
30101 add skeleton i18n stuff, but needs to be further implemented
30103 2004-01-18 Thomas Vander Stichele <thomas at apestaart dot org>
30105 * examples/gstplay/player.c: (main):
30106 * ext/aalib/gstaasink.c: (gst_aasink_open):
30107 * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
30108 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
30109 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
30110 * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
30111 (gst_afsink_close_file):
30112 * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
30113 (gst_afsrc_close_file):
30114 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
30115 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
30116 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
30117 * ext/esd/esdmon.c: (gst_esdmon_get):
30118 * ext/esd/esdsink.c: (gst_esdsink_chain):
30119 * ext/faac/gstfaac.c: (gst_faac_chain):
30120 * ext/faad/gstfaad.c: (gst_faad_chain):
30121 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
30122 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
30123 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
30124 * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
30125 (gst_flacdec_loop):
30126 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
30127 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
30128 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
30129 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
30130 (gst_gnomevfssink_close_file):
30131 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
30132 (gst_gnomevfssrc_open_file):
30133 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
30134 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
30135 * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
30136 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
30137 (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
30138 * ext/mad/gstmad.c: (gst_mad_chain):
30139 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
30140 * ext/mpeg2dec/gstmpeg2dec.c:
30141 * ext/mpeg2enc/gstmpeg2enc.cc:
30142 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30143 * ext/mplex/gstmplex.cc:
30144 * ext/mplex/gstmplexibitstream.cc:
30145 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
30146 (gst_ogg_demux_push), (gst_ogg_pad_push):
30147 * ext/raw1394/gstdv1394src.c:
30148 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
30149 (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
30150 * ext/sidplay/gstsiddec.cc:
30151 * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
30153 * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
30154 * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
30155 * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
30156 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
30157 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
30158 * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
30159 * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
30160 * gst-libs/gst/Makefile.am:
30161 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
30162 (gst_riff_read_element_data), (gst_riff_read_seek),
30163 (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
30164 * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
30165 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
30166 (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
30167 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
30168 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
30169 * gst/avi/gstavimux.c: (gst_avimux_stop_file):
30170 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
30171 * gst/goom/gstgoom.c: (gst_goom_chain):
30172 * gst/id3/gstid3types.c: (gst_id3types_loop):
30173 * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
30174 * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
30175 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
30176 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
30177 (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
30178 (gst_ebml_read_float), (gst_ebml_read_header):
30179 * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
30180 (gst_matroska_demux_parse_blockgroup):
30181 * gst/modplug/gstmodplug.cc:
30182 * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
30183 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
30184 * gst/oneton/gstoneton.c: (gst_oneton_chain):
30185 * gst/silence/gstsilence.c: (gst_silence_get):
30186 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
30187 * gst/smpte/gstsmpte.c: (gst_smpte_loop):
30188 * gst/speed/gstspeed.c: (speed_loop):
30189 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
30190 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30191 * gst/volenv/gstvolenv.c: (gst_volenv_chain):
30192 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
30193 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
30194 (gst_wavparse_loop):
30195 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
30196 (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
30197 (dxr3audiosink_close):
30198 * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
30199 * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
30200 (dxr3videosink_close), (dxr3videosink_write_data):
30201 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
30202 * sys/oss/gstosselement.h:
30203 * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
30204 (gst_osssink_chain):
30205 * sys/oss/gstosssrc.c: (gst_osssrc_get):
30206 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
30207 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
30208 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
30209 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
30210 (gst_v4l_enable_overlay):
30211 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
30212 (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
30213 (gst_v4l_get_frequency), (gst_v4l_set_frequency),
30214 (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
30215 (gst_v4l_set_audio):
30216 * sys/v4l/v4l_calls.h:
30217 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
30218 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
30219 (gst_v4lmjpegsink_playback_init),
30220 (gst_v4lmjpegsink_playback_start):
30221 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
30222 (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
30223 (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
30224 (gst_v4lmjpegsrc_requeue_frame):
30225 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
30226 (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
30227 (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
30228 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
30229 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
30230 (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
30231 (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
30232 (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
30233 (gst_v4l2src_capture_stop):
30234 * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
30235 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
30236 (gst_ximagesink_chain):
30237 * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
30238 (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
30239 (gst_xvideosink_xwindow_new):
30240 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30241 (gst_xvimagesink_chain):
30242 use new error signal, function and categories
30244 2004-01-18 Jeremy Simon <jesimon@libertysurf.fr>
30248 * ext/musicbrainz/gsttrm.c:
30249 * ext/musicbrainz/gsttrm.h:
30250 * ext/musicbrainz/Makefile.am:
30253 2004-01-18 Julien MOUTTE <julien@moutte.net>
30255 * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
30256 (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
30257 synchronous property for debugging.
30258 * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
30259 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30260 (gst_xvimagesink_set_property): Moving a pointer declaration to a
30261 smaller block, fixing indent.
30263 2004-01-16 David Schleef <ds@schleef.org>
30265 * gst/videofilter/gstvideobalance.c: Fix regression; changing a
30266 property affects the video stream.
30267 * sys/xvimage/xvimagesink.c:
30268 * sys/xvimage/xvimagesink.h:
30269 Add synchronous property for debugging. Should probably be
30270 disabled in non-CVS builds. Make sure that the Xv attribute
30271 exists before we set it (crash!). Fix a silly float bug that
30272 caused colorbalance to just not work.
30274 2004-01-17 Christian Schaller <Uraeus@gnome.org>
30276 * tools/gst-launch-ext.in - update for new plugins
30278 2004-01-16 David Schleef <ds@schleef.org>
30280 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
30281 already-freed caps.
30283 2994-01-16 Christian Schaller <Uraeus@gnome.org>
30285 * Update spec for new colorspace plugin and libcaca plugin
30286 * Fix compilation of libcaca plugin (clock -> id)
30288 2004-01-16 Julien MOUTTE <julien@moutte.net>
30290 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
30291 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
30292 (gst_xvimagesink_set_xwindow_id),
30293 (gst_xvimagesink_colorbalance_set_value),
30294 (gst_xvimagesink_colorbalance_get_value),
30295 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
30296 (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
30297 correct colorbalance properties. They can now be set when the element
30298 is still in NULL state. The values will be committed to the Xv Port
30299 when xcontext is initialized.
30300 * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
30301 brightness int values in the GstXvImagesink structure.
30303 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
30305 * gst-libs/gst/Makefile.am:
30306 restructure so having local patches works easier.
30308 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
30310 * ext/mpeg2enc/Makefile.am:
30311 * ext/mpeg2enc/gstmpeg2enc.cc:
30312 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30313 Bugfix with respect to EOS handling.
30315 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
30317 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
30318 Link with right caps (else, it segfaults).
30319 * ext/mplex/gstmplexjob.cc:
30320 Fix for slight API change in 1.6.1.93 release of mjpegtools.
30322 2004-01-15 David Schleef <ds@schleef.org>
30324 * gst-libs/gst/audio/Makefile.am:
30325 Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
30327 * gst-libs/gst/audio/gstaudiofilter.c:
30328 * gst-libs/gst/audio/gstaudiofilter.h:
30329 Add bytes_per_sample and size and n_samples calculation.
30330 * gst-libs/gst/audio/gstaudiofilterexample.c:
30331 Remove, now autogenerated.
30332 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
30333 Moved from gstaudiofilterexample, object name changed, code added
30334 so that it actually works.
30335 * gst-libs/gst/audio/make_filter:
30336 Script to build an audiofilter subclass from the template.
30337 * gst/colorspace/Makefile.am:
30338 * gst/colorspace/yuv2yuv.c:
30339 Remove file, since it's GPL, and we don't use it.
30341 2004-01-15 Julien MOUTTE <julien@moutte.net>
30343 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30344 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
30345 them use the buffer free function to test how the buffer was allocated.
30347 2004-01-15 David Schleef <ds@schleef.org>
30349 * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
30350 that handles osssink fallback.
30351 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
30352 (gst_audio_convert_getcaps):
30353 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
30354 Add audio/x-qdm2 for QDM2 audio.
30355 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
30356 * gst/sine/gstsinesrc.h: Add example of how to implement tags.
30357 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
30358 Decrease minimum size to 16x16.
30359 * gst/wavparse/gstwavparse.c:
30360 Convert disabled pad template caps to new caps.
30361 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
30362 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30363 (gst_xvimagesink_chain): Throw element error when display cannot
30364 be opened. Increase minimum framerate to 1.0. Check the data
30365 free function on a buffer to make sure it is the type we expect
30366 before manipulating it.
30368 2004-01-15 Julien MOUTTE <julien@moutte.net>
30370 * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
30371 (gst_videobalance_colorbalance_set_value): Implement passthru if
30372 settings are in the middle.
30373 * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
30375 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30377 * gst/videofilter/Makefile.am:
30378 * gst/volume/Makefile.am:
30379 Since we use videofilter symbols, link to it.
30381 2004-01-15 Julien MOUTTE <julien@moutte.net>
30383 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
30384 mixer interface type to HARDWARE.
30385 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
30387 * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
30388 * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
30389 * gst/volume/gstvolume.c: (gst_volume_interface_supported),
30390 (gst_volume_interface_init), (gst_volume_list_tracks),
30391 (gst_volume_set_volume), (gst_volume_get_volume),
30392 (gst_volume_set_mute), (gst_volume_mixer_init),
30393 (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
30394 (volume_init): Implementing mixer interface.
30395 * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
30396 * sys/oss/gstosselement.c: (gst_osselement_get_type),
30397 (gst_osselement_change_state): Removing some trailing commas in
30399 * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
30400 interface type to HARDWARE.
30401 * sys/v4l/gstv4lcolorbalance.c:
30402 (gst_v4l_color_balance_interface_init): Setting colorbalance interface
30404 * sys/v4l2/gstv4l2colorbalance.c:
30405 (gst_v4l2_color_balance_interface_init): Setting colorbalance
30406 interface type to HARDWARE.
30407 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
30408 same code than ximagesink for event handling.
30410 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30412 * ext/snapshot/Makefile.am:
30413 * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
30414 (gst_snapshot_chain):
30415 * ext/snapshot/gstsnapshot.h:
30416 This has to be a joke... Snapshot should be connected to a tee,
30417 colorspace element before it and EOS after that, where the other
30418 src of the tee receives normal data.
30419 The current way is *wrong*.
30421 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30423 * ext/hermes/gsthermescolorspace.c:
30424 Fix another compile error. Same as below.
30426 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30428 * gst/colorspace/gstcolorspace.c:
30429 * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
30430 (gst_colorspace_i420_to_yv12):
30431 Fix compiling... Didn't test if it actually works.
30433 2004-01-15 David Schleef <ds@schleef.org>
30436 * gst/colorspace/Makefile.am:
30437 * gst/colorspace/gstcolorspace.c:
30438 * gst/colorspace/gstcolorspace.h:
30439 * gst/colorspace/yuv2rgb.c:
30440 * gst/colorspace/yuv2rgb.h:
30441 Duplicate the ext/hermes colorspace plugin, and remove Hermes
30442 code and GPL code. Fix for new caps negotiation. Rewrite
30443 much of the format handling code, and some of the conversion
30444 code. Basically, rewrote almost everything. This element
30445 handles I420, YV12 to RGB conversions.
30446 * ext/hermes/Makefile.am:
30447 * ext/hermes/gsthermescolorspace.c:
30448 Rename colorspace to hermescolorspace. Fix negotiation issues.
30449 Remove non-Hermes related code. This element handles lots of
30450 RGB to RGB conversions, but no YUV.
30451 * ext/hermes/gstcolorspace.c:
30452 * ext/hermes/gstcolorspace.h:
30453 * ext/hermes/rgb2yuv.c:
30454 * ext/hermes/yuv2rgb.c:
30455 * ext/hermes/yuv2rgb.h:
30456 * ext/hermes/yuv2rgb_mmx16.s:
30457 * ext/hermes/yuv2yuv.c:
30458 * ext/hermes/yuv2yuv.h:
30461 2004-01-14 Colin Walters <walters@verbum.org>
30463 * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
30464 they've already been.
30466 2004-01-15 Benjamin Otte <in7y118@public.uni-hamburg.de>
30468 * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
30469 assume tag mode when pad is not connected
30471 2004-01-15 Benjamin Otte <in7y118@public.uni-hamburg.de>
30473 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30474 Don't update the time of the clock
30475 (gst_alsa_sink_loop):
30476 sync to the clock given to alsasink, not the own clock
30477 * sys/oss/gstosssink.c: (gst_osssink_chain):
30479 (gst_osssink_change_state):
30481 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30482 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
30483 remove bogus code that made DISCONT events unhandled
30484 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
30485 explicitly case to double in _set_simple. (fixes 2nd warning in bug
30487 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
30488 (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
30489 (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
30490 convert g_warning because of wrong asf data to GST_WARNINGs (fixes
30491 2nd warning in bug #131502)
30493 2004-01-14 Julien MOUTTE <julien@moutte.net>
30495 * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
30496 (gst_videobalance_colorbalance_set_value),
30497 (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
30498 for colorbalance interface implementation.
30499 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
30500 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
30501 (gst_ximagesink_dispose), (gst_ximagesink_init),
30502 (gst_ximagesink_class_init): Adding DISPLAY property.
30503 * sys/ximage/ximagesink.h: Adding display_name to store display.
30504 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30505 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
30506 (gst_xvimagesink_dispose), (gst_xvimagesink_init),
30507 (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
30508 properties (they still need polishing though for gst-launch use : no
30509 xcontext yet, i ll do that tomorrow).
30510 * sys/xvimage/xvimagesink.h: Adding display_name to store display.
30512 2004-01-14 Julien MOUTTE <julien@moutte.net>
30514 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
30515 (gst_play_set_location), (gst_play_set_visualization): Preparing
30516 switch integration, adding videobalance in the pipeline.
30518 2004-01-14 Julien MOUTTE <julien@moutte.net>
30520 * gst-libs/gst/colorbalance/colorbalance.c:
30521 (gst_color_balance_class_init): Adding a default type.
30522 * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
30524 * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
30525 (gst_videobalance_dispose), (gst_videobalance_class_init),
30526 (gst_videobalance_init), (gst_videobalance_interface_supported),
30527 (gst_videobalance_interface_init),
30528 (gst_videobalance_colorbalance_list_channels),
30529 (gst_videobalance_colorbalance_set_value),
30530 (gst_videobalance_colorbalance_get_value),
30531 (gst_videobalance_colorbalance_init): Implementing colorbalance
30533 * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
30535 * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
30536 bug which was triggering a BadAccess X error when setting an overlay
30537 before pad was really negotiated.
30538 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
30539 Using the colorbalance type macro.
30541 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30543 * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
30544 (gst_flacenc_chain):
30545 handle tags correctly
30546 * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
30547 extract ID3v1 tags correctly
30549 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
30551 * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
30553 Improve matroska typefinding for odd-typed headers...
30555 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
30557 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
30558 Fix for using incremental number on padnames.
30560 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
30562 * ext/divx/gstdivxdec.c:
30563 * ext/divx/gstdivxenc.c:
30564 Set category to divx4linux instead of divx (too generic).
30565 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
30566 (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
30567 (gst_wavparse_loop), (gst_wavparse_change_state):
30568 * gst/wavparse/gstwavparse.h:
30569 fix parsing of WAV files with non-standard fmt-tag size and fix
30570 skipping of unrecognized chunks... Someone please fix this thing
30571 to use rifflib so all this is automated.
30572 * sys/v4l/Makefile.am:
30573 * sys/v4l2/Makefile.am:
30574 Add X_CFLAGS because we depend on X (for overlay).
30576 2004-01-14 Jan Schmidt <thaytan@mad.scientist.com>
30578 * ext/mpeg2dec/gstmpeg2dec.c:
30579 Don't issue a timestamp unless we tagged the frame
30582 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30584 * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
30585 Query the audio element to get the time, not the clock. We're
30586 interested in the element's time here.
30588 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30590 * ext/aalib/gstaasink.c: (gst_aasink_chain):
30591 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30592 * ext/esd/esdsink.c: (gst_esdsink_chain):
30593 * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
30594 * ext/mas/massink.c: (gst_massink_chain):
30595 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
30596 * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
30597 (gst_matroska_demux_parse_metadata):
30598 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
30599 (gst_mpeg_parse_release_locks):
30600 * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
30601 * gst/udp/gstudpsink.c: (gst_udpsink_chain):
30602 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30603 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
30604 (gst_osssink_change_state):
30605 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
30606 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30607 * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
30608 (gst_xvideosink_release_locks):
30609 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
30611 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
30612 (gst_alsa_clock_stop):
30613 * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
30614 (gst_audio_clock_get_internal_time):
30615 simplify for use with new clocking code.
30616 * testsuite/alsa/Makefile.am:
30617 * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
30618 fix testsuite for new caps system
30620 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30622 * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
30623 * ext/flac/gstflacenc.c: (add_one_tag):
30624 length is already host endian, no need to convert. Fixes playback of
30625 tagged files on PPC. (bug #128384)
30627 2004-01-13 Julien MOUTTE <julien@moutte.net>
30629 * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
30630 colorbalance interface stating if it is hardware based or software
30632 * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
30633 Removing a trailing comma.
30634 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30635 (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
30636 Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
30637 the documentation seems to be wrong on the -1000 to 1000 interval.
30639 2004-01-12 David Schleef <ds@schleef.org>
30641 * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
30642 (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
30643 (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
30644 Fix negotiation. Add a bufferalloc function for the sink pad,
30645 and generally clean up some of the code.
30647 2004-01-12 Julien MOUTTE <julien@moutte.net>
30649 * gst-libs/gst/colorbalance/colorbalancechannel.c:
30650 (gst_color_balance_channel_dispose): Adding safety check in dispose
30652 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30653 (gst_xvimagesink_xcontext_clear),
30654 (gst_xvimagesink_interface_supported),
30655 (gst_xvimagesink_colorbalance_list_channels),
30656 (gst_xvimagesink_colorbalance_set_value),
30657 (gst_xvimagesink_colorbalance_get_value),
30658 (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
30659 Adding colorbalance interface support to set XV parameters such as
30660 HUE, BRIGHTNESS, CONTRAST, SATURATION.
30661 * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
30664 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
30666 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
30667 (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
30668 (gst_audio_convert_init), (gst_audio_convert_set_property),
30669 (gst_audio_convert_get_property), (gst_audio_convert_chain),
30670 (gst_audio_convert_link),
30671 (gst_audio_convert_buffer_to_default_format),
30672 (gst_audio_convert_buffer_from_default_format), (plugin_init):
30673 - implement _getcaps and use it
30675 - remove float caps since no float conversion is actually done
30676 - remove properties and arguments that were to be used for rate
30679 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
30681 * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
30682 (gst_audio_structure_set_int):
30683 * gst-libs/gst/audio/audio.h:
30684 add helper functions for _getcaps matching the standard audio
30687 2004-01-12 David Schleef <ds@schleef.org>
30689 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
30690 Test that pad is negotiated before getting its caps.
30692 2004-01-12 Julien MOUTTE <julien@moutte.net>
30694 * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
30695 analyzing the pads of an element the bin is mostly in READY state so
30696 no caps were negotiated. This helper function needs to work with
30697 _get_caps directly then. I was not freeing them though, added that to
30700 2004-01-12 Julien MOUTTE <julien@moutte.net>
30702 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30703 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
30704 direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
30705 than the free_func.
30707 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
30709 * sys/oss/gstossaudio.c: (plugin_init):
30710 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
30711 * sys/oss/gstosselement.h:
30712 make an oss debugging category
30713 make failure more descriptive
30715 2004-01-11 David Schleef <ds@schleef.org>
30717 * ext/ffmpeg/gstffmpeg.c:
30718 * ext/ffmpeg/gstffmpegcodecmap.c:
30719 * ext/ffmpeg/gstffmpegdec.c:
30720 * ext/ffmpeg/gstffmpegenc.c:
30721 * ext/ffmpeg/gstffmpegprotocol.c:
30722 * ext/gdk_pixbuf/gstgdkanimation.c:
30723 * ext/jpeg/gstjpeg.c:
30724 * ext/libpng/gstpng.c:
30725 * ext/mpeg2dec/perftest.c:
30726 * ext/speex/gstspeex.c:
30727 * gst-libs/gst/resample/dtos.c:
30728 * gst/intfloat/gstintfloatconvert.c:
30729 * gst/oneton/gstoneton.c:
30730 * gst/rtjpeg/RTjpeg.c:
30731 * gst/rtp/gstrtp.c:
30732 * sys/dxr3/dxr3init.c:
30733 * sys/glsink/gstgl_nvimage.c:
30734 * sys/glsink/gstgl_pdrimage.c:
30735 * sys/glsink/gstglsink.c:
30736 * testsuite/gst-lint:
30737 Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
30739 2004-01-11 David Schleef <ds@schleef.org>
30741 * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
30742 * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
30743 * ext/gdk_pixbuf/gstgdkanimation.c:
30744 (gst_gdk_animation_iter_create_pixbuf):
30745 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30746 (gst_gdk_pixbuf_chain):
30747 * ext/gdk_pixbuf/gstgdkpixbuf.h:
30748 * ext/jack/gstjack.c: (gst_jack_change_state):
30749 * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
30750 * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
30751 * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
30752 * gst/videofilter/gstvideofilter.c:
30753 (gst_videofilter_set_output_size):
30754 Remove all usage of gst_pad_get_caps(), and replace it with
30755 gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
30757 2004-01-11 David Schleef <ds@schleef.org>
30760 * ext/Makefile.am: Fixes to make ext/libcaca compile.
30761 * ext/divx/gstdivxdec.c:
30762 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30763 (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
30764 handle images that span multiple buffers. Now work with both
30765 filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
30766 * ext/gdk_pixbuf/gstgdkpixbuf.h:
30767 * ext/libcaca/gstcacasink.h: Fixes needed due to recent
30768 video/video.h changes
30769 * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
30770 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30771 (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
30772 of GstData free function.
30773 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30776 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
30778 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
30779 (gst_v4l2element_dispose), (gst_v4l2element_set_property),
30780 (gst_v4l2element_get_property):
30781 * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
30782 add norm, channel and frequency properties.
30783 * sys/v4l2/gstv4l2tuner.c:
30784 fixes for tuner interface changes
30785 * sys/v4l2/gstv4l2element.h:
30786 * sys/v4l2/gstv4l2src.c:
30787 * sys/v4l2/gstv4l2src.h:
30788 * sys/v4l2/v4l2src_calls.c:
30789 * sys/v4l2/v4l2src_calls.h:
30790 rework v4l2src to work with saa1734 cards and allow mmaped buffers.
30792 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
30794 * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
30795 (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
30796 (gst_tuner_channel_changed), (gst_tuner_norm_changed),
30797 (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
30798 * gst-libs/gst/tuner/tuner.h:
30799 GObjects aren't const.
30800 Add find_by_name functions.
30801 Add checks to _changed functions.
30802 * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
30803 (gst_v4l_tuner_get_norm):
30806 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
30808 * gst-libs/gst/video/video.h:
30809 Fix caps template names to be understandable.
30810 Prefix everything with GST_VIDEO.
30811 * ext/aalib/gstaasink.c:
30812 * ext/divx/gstdivxdec.c:
30813 * ext/divx/gstdivxenc.c:
30814 * ext/gdk_pixbuf/gstgdkpixbuf.c:
30815 * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
30816 * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
30817 * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
30818 * ext/libcaca/gstcacasink.c:
30819 * ext/libpng/gstpngenc.c: (raw_caps_factory):
30820 * ext/snapshot/gstsnapshot.c:
30821 * ext/swfdec/gstswfdec.c:
30822 * ext/xvid/gstxviddec.c:
30823 * ext/xvid/gstxvidenc.c:
30824 * gst/chart/gstchart.c:
30825 * gst/deinterlace/gstdeinterlace.c:
30826 * gst/effectv/gsteffectv.c:
30827 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
30828 * gst/goom/gstgoom.c:
30829 * gst/median/gstmedian.c:
30830 * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
30831 (gst_monoscope_srcconnect), (gst_monoscope_chain):
30832 * gst/overlay/gstoverlay.c:
30833 * gst/smooth/gstsmooth.c:
30834 * gst/smpte/gstsmpte.c:
30835 * gst/synaesthesia/gstsynaesthesia.c:
30836 * gst/videocrop/gstvideocrop.c:
30837 * gst/videodrop/gstvideodrop.c:
30838 * gst/y4m/gsty4mencode.c:
30839 * sys/qcam/gstqcamsrc.c:
30840 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
30841 Make them work with new video.h file.
30842 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30843 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
30844 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30845 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
30846 Make it work with new buffer allocation system.
30848 2004-01-11 Julien MOUTTE <julien@moutte.net>
30850 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
30851 pad_alloc_buffer implementation to use ->srcpad
30852 * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
30853 pad_alloc_buffer implementation to use ->srcpad
30854 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Fixing the
30855 pad_alloc_buffer implementation to use ->srcpad
30856 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
30857 (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
30858 (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
30859 a reference to everything we need.
30860 * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
30861 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
30862 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
30863 (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
30864 a reference to everything we need.
30865 * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
30867 2004-01-11 David Schleef <ds@schleef.org>
30869 * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
30870 * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
30871 (gst_fenced_buffer_default_copy): Fix for rename of buffer private
30873 * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
30874 value during a resize/renegotiation.
30875 * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
30876 gst_pad_alloc_buffer();
30877 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30878 (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
30880 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30881 Fix for rename of buffer private structure members.
30882 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30883 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
30884 Fix for rename of buffer private structure members.
30885 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30886 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
30887 Fix for rename of buffer private structure members.
30889 2004-01-11 Arwed v. Merkatz <v.merkatz@gmx.net>
30891 reviewed by: David Schleef <ds@schleef.org>
30893 * gst/videofilter/Makefile.am:
30894 * gst/videofilter/gstgamma.c: Gamma correction filter. Modified
30895 from the patch by ds to fit in with recent make_filter changes.
30897 2004-01-11 Julien MOUTTE <julien@moutte.net>
30899 * configure.ac: Adding examples/switch/Makefile
30900 * examples/Makefile.am: Adding examples/switch
30901 * examples/switch/Makefile.am: Adding switcher example.
30902 * examples/switch/switcher.c: (got_eos), (idle_iterate),
30903 (switch_timer), (main): Adding an example demonstrating switch usage
30904 with 2 videotestsrc showing different patterns.
30905 * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
30906 (gst_switch_init): Fixing switch with the new caps system.
30908 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
30910 * gst-libs/gst/video/video.h:
30911 Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
30912 They should probably be like
30913 GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
30915 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
30917 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
30918 (qtdemux_parse_trak):
30919 fix audio chunk size/timestamp calculation
30921 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
30923 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
30926 2004-01-11 Steve Baker <steve@stevebaker.org>
30928 * gst/effectv/gstaging.c: (gst_agingtv_get_type),
30929 (gst_agingtv_base_init), (gst_agingtv_class_init),
30930 (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
30931 (gst_agingtv_set_property), (gst_agingtv_get_property):
30932 Port agingTV to videofilter
30934 2004-01-09 Julien MOUTTE <julien@moutte.net>
30936 * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
30937 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30939 2004-01-09 Julien MOUTTE <julien@moutte.net>
30941 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
30942 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30943 * gst-libs/gst/xoverlay/xoverlay.c:
30944 (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
30945 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
30946 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30947 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30948 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30949 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30950 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
30951 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
30952 the bufferalloc_function to replace bufferpools, fixing the XOverlay
30953 interface implementation to handle xid being 0 and fix some bugs
30954 triggered by Benjamin's testcase.
30955 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30956 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
30957 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
30958 the bufferalloc_function to replace bufferpools, fixing the XOverlay
30959 interface implementation to handle xid being 0 and fix some bugs
30960 triggered by Benjamin's testcase.
30962 2004-01-09 David Schleef <ds@schleef.org>
30964 * ext/librfb/gstrfbsrc.c: Hacking. Added actual decoding and
30965 mouse pointer events. It works.
30967 2004-01-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
30969 * ext/divx/gstdivxenc.c: (gst_divxenc_init):
30970 Use explicit caps - fix capsnego.
30971 * ext/xvid/gstxviddec.c:
30972 * ext/xvid/gstxvidenc.c:
30973 Remove macro-inside-macro which caused compile errors.
30974 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
30975 Error out if it's not a RIFF file. Else we error out without
30976 gst_element_error() which is not good...
30978 2004-01-08 David Schleef <ds@schleef.org>
30980 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
30981 Fix pad_link function to handle formats that ffmpeg returns
30982 as multiple caps structures.
30983 * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
30984 Only complain if source buffer is _smaller_ than expected.
30985 * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
30986 (gst_videoscale_handle_src_event): Resize navigation events
30987 when passing them upstream.
30988 * gst/videotestsrc/gstvideotestsrc.c:
30989 * gst/videotestsrc/gstvideotestsrc.h:
30990 * gst/videotestsrc/videotestsrc.c:
30991 * gst/videotestsrc/videotestsrc.h:
30992 Rewrite many of the buffer painting functions to handle odd
30993 sizes (for many formats, size%4!=0 or size%8!=0). Most have
30994 been verified to work with my video card.
30995 * testsuite/gst-lint: Add check for elements calling
30996 gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
30998 2004-01-08 David Schleef <ds@schleef.org>
31000 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
31001 (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
31003 2004-01-08 Julien MOUTTE <julien@moutte.net>
31005 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
31006 configure event is not emiting the desired size signal. That fixes
31007 aspect ratio issues with gst-player.
31009 2004-01-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
31011 * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
31014 2004-01-08 Julien MOUTTE <julien@moutte.net>
31016 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
31017 public method to fire size signal.
31019 2004-01-07 Julien MOUTTE <julien@moutte.net>
31021 * examples/gstplay/Makefile.am: Adding the interface library.
31022 * gst-libs/gst/play/Makefile.am: Adding the interface library.
31023 * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to the XOverlay size signal instead of GstVideoSink.
31024 * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
31025 GST_IS_X_OVERLAY before signal connect.
31026 * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
31027 Removing the have_video_size signal.
31028 * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
31029 and associated public method.
31030 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
31031 (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
31033 * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
31034 (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
31036 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
31037 Using XOverlay public method to fire size signal.
31039 2004-01-07 David Schleef <ds@schleef.org>
31041 * gst/videofilter/Makefile.am:
31042 * gst/videofilter/gstvideotemplate.c:
31043 * gst/videofilter/make_filter:
31044 Create gstvideoexample.c in a srcdir!=builddir friendly way.
31045 Convert make_filter to /bin/sh script.
31047 2004-01-07 Thomas Vander Stichele <thomas at apestaart dot org>
31049 * gst/modplug/gstmodplug.cc: fix element description
31051 2004-01-07 Julien MOUTTE <julien@moutte.net>
31053 * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
31054 (got_video_size): Adding some new lines in g_print calls.
31055 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
31056 (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
31057 (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
31058 (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
31059 (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
31060 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
31061 Complete code review, reverting some stuff i disagree with, adding
31062 some fixes : time synchronization on invalid timestamps, renegotiation
31064 * sys/ximage/ximagesink.h:
31065 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
31066 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
31067 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
31068 (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
31069 (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
31070 (gst_xvimagesink_buffer_new),
31071 (gst_xvimagesink_navigation_send_event),
31072 (gst_xvimagesink_set_xwindow_id),
31073 (gst_xvimagesink_get_desired_size),
31074 (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
31075 stuff i disagree with, adding some fixes : Renegotiation of private
31076 window, implementing get_desired_size.
31078 2004-01-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
31080 * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
31081 (gst_afsink_handle_event):
31082 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
31083 * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
31084 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
31085 * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
31086 * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
31087 Fix for instantiate-test (see core). Also remove dead code from
31088 jpegenc (which still needs fixing, but that's lower on my TODO
31090 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
31091 Never return NULL as caps.
31093 2004-01-07 David Schleef <ds@schleef.org>
31097 * ext/librfb/Makefile.am:
31098 * ext/librfb/gstrfbsrc.c:
31099 New source plugin based on librfb-0.1. RFB (remote framebuffer)
31100 is the protocol used by VNC.
31102 2004-01-07 David Schleef <ds@schleef.org>
31104 * gst/videofilter/gstvideotemplate.c:
31105 * gst/videofilter/gstvideotemplate.h:
31106 * gst/videofilter/make_filter:
31107 Merge videotemplate header into source file.
31108 * gst/effectv/Makefile.am:
31109 * gst/effectv/gsteffectv.c: (plugin_init):
31110 * gst/effectv/gstwarp.c:
31111 Make warpTV a subclass of videofilter.
31113 2004-01-07 Benjamin Otte <in7y118@public.uni-hamburg.de>
31115 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
31116 Add guard against invalid utf-8 conversions in mad. Just in case.
31118 2004-01-07 Benjamin Otte <in7y118@public.uni-hamburg.de>
31120 * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
31121 Fix for bug shown by poisoning
31123 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
31125 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
31126 (gst_v4lmjpegsrc_buffer_free):
31127 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
31128 (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
31129 (gst_v4lsrc_buffer_free):
31130 Fix for removed bufferpools.
31132 2004-01-07 Jan Schmidt <thaytan@mad.scientist.com>
31134 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
31135 Fix caps negotiation.
31137 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
31138 (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
31139 (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
31141 * ext/mpeg2dec/gstmpeg2dec.c:
31142 * gst-libs/gst/navigation/navigation.c:
31143 (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
31144 * gst-libs/gst/navigation/navigation.h:
31145 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
31146 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
31147 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
31148 Super-simple first version of mouse and keyboard events. Clicking
31149 on a DVD menu now works, although it may not take you where you
31152 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
31153 * gst/videotestsrc/gstvideotestsrc.c:
31154 (gst_videotestsrc_src_fixate):
31155 These fixate functions were broken - they never actually
31158 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
31160 * ext/shout/gstshout.c: (gst_icecastsend_base_init),
31161 (gst_icecastsend_init):
31162 fix for new caps system.
31163 * gst-libs/gst/mixer/mixertrack.h:
31164 * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
31165 Add 'master track' flag (for tools like ACME that only want to
31166 change the main volume).
31168 2004-01-07 Jan Schmidt <thaytan@mad.scientist.com>
31170 * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
31171 (gst_xvid_csp_to_caps):
31172 * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
31173 * ext/xvid/gstxvidenc.c:
31174 ifdef out ARGB type when it isn't available
31175 in xvidcore 1.0.0beta2
31177 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
31179 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
31180 When we have received a new SCR right in the first buffer after
31181 a seek (so in the same cycle that handles the discont), we should
31182 handle the buffer instead of unreffing it, else we lose data.
31184 2004-01-06 Iain <iain@prettypeople.org>
31186 * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
31187 buffer-frames caps too.
31189 * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
31190 caps that we need, don't destroy them all and rebuild them. And when
31191 creating src pads, use the src pad template rather than the sink...
31193 2004-01-05 Ronald Bultje <rbultje@ronald.bitfreak.net>
31195 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
31196 Add pad to element *after* setting functions such as event handler.
31197 Without this, the scheduler (opt) will link pads, set the event
31198 handler from the default event function (dispatcher in gstpad.c)
31199 and *after* that, we will set our own event function, which will
31200 thus never be used (and thus mpegdemux doesn't handle events).
31202 2004-01-04 David Schleef <ds@schleef.org>
31204 Fix the fixate functions to handle new prototype:
31205 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
31206 * gst/videotestsrc/gstvideotestsrc.c:
31207 (gst_videotestsrc_src_fixate):
31208 * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
31209 * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
31210 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
31212 2004-01-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
31214 * sys/ximage/ximagesink.h:
31215 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
31216 (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
31217 (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
31218 (gst_ximagesink_xoverlay_init):
31219 assorted fixes to make (re)embedding work
31220 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
31221 (gst_ximagesink_get_desired_size):
31222 implement desired size additions to XOverlay
31224 2004-01-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
31226 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
31227 (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
31228 (gst_x_overlay_got_desired_size):
31229 * gst-libs/gst/xoverlay/xoverlay.h:
31230 Add optional "desired size" signal and querying.
31232 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31234 * gst/matroska/matroska-demux.c:
31235 (gst_matroska_demux_parse_blockgroup):
31236 Fix EBML-laced block parsing. Diffs are relative to previous
31237 lace, not the first lace. Thanks to Mosu from the Matroska
31238 team for detecting this.
31239 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
31240 (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
31241 (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
31242 (gst_wavparse_change_state):
31243 * gst/wavparse/gstwavparse.h:
31244 Quickfix for capsnego.
31246 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31248 * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
31249 Fix indenting, fix pad creation.
31251 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31253 * ext/xvid/gstxviddec.c: (gst_xviddec_init),
31254 (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
31255 (gst_xviddec_sink_link):
31256 Implement src_getcaps() so proper size caps is negotiated.
31258 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31260 * ext/flac/gstflacdec.c: (gst_flacdec_loop):
31261 Finish flac decoder on EOS. See #116178.
31263 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31265 * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
31266 (gst_matroska_demux_add_stream):
31267 * gst/matroska/matroska-ids.h:
31268 Add getcaps() function to fix capsnego...
31270 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31272 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
31273 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
31274 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
31275 Fix more integer overflows. Again, see #126967.
31277 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31279 * ext/mpeg2dec/gstmpeg2dec.c:
31280 Add support for mpeg2dec-0.4.0 (released two weeks ago). See
31283 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31286 * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
31287 (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
31288 * ext/xvid/gstxvid.h:
31289 * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
31290 (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
31291 (gst_xviddec_src_link), (gst_xviddec_sink_link),
31292 (gst_xviddec_change_state):
31293 * ext/xvid/gstxviddec.h:
31294 * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
31295 (gst_xvidenc_base_init), (gst_xvidenc_class_init),
31296 (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
31297 (gst_xvidenc_link), (gst_xvidenc_set_property),
31298 (gst_xvidenc_get_property), (gst_xvidenc_change_state):
31299 * ext/xvid/gstxvidenc.h:
31300 Update xvid plugin to latest xvid (1.0.0-beta3) API.
31302 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31304 * gst/rtp/rtp-packet.c:
31305 Add sys/types.h include, since OS X doesn't define in_addr_t
31306 in netinet/in.h, like it does on Linux (see #129600).
31308 2004-01-03 Thomas Canty <tommydal@optushome.com.au>
31310 reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net>
31312 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
31313 Correct logic of dispose function (see #129306).
31315 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31317 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
31318 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
31319 (gst_mpeg_parse_init):
31320 * gst/mpegstream/gstmpegparse.h:
31321 Remove clock (which was never provided, i.e. dead code), and
31322 also fix integer overflows at high PTS values (see #126967).
31324 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31326 * ext/flac/gstflacdec.c:
31327 * ext/libpng/gstpngenc.h:
31328 * ext/mikmod/gstmikmod.h:
31329 OS X fixes (see #126628).
31331 2004-01-02 David Schleef <ds@schleef.org>
31333 * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
31334 (gst_alsa_src_base_init): Remove bogus "src" request pad.
31335 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
31336 (gst_mpeg_parse_class_init): Move pad template registration
31337 to class_init, since the derived class (mpegdemux) doesn't
31340 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31342 * sys/ximage/Makefile.am:
31343 * sys/xvideo/Makefile.am:
31344 * sys/xvimage/Makefile.am:
31345 Move interface libs from LDFLAGS to LIBADD, fix relocation errors
31346 after installation (see #127664).
31348 2004-01-02 David Schleef <ds@schleef.org>
31350 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
31351 (gst_ffmpegenc_connect): Negotiation fixes.
31352 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
31353 Remove inappropriate gst_caps_free().
31354 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31355 Reenable Ronald's internal resize code, since the core handles
31358 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31360 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
31361 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
31362 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
31363 Fix pad template stuff.
31365 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31367 * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
31368 * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
31369 fix signed integer reading/writing.
31371 2004-01-02 Benjamin Otte <in7y118@public.uni-hamburg.de>
31374 Remove outdated document
31376 2004-01-03 Jan Schmidt <thaytan@mad.scientist.com>
31378 * gst/cutter/gstcutter.c: (gst_cutter_init):
31379 src pad was being created twice - oops.
31381 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31383 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31384 Comment out internal resize. It doesn't handle the resulting
31385 XEvent internally, does another try_set_caps() which leads to
31386 a really nice loop.
31387 Real fix will come when Julien and Dave are awake. ;).
31389 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31391 * ext/mpeg2enc/gstmpeg2enc.cc:
31392 fix const/nonconst compile issue.
31394 2004-01-02 David Schleef <ds@schleef.org>
31396 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
31397 (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
31398 Add fixate function and a check for bad formats.
31400 2004-01-01 David Schleef <ds@schleef.org>
31403 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
31404 (gst_audiofilter_init):
31405 * gst/debug/efence.c: (gst_efence_init):
31406 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
31407 (gst_deinterlace_init):
31408 * gst/volume/gstvolume.c: (volume_connect):
31410 2004-01-01 David Schleef <ds@schleef.org>
31412 Convert elements to use gst_pad_use_explicit_caps() where
31414 * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
31415 * ext/audiofile/gstafparse.c: (gst_afparse_init),
31416 (gst_afparse_open_file):
31417 * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
31418 (gst_afsrc_open_file):
31419 * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
31420 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
31421 (gst_ffmpegdec_chain):
31422 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
31423 * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
31424 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
31425 (gst_gdk_pixbuf_chain):
31426 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
31427 (gst_jpegdec_chain):
31428 * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
31429 * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
31430 (gst_mikmod_negotiate):
31431 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
31432 (gst_mpeg2dec_negotiate_format):
31433 * ext/mpeg2enc/gstmpeg2enc.cc:
31434 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
31435 * ext/speex/gstspeexdec.c: (gst_speexdec_init),
31436 (gst_speexdec_sinkconnect):
31437 * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
31438 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
31439 (gst_vorbisfile_new_link):
31440 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
31441 (gst_ac3parse_chain):
31442 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
31443 (gst_asf_demux_setup_pad):
31444 * gst/auparse/gstauparse.c: (gst_auparse_init),
31445 (gst_auparse_chain):
31446 * gst/id3/gstid3types.c: (gst_id3types_loop):
31447 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
31448 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
31449 (mp1videoparse_parse_seq):
31450 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
31452 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
31453 (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
31454 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
31455 (gst_mpeg_parse_send_data):
31456 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
31457 (gst_qtdemux_add_stream):
31458 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
31459 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
31460 (gst_wavparse_parse_fmt):
31462 2004-01-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
31465 Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
31466 1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
31467 it therefore uses the wrong include paths. Too bad... Note
31468 that 1.6.1.93 is not release yet. ;).
31469 Also add a check for mplex, which is now using the lib'ified
31470 mplex from mjpegtools, too.
31471 * ext/ffmpeg/gstffmpegcodecmap.c:
31472 Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
31473 issues. I don't think ffmpeg handles 3ivx correctly, so this
31474 probably won't work. But it won't hurt either.
31475 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
31476 (gst_ffmpegdec_chain):
31477 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
31478 (gst_ffmpegenc_chain_audio):
31479 Fix memleak in audio encoding. Close codec if open fails, this
31480 calls the cleanup routines so we can re-use the context.
31481 * ext/mpeg2enc/gstmpeg2enc.cc:
31482 Fix pad template names/types, fix memory issue with getcaps().
31483 * ext/mpeg2enc/gstmpeg2encoder.cc:
31484 * ext/mpeg2enc/gstmpeg2encoder.hh:
31485 Fix compile issue with new caps system (const thingy).
31486 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
31487 * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
31488 We read a first frame right on initing, so that we have a caps
31489 when we init the output. This caps is cached in padprivate and
31490 read as first frame.
31491 * ext/mplex/Makefile.am:
31492 * ext/mplex/gstmplex.cc:
31493 * ext/mplex/gstmplex.h:
31494 * ext/mplex/gstmplex.hh:
31495 * ext/mplex/gstmplexibitstream.cc:
31496 * ext/mplex/gstmplexibitstream.hh:
31497 * ext/mplex/gstmplexjob.cc:
31498 * ext/mplex/gstmplexjob.hh:
31499 * ext/mplex/gstmplexoutputstream.cc:
31500 * ext/mplex/gstmplexoutputstream.hh:
31501 We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
31502 had issues, didn't do capsnego, supported only a subset of the
31503 mplex features and required a mplex fork in our local CVS. Plus
31504 that it worked agaist a very old mplex version. Rewriting was
31505 faster than updating it.
31506 * gst-libs/ext/Makefile.am:
31507 * gst-libs/ext/mplex/INSTRUCT:
31508 * gst-libs/ext/mplex/Makefile.am:
31509 * gst-libs/ext/mplex/README:
31510 * gst-libs/ext/mplex/TODO:
31511 * gst-libs/ext/mplex/ac3strm_in.cc:
31512 * gst-libs/ext/mplex/audiostrm.hh:
31513 * gst-libs/ext/mplex/audiostrm_out.cc:
31514 * gst-libs/ext/mplex/aunit.hh:
31515 * gst-libs/ext/mplex/bits.cc:
31516 * gst-libs/ext/mplex/bits.hh:
31517 * gst-libs/ext/mplex/buffer.cc:
31518 * gst-libs/ext/mplex/buffer.hh:
31519 * gst-libs/ext/mplex/fastintfns.h:
31520 * gst-libs/ext/mplex/format_codes.h:
31521 * gst-libs/ext/mplex/inputstrm.cc:
31522 * gst-libs/ext/mplex/inputstrm.hh:
31523 * gst-libs/ext/mplex/lpcmstrm_in.cc:
31524 * gst-libs/ext/mplex/mjpeg_logging.cc:
31525 * gst-libs/ext/mplex/mjpeg_logging.h:
31526 * gst-libs/ext/mplex/mjpeg_types.h:
31527 * gst-libs/ext/mplex/mpastrm_in.cc:
31528 * gst-libs/ext/mplex/mpegconsts.cc:
31529 * gst-libs/ext/mplex/mpegconsts.h:
31530 * gst-libs/ext/mplex/mplexconsts.hh:
31531 * gst-libs/ext/mplex/multplex.cc:
31532 * gst-libs/ext/mplex/outputstream.hh:
31533 * gst-libs/ext/mplex/padstrm.cc:
31534 * gst-libs/ext/mplex/padstrm.hh:
31535 * gst-libs/ext/mplex/stillsstream.cc:
31536 * gst-libs/ext/mplex/stillsstream.hh:
31537 * gst-libs/ext/mplex/systems.cc:
31538 * gst-libs/ext/mplex/systems.hh:
31539 * gst-libs/ext/mplex/vector.cc:
31540 * gst-libs/ext/mplex/vector.hh:
31541 * gst-libs/ext/mplex/videostrm.hh:
31542 * gst-libs/ext/mplex/videostrm_in.cc:
31543 * gst-libs/ext/mplex/videostrm_out.cc:
31544 * gst-libs/ext/mplex/yuv4mpeg.cc:
31545 * gst-libs/ext/mplex/yuv4mpeg.h:
31546 * gst-libs/ext/mplex/yuv4mpeg_intern.h:
31547 * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
31548 We don't fork mjpegtools' mplex in our CVS anymore.
31549 * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
31550 (gst_avi_demux_add_stream):
31551 * gst/avi/gstavidemux.h:
31552 Add getcaps() function for proper caps nego. This makes some
31553 parts of AVI playback/reading work.
31554 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31555 Resize window on new capsnego. This is probably wrong, but
31556 I'm still committing it because with current capsnego, the
31557 first successfull capsnego is auto-fixated, therefore rounded
31558 down to the lowest values in the caps. this results in a 16x16
31559 XWindow that is not reized when real capsnego finishes.
31560 Dave, I see more cases of this, do you know a proper solution?
31561 * tools/gst-launch-ext.in:
31562 Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
31564 2003-12-31 David Schleef <ds@schleef.org>
31566 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
31567 * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
31568 Change gst_pad_proxy_link() to gst_pad_try_set_caps()
31570 2003-12-30 David Schleef <ds@schleef.org>
31572 * ext/ffmpeg/gstffmpegcolorspace.c:
31573 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
31574 (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
31575 (gst_ffmpegcsp_chain): Negotiation fixes
31576 * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
31577 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
31578 (gst_audio_convert_link), (gst_audio_convert_channels):
31579 * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
31580 (gst_audioscale_link), (gst_audioscale_get_buffer),
31581 (gst_audioscale_chain): Negotiation fixes
31582 * gst/audioscale/gstaudioscale.h:
31583 * gst/videofilter/gstvideofilter.c:
31584 (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
31585 (gst_videofilter_link), (gst_videofilter_init),
31586 (gst_videofilter_set_output_size), (gst_videofilter_setup),
31587 (gst_videofilter_find_format_by_structure):
31588 * gst/videofilter/gstvideofilter.h: Negotiation fixes
31589 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
31590 (gst_videoscale_link):
31591 * gst/videoscale/videoscale.c: (videoscale_get_structure),
31592 (videoscale_find_by_structure), (gst_videoscale_setup):
31593 * gst/videoscale/videoscale.h: Negotiation fixes
31594 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
31595 (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
31596 function, restrict resizing to a multiple of 4 (hack until
31597 everyone supports odd sizes correctly).
31599 2003-12-29 Colin Walters <walters@verbum.org>
31601 * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
31604 2003-12-30 Jan Schmidt <thaytan@mad.scientist.com>
31606 * ext/sndfile/gstsf.c: (gst_sf_loop):
31607 Fix warning about discarding const qualifier
31609 2003-12-27 Jeremy Simon <jesimon@libertysurf.fr>
31611 * gst/cutter/gstcutter.c:
31612 * gst/videoscale/gstvideoscale.c:
31613 * gst/volenv/gstvolenv.c:
31614 * gst-libs/gst/audio/audio.c:
31615 * gst-libs/gst/video/video.c:
31618 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31620 * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
31621 Don't send ALSA debugging to stderr.
31622 * ext/alsa/gstalsa.h:
31623 Use GST_WARNING instead of g_warning when ALSA functions fail.
31625 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31627 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
31628 Free XVAdapterInfo correctly.
31630 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31632 * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
31633 (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
31634 Make id3tag use correct caps nego.
31636 2003-12-27 Amaury Jacquot <sxpert@esitcom.org>
31638 * ext/ivorbis/vorbis.c:
31639 * ext/ivorbis/vorbisenc.h:
31640 * ext/ivorbis/vorbisfile.c:
31641 Modify so that it uses the new caps things
31643 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31645 * testsuite/spider/spider1.c: (main):
31646 * testsuite/spider/spider2.c: (main):
31647 * testsuite/spider/spider3.c: (main):
31648 Make tests compile again. They probably don't work.
31650 2003-12-24 Colin Walters <walters@verbum.org>
31652 * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
31653 we can't fixate the caps anymore.
31655 2003-12-23 David Schleef <ds@schleef.org>
31657 * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
31658 * sys/oss/gstosssink.c: (gst_osssink_init),
31659 (gst_osssink_sink_fixate): Add fixate function.
31661 2003-12-24 Ronald Bultje <rbultje@ronald.bitfreak.net>
31663 * ext/ffmpeg/gstffmpegcodecmap.c:
31664 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
31665 (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
31666 (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
31667 (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
31668 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
31669 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
31670 (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
31671 fix typo in RGB masks, and move back to "old" colorspace
31672 capsnego code until whoever wrote this new crap has actually
31673 tested it so that it works.
31674 And yes, this works, keep it that way please.
31676 2003-12-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
31678 * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
31679 (gst_divxdec_init), (gst_divxdec_negotiate):
31680 * ext/divx/gstdivxdec.h:
31681 * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
31682 (gst_divxenc_init):
31683 * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
31684 (gst_faac_sinkconnect), (gst_faac_srcconnect):
31685 * ext/mpeg2enc/gstmpeg2enc.cc:
31686 * ext/mpeg2enc/gstmpeg2encoder.cc:
31687 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
31688 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
31689 (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
31690 * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
31691 (dxr3spusink_init):
31692 * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
31693 (dxr3videosink_init):
31694 Fix caps breakage after Dave's caps branch merge.
31696 2003-12-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
31698 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
31699 Fix for 24bpp display.
31701 2003-12-23 Colin Walters <walters@verbum.org>
31703 * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
31704 a GnomeVFSHandle directly.
31706 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31708 * gst/volume/Makefile.am:
31709 * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
31710 (volume_base_init), (volume_init):
31711 Reenable volume element and fix to work with new caps stuff.
31712 Rhythmbox needs this.
31714 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31716 * gst/qtdemux/qtdemux.c: (plugin_init):
31717 qtdemux requires bytestream
31719 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31721 * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
31722 Fix remaining caps handling errors due to CAPS merge.
31724 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31726 * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
31727 (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
31728 (gst_faad_srcconnect):
31729 Port to new caps system.
31731 2003-12-21 Julien MOUTTE <julien@moutte.net>
31733 * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
31734 (got_video_size), (main): using g_print instead of g_message.
31735 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
31736 signal which was not emitted because of "switch" element added to the
31737 bin but not connected. (Removing from the bin temporarily)
31739 2003-12-21 Julien MOUTTE <julien@moutte.net>
31741 * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
31742 find X development files. I don't understand the previous tests and
31743 they fail on my debian/ppc unstable. This one works.
31744 * examples/gstplay/player.c: (main): Set the pipeline to READY before
31746 * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
31747 (gst_play_set_video_sink), (gst_play_set_audio_sink),
31748 (gst_play_set_visualization): Add some safety checks in set_ methods
31749 and state_change. This was throwing some ugly CRITICAL messages when
31750 pipeline was getting disposed and casts were failing.
31752 2003-12-21 Ronald Bultje <rbultje@ronald.bitfreak.net>
31755 Improve mpeg2enc detection. This is for distributions that do
31756 ship mjpegtools, but without mpeg2enc. Also does object check
31757 for might there ever be ABI incompatibility.
31758 * ext/mpeg2enc/gstmpeg2enc.cc:
31759 Add Andrew as second maintainer (he's helping me), and also add
31760 an error if no caps was set. This happens if I pull before capsnego
31761 and that's something I should solve sometime else.
31762 * gst/matroska/matroska-demux.c:
31763 (gst_matroska_demux_parse_blockgroup):
31765 * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
31766 (gst_matroska_mux_track_header):
31767 Add caps to templates.
31768 * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
31769 Add mpegversion=1 to prevent confusion with MPEG/AAC.
31770 * gst/mpegstream/gstmpegdemux.c:
31771 Remove layer since it causes warnings about unfixed caps.
31772 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
31773 Fix obvious typo (we error out if caps were set, we should of
31774 course error out if *no* caps were set).
31775 * sys/oss/gstosselement.c: (gst_osselement_convert):
31776 Fix format conversion, we confused bits/bytes.
31777 * sys/oss/gstosselement.h:
31778 Improve documentation for 'bps'.
31780 Remove stuff about plugins that need removing - this was done
31782 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
31783 (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
31784 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
31785 (gst_v4lsrc_src_query):
31786 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
31787 (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
31788 Add get_query_types(), get_formats() and query() functions.
31790 2003-12-21 Thomas Vander Stichele <thomas at apestaart dot org>
31792 * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
31793 * moved CVS to freedesktop.org