1 2007-03-29 Andy Wingo <wingo@pobox.com>
3 * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev): Make
4 perfect offsets also, not just timestamps.
6 * tests/check/elements/videorate.c (test_more): Test that given
7 any incoming offsets, that videorate produces perfect offsets.
9 2007-03-29 Wim Taymans <wim@fluendo.com>
11 * gst-libs/gst/riff/riff-ids.h:
12 Add some more RIFF formats.
14 2007-03-29 Wim Taymans <wim@fluendo.com>
16 * gst-libs/gst/rtp/gstrtpbuffer.c:
17 (gst_rtp_buffer_default_clock_rate):
18 * gst-libs/gst/rtp/gstrtpbuffer.h:
19 Fix fixed payload names and docs.
20 Added method to get the default clock rates of fixed payload types.
21 API: GstRTPBuffer::gst_rtp_buffer_default_clock_rate()
23 2007-03-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
25 * tests/check/pipelines/.cvsignore:
26 Add new vorbisdec test to cvsignore.
28 2007-03-28 Wim Taymans <wim@fluendo.com>
30 * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
31 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
32 (gst_base_audio_sink_query), (gst_base_audio_sink_get_time),
33 (gst_base_audio_sink_set_property),
34 (gst_base_audio_sink_get_property), (gst_base_audio_sink_event),
35 (clock_convert_external), (gst_base_audio_sink_resample_slaving),
36 (gst_base_audio_sink_skew_slaving),
37 (gst_base_audio_sink_handle_slaving), (gst_base_audio_sink_render),
38 (gst_base_audio_sink_async_play):
39 * gst-libs/gst/audio/gstbaseaudiosink.h:
40 Store private stuff in GstBaseAudioSinkPrivate.
41 Add configurable clock slaving modes property.
42 API:: GstBaseAudioSink::slave-method property
43 Some more latency reporting tweaks.
44 Added skew based clock slaving correction and make it the default until
45 the resampling method is more robust.
47 2007-03-27 Sebastian Dröge <slomo@circular-chaos.org>
49 * gst/audioconvert/audioconvert.c:
50 Add docs to the integer pack functions and implement proper
51 rounding. Before we had rounding towards negative infinity, i.e.
52 always the smaller number was taken. Now we use natural rounding,
53 i.e. rounding to the nearest integer and to the one with the largest
54 absolute value for X.5. The old rounding introduced some minor
55 distortions. Fixes #420079
56 * tests/check/elements/audioconvert.c: (GST_START_TEST):
57 Fix one unit test that assumed the old rounding and added unit tests
58 for checking signed/unsigned int16 <-> signed/unsigned int16 with
59 depth 8, one for signed int16 <-> unsigned int16 and one for the new
60 rounding from signed int32 to signed/unsigned int16.
62 2007-03-27 Michael Smith <msmith@fluendo.com>
64 * gst/audioconvert/gstaudioconvert.c: (strip_width_64),
65 (gst_audio_convert_transform_caps):
66 Fix typo in debug line introduced recently, as pointed out on irc.
68 2007-03-27 Tim-Philipp Müller <tim at centricular dot net>
70 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
71 * tests/check/libs/tag.c: (GST_START_TEST):
72 Make sure we parse floating-point numbers in vorbis comments
73 correctly with either '.' or ',' as separator, no matter what
74 the current locale is. Add unit test for this too.
76 2007-03-26 Tim-Philipp Müller <tim at centricular dot net>
78 Patch by: René Stadler <mail at renestadler de>
80 * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_to_vorbis_comments):
81 When writing out floating-point numbers to vorbis comment tags, always
82 use the same character as separator no matter what the current locale is
85 * tests/check/libs/tag.c: (GST_START_TEST):
86 Add unit tests for replaygain tags in vorbis comments (closes #423055).
88 2007-03-26 Thomas Vander Stichele <thomas at apestaart dot org>
90 * ext/vorbis/vorbisdec.c (vorbis_dec_push_forward,
91 vorbis_handle_data_packet):
92 Correctly set DURATION to generate a timestamp-continuous stream.
93 One bug left at the end; see
94 ihttp://bugzilla.gnome.org/show_bug.cgi?id=423086
95 * tests/check/Makefile.am:
96 * tests/check/pipelines/vorbisenc.c (GST_START_TEST):
97 Add a test to check this. Without the above patch this test fails.
99 2007-03-26 Jan Schmidt <thaytan@mad.scientist.com>
101 * gst-libs/gst/rtp/Makefile.am:
102 The base audio payloader uses GstAdapter - we need GST_BASE_LIBS.
104 2007-03-23 Michael Smith <msmith@fluendo.com>
106 * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
107 (gst_video_rate_reset), (gst_video_rate_chain):
108 If videorate changes caps, we can no longer use the old buffer
109 (which may have a different size, incompatible with our caps).
110 So don't do that; just duplicate the new frame more times.
112 2007-03-22 Jan Schmidt <thaytan@mad.scientist.com>
114 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
115 Remove playbin's override of the set_clock vmethod. It's irrelevant
116 after Wim's commit on the 19th.
118 2007-03-22 Wim Taymans <wim@fluendo.com>
120 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_size),
121 (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
122 * ext/gnomevfs/gstgnomevfssrc.h:
123 Don't cache file sizes. Fixes #341078.
125 2007-03-21 Tim-Philipp Müller <tim at centricular dot net>
127 * gst/playback/gstplaybin.c: (add_sink):
128 Use GST_PTR_FORMAT to log caps.
130 2007-03-21 Tim-Philipp Müller <tim at centricular dot net>
132 Patch by: Young-Ho Cha <ganadist at chollian net>
134 * gst/subparse/samiparse.c: (handle_start_font):
135 Special-case some more colour names that pango doesn't handle by
136 default. Fixes #420578.
138 2007-03-20 Michael Smith <msmith@fluendo.com>
140 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
141 If we get a zero-sized input buffer, don't pass it to libvorbis, as
142 that marks EOS internally. After that, libvorbis will buffer all
143 input data, and encode none of it, eventually leading to memory
146 2007-03-19 Wim Taymans <wim@fluendo.com>
148 * gst/playback/gstdecodebin.c: (remove_fakesink):
149 Don't post STATE_DIRTY anymore.
151 * gst/playback/gstplaybin.c: (add_sink), (gst_play_bin_send_event),
152 (gst_play_bin_change_state):
153 Remove stream_time reset in seek handling, core does that now.
154 Disable clocking for live pipelines by forcing a NULL clock to the
155 complete pipeline, core is too smart now for our previous hack.
156 We can always autoplug in PAUSED now.
158 2007-03-17 David Schleef <ds@schleef.org>
160 * REQUIREMENTS: Update this file, change the formatting to make
161 it more consistent, plus more machine readable.
163 2007-03-16 Michael Smith <msmith@fluendo.com>
165 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
166 (strip_width_64), (append_with_other_format):
167 Previous fix was too simplistic, and broke the tests. Use a better
168 approach; only strip 64 from widths for integer audio.
170 2007-03-16 Michael Smith <msmith@fluendo.com>
172 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
173 (gst_audio_convert_transform_caps):
174 We don't support 64 bit integer audio, so don't try to claim we can.
175 Stops us producing caps don't match our template caps.
178 2007-03-15 Michael Smith <msmith@fluendo.com>
180 * gst/audioresample/gstaudioresample.c:
181 (audioresample_check_discont), (audioresample_transform):
182 Don't trigger discontinuities for very small imperfections; a filter
183 flush will sound bad, and many plugins have rounding errors leading
186 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
188 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
189 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
190 Add min-ptime property to RTP base audio payloader. Patch by
191 olivier.crete@collabora.co.uk.
194 Indentation/whitespace/documentation fixes.
196 2007-03-14 Julien MOUTTE <julien@moutte.net>
198 * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
199 (audioresample_transform_size), (audioresample_do_output),
200 (audioresample_transform), (audioresample_pushthrough): Handle
201 discontinuous streams.
202 * gst/audioresample/gstaudioresample.h:
203 * tests/check/elements/audioresample.c:
204 (test_discont_stream_instance), (GST_START_TEST),
205 (audioresample_suite): Add a test for discontinuous streams.
206 * win32/common/config.h: Updated.
208 2007-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
223 Update translations from translation project.
225 2007-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
227 * gst/audioresample/debug.h:
228 * gst/audioresample/resample.c: (resample_init):
229 Since I really am not interested in a debug line for each sample
230 being processed, move the library's debugging to its own category,
233 2007-03-13 Michael Smith <msmith@fluendo.com>
235 * ext/theora/theoradec.c: (theora_handle_type_packet):
236 Since the plugin doesn't support anything other than 4:2:0 right
237 now, post an error and fail if we get something else. Won't matter
238 until libtheora supports the other pixel formats, but hopefully
241 2007-03-10 Sebastien Moutte <sebastien@moutte.net>
243 * gst-libs/gst/audio/gstbaseaudiosink.c:(gst_base_audio_sink_render):
244 Use gst_guint64_to_gdouble for conversion.
246 Add new files to the win32 MANIFEST.
247 * win32/common/libgstaudio.def:
248 * win32/common/libgstpbutils.def:
249 Add new exported functions.
250 * win32/vs6/gst_plugins_base.dsw:
251 * win32/vs6/libgstdecodebin.dsp:
252 * win32/vs6/libgstplaybin.dsp:
253 Change the link to libgstpbutils.lib.
254 * win32/vs6/libgstdecodebin2.dsp:
255 Add a new project for decodebin2.
256 * win32/vs6/libgstpbutils.dsp:
257 Add a new project for pbutils.
259 2007-03-10 Tim-Philipp Müller <tim at centricular dot net>
261 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
262 Also accept partial dates with only year and month,
263 like 1999-12-00 (fixes #410396 even more).
265 * tests/check/libs/tag.c: (GST_START_TEST):
266 Add unit test for the above.
268 2007-03-10 Tim-Philipp Müller <tim at centricular dot net>
270 * tests/check/elements/subparse.c: (GST_START_TEST),
272 Add unit test for MPL2 subtitle format (#413799).
274 2007-03-10 Tim-Philipp Müller <tim at centricular dot net>
276 Patch by: Kamil Pawlowski <kamilpe gmail com>
278 * gst/subparse/Makefile.am:
279 * gst/subparse/gstsubparse.c:
280 (gst_sub_parse_data_format_autodetect),
281 (gst_sub_parse_format_autodetect), (gst_sub_parse_sink_event),
282 (gst_subparse_type_find):
283 * gst/subparse/gstsubparse.h:
284 * gst/subparse/mpl2parse.c: (mpl2_parse_line), (parse_mpl2):
285 * gst/subparse/mpl2parse.h:
286 Add support for MPL2 subtitle format (#413799).
288 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
291 We require core CVS for the new buffer metadata copy functions.
293 2007-03-09 Wim Taymans <wim@fluendo.com>
295 * gst-libs/gst/tag/gstid3tag.c:
296 Add read support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
299 Patch by: Alex Lancaster <alexl at users sourceforge net>
301 2007-03-09 Wim Taymans <wim@fluendo.com>
303 * ext/libvisual/visual.c: (gst_visual_sink_setcaps),
304 (gst_vis_src_negotiate), (get_buffer), (gst_visual_chain):
305 Improve adapter usage and comments.
307 2007-03-09 Wim Taymans <wim@fluendo.com>
309 * ext/pango/gsttextrender.c: (gst_text_render_chain):
310 * ext/vorbis/vorbistag.c: (gst_vorbis_tag_parse_packet):
311 * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_copy):
312 Use new metadata copy function.
314 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
315 (gst_ffmpegcsp_transform):
316 * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
317 Basetransform copied the metadata for us.
319 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
321 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
322 (gst_text_overlay_video_event):
323 Some more logging. Only accept newsegment events in TIME format and
324 send a WARNING message if they are not in TIME format.
326 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
327 (gst_sub_parse_init), (gst_sub_parse_src_event), (handle_buffer),
328 (gst_sub_parse_chain), (gst_sub_parse_sink_event):
329 * gst/subparse/gstsubparse.h:
330 No need to allocate GstSegment structure dynamically, just put it
331 into the instance structure; ignore newsegment events in BYTE
332 format and in particular don't let it overwrite our saved TIME
333 segment from the last seek.
335 2007-03-09 Michael Smith <msmith@fluendo.com>
337 * gst/typefind/gsttypefindfunctions.c: (ac3_type_find):
338 Replace AC3 typefinder with one that isn't terrible, and actually
341 2007-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
343 * gst/audioconvert/gstaudioconvert.c:
344 (gst_audio_convert_transform):
345 fix error category and translatable string
348 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
350 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
351 * pkgconfig/gstreamer-plugins-base.pc.in:
352 Fix up utils => pbutils here too.
354 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
356 * gst/subparse/gstsubparse.c: (handle_buffer):
357 Break out of loop in chain function as soon as possible if we get
358 a non-OK flow return.
360 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
362 * tests/check/elements/alsa.c: (GST_START_TEST):
363 Unref the mixer if the state change fails too (if the
364 alsa devices are inaccessible, for example)
366 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
368 * tests/check/Makefile.am:
369 Don't test libvisual elements in the states check, because libvisual
370 seems to leak internally.
372 Re-enable the alsa and states tests now that there's new suppressions
375 * tests/check/elements/alsa.c: (GST_START_TEST):
376 Don't leak the alsamixer we instantiated.
378 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
380 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
381 (gst_ximagesink_change_state), (gst_ximagesink_reset),
382 (gst_ximagesink_finalize):
383 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
384 (gst_xvimagesink_reset), (gst_xvimagesink_finalize):
385 Move some cleanup stuff from the state change handler into a _reset()
386 function that can be called from _finalize(). This ensures that things
387 get freed even if (for some reason) the NULL->READY state transition
388 fails in the parent class.
389 Even if a parent state change fails, process our downward state change
390 logic instead of bailing out early.
391 Free the correct xcontext pointer in ximagesink's xcontext_clear.
393 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
395 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
398 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_init):
399 * ext/pango/gsttimeoverlay.c: (gst_time_overlay_init):
400 Use pango_font_description_set_family_static instead of
401 pango_font_description_set_family to save a string copy (it was
402 leaking due to the strdup anyway)
404 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_finalize):
405 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_finalize):
406 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_finalize):
407 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_finalize):
408 Chain up in finalize.
410 2007-03-07 Tim-Philipp Müller <tim at centricular dot net>
412 * gst-libs/gst/interfaces/mixertrack.c:
413 (gst_mixer_track_class_init), (gst_mixer_track_get_property),
414 (gst_mixer_track_set_property):
415 API: add "untranslated-label" property which should be set by
416 implementations at construct time (#414645).
418 * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
419 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
420 Set "untranslated-label" when constructing mixer track objects.
422 * tests/check/elements/alsa.c: (GST_START_TEST), (alsa_suite):
423 Unit test to check the above.
425 2007-03-07 Wim Taymans <wim@fluendo.com>
427 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
428 Fix confusing debug message.
430 2007-03-07 Jan Schmidt <thaytan@mad.scientist.com>
432 * gst-plugins-base.doap:
433 update doap file with new version
435 2007-03-07 Jan Schmidt <thaytan@mad.scientist.com>
440 === release 0.10.12 ===
442 2007-03-07 Jan Schmidt <thaytan@mad.scientist.com>
445 releasing 0.10.12, "Zombie Horde"
447 2007-03-06 Jan Schmidt <thaytan@mad.scientist.com>
450 Bump version to 0.10.11.4 pre-release
452 2007-03-06 Wim Taymans <wim@fluendo.com>
454 * gst-libs/gst/audio/gstbaseaudiosink.c:
455 (gst_base_audio_sink_async_play):
456 Fix regression that made GStreamer skip the first samples of audio.
459 2007-03-05 Jan Schmidt <thaytan@mad.scientist.com>
462 Bump version to 0.10.11.3 pre-release
464 2007-03-05 Sebastian Dröge <slomo@circular-chaos.org>
467 Update paths for the rename from utils to pbutils to fix the build.
469 2007-03-05 Tim-Philipp Müller <tim at centricular dot net>
471 * gst-libs/gst/pbutils/Makefile.am:
472 Change directory to install headers in from gst/utils to gst/pbutils
475 2007-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
478 * docs/libs/gst-plugins-base-libs-docs.sgml:
479 * docs/libs/gst-plugins-base-libs-sections.txt:
480 * gst-libs/gst/Makefile.am:
481 * gst-libs/gst/interfaces/mixer.c:
482 * gst-libs/gst/pbutils/Makefile.am:
483 * gst-libs/gst/pbutils/descriptions.c:
484 (gst_pb_utils_get_source_description),
485 (gst_pb_utils_get_sink_description),
486 (gst_pb_utils_get_decoder_description),
487 (gst_pb_utils_get_encoder_description),
488 (gst_pb_utils_get_element_description),
489 (gst_pb_utils_add_codec_description_to_tag_list),
490 (gst_pb_utils_get_codec_description), (gst_pb_utils_list_all):
491 * gst-libs/gst/pbutils/descriptions.h:
492 * gst-libs/gst/pbutils/install-plugins.c:
493 * gst-libs/gst/pbutils/install-plugins.h:
494 * gst-libs/gst/pbutils/missing-plugins.c:
495 (gst_missing_uri_source_message_new),
496 (gst_missing_uri_sink_message_new),
497 (gst_missing_element_message_new),
498 (gst_missing_decoder_message_new),
499 (gst_missing_encoder_message_new),
500 (gst_missing_plugin_message_get_description):
501 * gst-libs/gst/pbutils/missing-plugins.h:
502 * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
503 * gst-libs/gst/pbutils/pbutils.h:
504 * gst-libs/gst/utils/Makefile.am:
505 * gst-libs/gst/utils/base-utils.c:
506 * gst-libs/gst/utils/base-utils.h:
507 * gst-libs/gst/utils/descriptions.c:
508 * gst-libs/gst/utils/descriptions.h:
509 * gst-libs/gst/utils/install-plugins.c:
510 * gst-libs/gst/utils/install-plugins.h:
511 * gst-libs/gst/utils/missing-plugins.c:
512 * gst-libs/gst/utils/missing-plugins.h:
513 * gst-plugins-base.spec.in:
514 * gst/playback/Makefile.am:
515 * gst/playback/gstdecodebin.c:
516 * gst/playback/gstdecodebin2.c:
517 * gst/playback/gstplaybasebin.c: (setup_subtitle),
518 (gen_source_element):
519 * gst/playback/gstplaybin.c: (plugin_init):
520 * tests/check/Makefile.am:
521 * tests/check/libs/pbutils.c: (GST_START_TEST),
522 (test_pb_utils_install_plugins_do_callout), (libgstpbutils_suite):
523 * tests/check/libs/utils.c:
524 rename utils to pbutils
526 2007-03-02 Jan Schmidt <thaytan@mad.scientist.com>
528 * docs/plugins/Makefile.am:
529 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
530 * docs/plugins/gst-plugins-base-plugins-sections.txt:
531 * docs/plugins/inspect/plugin-decodebin2.xml:
532 * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
533 Add documentation for decodebin2 that indicates that the API
536 2007-03-01 Jan Schmidt <thaytan@mad.scientist.com>
539 Update to 0.10.11.2 (0.10.12 pre-release)
541 2007-03-01 Wim Taymans <wim@fluendo.com>
543 * gst-libs/gst/audio/gstbaseaudiosink.c:
544 (gst_base_audio_sink_async_play):
545 base time is irrelevant here.
547 2007-03-01 Wim Taymans <wim@fluendo.com>
549 * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
550 * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
553 * gst-libs/gst/audio/gstbaseaudiosink.c:
554 (gst_base_audio_sink_query), (gst_base_audio_sink_event),
555 (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
556 Improve latency and clock slaving calculations.
557 Improve slave clock calibration.
559 * gst-libs/gst/audio/gstringbuffer.c:
560 (gst_ring_buffer_commit_full):
561 When we are asked to render N sample to 0 bytes, return N.
563 2007-03-01 Wim Taymans <wim@fluendo.com>
565 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
566 (gst_alsasink_write), (gst_alsasink_reset):
567 * ext/alsa/gstalsasink.h:
568 Remove unused dispose function.
569 Rename lock to not interfere with alsasrc lock.
571 * ext/alsa/gstalsasrc.c: (gst_alsasrc_finalize),
572 (gst_alsasrc_class_init), (gst_alsasrc_init), (set_swparams),
573 (gst_alsasrc_read), (gst_alsasrc_reset):
574 * ext/alsa/gstalsasrc.h:
575 Implement finalize function.
576 Use lock to protect alsa access.
580 2007-02-28 Thomas Vander Stichele <thomas at apestaart dot org>
583 Convert to new AG_GST style.
585 2007-02-28 Wim Taymans <wim@fluendo.com>
587 Patch by: Ed Catmur <ed at catmur dot co dot uk>
589 * gst/playback/gstplaybin.c: (gst_play_bin_vis_unblocked),
590 (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
591 Fix race condition when rapidly switching visualisations in playbin.
594 2007-02-28 Jan Schmidt <thaytan@mad.scientist.com>
596 * tests/check/Makefile.am:
597 Include local stuff before system installed things in LDFLAGS and
600 2007-02-28 Wim Taymans <wim@fluendo.com>
602 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_activate):
605 2007-02-28 Wim Taymans <wim@fluendo.com>
607 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
608 (gst_v4lsrc_fixate), (gst_v4lsrc_query):
609 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
610 Fix duration and timestamping, taking latency into account.
611 Implement latency query.
613 2007-02-28 Wim Taymans <wim@fluendo.com>
615 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
616 (gst_audio_clock_new):
619 * gst-libs/gst/audio/gstbaseaudiosink.c:
620 (gst_base_audio_sink_init), (gst_base_audio_sink_query):
621 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
622 (gst_base_audio_src_query), (gst_base_audio_src_get_offset),
623 (gst_base_audio_src_create):
624 Improve latency query code.
625 Use proper clock names.
627 2007-02-28 Thomas Vander Stichele <thomas at apestaart dot org>
629 * tests/check/generic/states.c: (GST_START_TEST):
630 Copy the states.c test from core again
631 * tests/check/Makefile.am:
632 ignore cdio and cdparanoiasrc
634 2007-02-28 Stefan Kost <ensonic@users.sf.net>
636 * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
637 (double_hq), (audio_convert_get_func_index), (check_default),
638 (audio_convert_prepare_context), (audio_convert_convert):
639 Also make valgrind happy and avoid copying data in some cases.
641 2007-02-28 Stefan Kost <ensonic@users.sf.net>
643 * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
644 (double_hq), (audio_convert_get_func_index),
645 (audio_convert_prepare_context), (audio_convert_convert):
646 * gst/audioconvert/gstaudioconvert.c:
647 (gst_audio_convert_class_init), (gst_audio_convert_get_unit_size),
648 (gst_audio_convert_transform_caps):
649 * tests/check/elements/audioconvert.c: (GST_START_TEST),
650 (audioconvert_suite):
651 Don't run inplace if that overwrites source data as we go. Add more
652 tests. Fixes #339837 even more.
654 2007-02-27 Julien MOUTTE <julien@moutte.net>
656 * tests/examples/seek/seek.c: (do_seek), (set_update_scale),
657 (msg_segment_done): Fix various seeking bugs (Slider was not
658 updating when doing a non flushing seek, Reverse playback
659 on segment seek was wrong).
661 2007-02-26 Wim Taymans <wim@fluendo.com>
663 * tests/examples/seek/seek.c: (stop_seek):
664 When we stop scrubbing, don't leave the pipeline PLAYING when we
665 requested a PAUSED state.
667 2007-02-25 Tim-Philipp Müller <tim at centricular dot net>
669 Patch by: René Stadler <mail at renestadler de>
671 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
672 Parse date strings in vorbis comments that have an invalid (zero)
673 month or day (#410396).
675 * tests/check/libs/tag.c: (GST_START_TEST):
676 Test case for the above.
678 2007-02-24 Tim-Philipp Müller <tim at centricular dot net>
680 Patch by: Loïc Minier <lool+gnome at via ecp fr>
683 * ext/alsa/Makefile.am:
684 * gst/audiotestsrc/Makefile.am:
685 Fix compilation with LDFLAGS='-Wl,-z,defs' (#410963).
687 2007-02-23 Tim-Philipp Müller <tim at centricular dot net>
689 * gst/playback/gstplaybin.c:
690 Improve docs: point out that the application needs to assist playbin
693 2007-02-23 Tim-Philipp Müller <tim at centricular dot net>
695 * gst-libs/gst/utils/install-plugins.c:
696 * gst-libs/gst/utils/missing-plugins.c:
697 * tests/check/libs/utils.c: (missing_msg_check_getters):
698 Change GStreamer marker prefix in detail string from 'gstreamer.net'
699 to just 'gstreamer'. Document the caps string component of the
700 decoder/encoder detail a bit better, since not everyone will be
701 familiar with the GStreamer media type/caps system (but they better
702 enjoy nested itemized lists).
704 2007-02-22 Tim-Philipp Müller <tim at centricular dot net>
706 * gst-libs/gst/netbuffer/gstnetbuffer.c:
707 (notgst_buffer_copy_fields_in_place), (gst_netbuffer_copy):
708 Fix copying of GstNetBuffer (would crash before, or at least lead to
709 invalid memory access, #410772), for now by copying the GstBuffer copy
710 code from the core over here so we can copy the GstBuffer fields on a
711 provided buffer instance (of type GstNetBuffer in this case). Would be
712 better to fix this with some support by the core though (and in the long
713 run change the broken GstBuffer/GstMiniObject copy semantics, #393099).
715 * tests/check/Makefile.am:
716 Enable unit test for GstNetBuffer.
718 2007-02-22 Andy Wingo <wingo@pobox.com>
720 * gst-libs/gst/audio/gstbaseaudiosink.c
721 (gst_base_audio_sink_init): Disable pull-mode activation until we
722 figure out how to make audio sinks go to PLAYING.
724 2007-02-22 Stefan Kost <ensonic@users.sf.net>
726 * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
727 (double_hq), (audio_convert_get_func_index),
728 (audio_convert_prepare_context), (audio_convert_convert):
729 * gst/audioconvert/audioconvert.h:
730 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_setup_matrix),
731 (gst_channel_mix_mix_int), (gst_channel_mix_mix_float):
732 * gst/audioconvert/gstchannelmix.h:
733 * tests/check/elements/audioconvert.c: (GST_START_TEST):
734 Add float as an intermediate format, as well as float mixing. Enable
735 test that was failing before. Fixes #339837
737 2007-02-21 Jan Schmidt <thaytan@mad.scientist.com>
739 * tests/examples/seek/seek.c: (do_seek):
740 Undo the previous commit: -1 as a stop time implies that the stop
741 time is the end of file, clearing any previously configured segment.
743 2007-02-21 Jan Schmidt <thaytan@mad.scientist.com>
745 * tests/examples/seek/seek.c: (do_seek):
746 Don't SEEK_SET with a stop time of -1, use SEEK_NONE instead.
748 2007-02-21 Stefan Kost <ensonic@users.sf.net>
750 * gst/volume/gstvolume.c: (volume_process_int16),
751 (volume_process_int16_clamp), (volume_set_caps):
752 Unbreak volume, value remains gint.
754 2007-02-21 Stefan Kost <ensonic@users.sf.net>
756 * gst/volume/gstvolume.c: (volume_choose_func),
757 (volume_update_real_volume), (gst_volume_set_volume),
758 (gst_volume_init), (volume_process_double), (volume_process_float),
759 (volume_process_int16), (volume_process_int16_clamp),
760 (volume_set_caps), (volume_transform_ip), (volume_update_volume):
761 * gst/volume/gstvolume.h:
762 Extend float audio support (double) and some int->uint cleanups.
764 2007-02-20 Edward Hervey <edward@fluendo.com>
766 * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
767 (multi_queue_underrun_cb), (gst_decode_group_check_if_drained),
768 (sort_end_pads), (gst_decode_group_expose),
769 (gst_decode_group_hide):
770 Don't free groups from the streaming threads. Just put them aside and
771 free them in dispose.
773 2007-02-20 Edward Hervey <edward@fluendo.com>
775 * gst/playback/gstdecodebin2.c: (connect_element),
776 (pad_added_group_cb), (gst_decode_group_check_if_blocked),
777 (sort_end_pads), (gst_decode_group_expose):
778 Handle dynamic pads within groups.
779 Sort pads before exposing them in order to make playbin happy.
780 There still is a race with the multiqueue filling up. This should be
784 2007-02-16 Tim-Philipp Müller <tim at centricular dot net>
786 * gst-libs/gst/utils/base-utils.c:
787 * gst-libs/gst/utils/descriptions.c:
788 * gst-libs/gst/utils/install-plugins.c:
789 * gst-libs/gst/utils/missing-plugins.c:
790 Some more docs (and descriptions for two subtitle formats).
792 2007-02-16 Tim-Philipp Müller <tim at centricular dot net>
794 * gst-libs/gst/audio/audio.c:
797 2007-02-16 Tim-Philipp Müller <tim at centricular dot net>
799 Patch by: Yves Lefebvre <ivanohe abacom com>
801 * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps):
802 Don't leak caps. Fixes #408278.
804 2007-02-15 Stefan Kost <ensonic@users.sf.net>
806 * ext/cdparanoia/gstcdparanoiasrc.h:
807 * ext/ogg/gstoggdemux.h:
808 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
809 (gst_audio_frame_length), (gst_audio_duration_from_pad_buffer),
810 (gst_audio_is_buffer_framed), (gst_audio_structure_set_int):
811 * gst-libs/gst/audio/audio.h:
812 * gst-libs/gst/audio/gstaudiofilter.h:
813 * gst-libs/gst/interfaces/videoorientation.h:
814 * gst/adder/gstadder.h:
815 More docs coverage and some ChangeLog surgery (add missing names)
817 2007-02-15 Wim Taymans <wim@fluendo.com>
819 * sys/ximage/ximagesink.c:
820 (gst_ximagesink_calculate_pixel_aspect_ratio):
821 * sys/xvimage/xvimagesink.c:
822 (gst_xvimagesink_calculate_pixel_aspect_ratio):
823 Small constifications.
825 2007-02-15 Wim Taymans <wim@fluendo.com>
827 * gst-libs/gst/audio/gstbaseaudiosink.c:
828 (gst_base_audio_sink_class_init), (gst_base_audio_sink_query),
829 (gst_base_audio_sink_render), (gst_base_audio_sink_callback),
830 (gst_base_audio_sink_async_play),
831 (gst_base_audio_sink_change_state):
832 Answer latency query.
833 Use configured latency when syncing.
836 * gst-libs/gst/audio/gstbaseaudiosrc.c:
837 (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
838 (gst_base_audio_src_query), (gst_base_audio_src_change_state):
839 Fix possible memleak.
840 Implement latency query.
843 2007-02-15 Wim Taymans <wim@fluendo.com>
845 * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
846 Ignore errors in reset, these are not fatal. They also grab the element
847 lock which is already taking when this function is called. Fixes
850 2007-02-13 Stefan Kost <ensonic@users.sf.net>
853 Remove 'tests/examples/xerror/Makefile' from output files again.
855 2007-02-13 Stefan Kost <ensonic@users.sf.net>
858 * docs/plugins/Makefile.am:
859 Also crossref against gst-plugins-base-libs.
861 2007-02-12 Stefan Kost <ensonic@users.sf.net>
864 * docs/libs/Makefile.am:
865 * docs/plugins/Makefile.am:
866 Add crossreferences to glib/gobject/gstream docs.
868 * gst-libs/gst/audio/audio.h:
871 * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
872 Add own debug category.
874 2007-02-12 Tim-Philipp Müller <tim at centricular dot net>
876 Patch by: René Stadler <mail at renestadler de>
878 * gst-libs/gst/tag/gstvorbistag.c:
879 Add vorbis/FLAC-tag mapping for new GST_TAG_REFERENCE_LEVEL
882 2007-02-10 Tim-Philipp Müller <tim at centricular dot net>
884 * gst/playback/gstplaybasebin.c: (setup_source):
885 When we have external subtitles and wait for the subtitle decodebin
886 to get up and running, we set up a (sync) bus handler for the
887 subtitle decodebin, so we can stop waiting when it posts an error
888 message. However, we should do that before we set the subtitle
889 decodebin's state to playing, otherwise things are racy and we might
890 miss error messages posted before we had a chance to set up the bus.
891 This should finally fix totem hanging on .txt pseudo-subtitle files.
893 2007-02-10 Sébastien Moutte <sebastien at moutte dot net>
895 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:(gst_base_rtp_audio_payload_handle_frame_based_buffer):
896 Use gst_gdouble_to_guint64 for conversions.
897 * win32/common/config.h.in:
898 Add a define for GST_INSTALL_PLUGINS_HELPER
899 * win32/common/libgstaudio.def:
900 * win32/common/libgstcdda.def:
901 * win32/common/libgstnetbuffer.def:
902 * win32/common/libgstrtp.def:
903 * win32/common/libgutils.def:
904 Add new exported functions.
905 * win32/vs6/gst_plugins_base.dsw:
906 * win32/vs6/libgstdecodebin.dsp:
907 * win32/vs6/libgstnetbuffer.dsp:
908 * win32/vs6/libgstplaybin.dsp:
909 * win32/vs6/libgstrtp.dsp:
910 * win32/vs6/libgstvorbis.dsp:
911 * win32/vs6/libgstcdda.dsp:
912 * win32/vs6/libgstgdp.dsp:
913 * win32/vs6/libgstutils.dsp:
914 Update and add new project files.
916 2007-02-10 Tim-Philipp Müller <tim at centricular dot net>
918 * gst/subparse/gstsubparse.c: (subrip_remove_unhandled_tag),
919 (subrip_remove_unhandled_tags), (parse_subrip):
920 For SubRip (.srt) subtitles, ignore all markup tags we don't
921 handle (like font tags, for example).
923 * tests/check/elements/subparse.c:
926 2007-02-09 Tim-Philipp Müller <tim at centricular dot net>
928 * gst/playback/gstdecodebin.c: (add_fakesink),
929 (gst_decode_bin_change_state):
930 * gst/playback/gstdecodebin2.c: (add_fakesink),
931 (gst_decode_bin_change_state):
932 Don't error out if there is no fakesink in the NULL to READY state
933 change, since when decodebin is re-used, we're only adding the
934 fakesink element in READY to PAUSED.
936 * tests/check/elements/decodebin.c:
937 (new_decoded_pad_plug_fakesink_cb), (GST_START_TEST),
939 Minimal unit test to make sure we can use the same decodebin
940 instance twice (at least with audiotestsrc input).
942 2007-02-09 Tim-Philipp Müller <tim at centricular dot net>
944 * ext/alsa/gstalsa.c: (gst_alsa_find_device_name):
945 Try to get devic-name from device string first, and from handle only
946 as fallback (seems to yield better results and is more robust
947 against buggy probing code on the application side).
949 2007-02-08 Tim-Philipp Müller <tim at centricular dot net>
951 Based on patch by: Julien Puydt <julien.puydt at laposte net>
953 * ext/alsa/gstalsa.c: (gst_alsa_find_device_name_no_handle),
954 (gst_alsa_find_device_name):
955 * ext/alsa/gstalsa.h:
956 * ext/alsa/gstalsasink.c: (gst_alsasink_get_property):
957 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_property):
958 Improve device-name detection a bit, especially in the case where
959 the device is not actually open (#405020, #405024). Move common code
960 into gstalsa.c instead of duplicating it.
962 2007-02-07 Tim-Philipp Müller <tim at centricular dot net>
964 * gst/audioconvert/gstaudioconvert.c:
965 Fix up docs chunk so that gtk-doc doesn't complain, and fix typo.
967 2007-02-06 Julien MOUTTE <julien@moutte.net>
969 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
970 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_clear),
971 (gst_xvimagesink_interface_supported),
972 (gst_xvimagesink_probe_get_properties),
973 (gst_xvimagesink_probe_probe_property),
974 (gst_xvimagesink_probe_needs_probe),
975 (gst_xvimagesink_probe_get_values),
976 (gst_xvimagesink_property_probe_interface_init),
977 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
978 (gst_xvimagesink_init), (gst_xvimagesink_class_init),
979 (gst_xvimagesink_get_type):
980 * sys/xvimage/xvimagesink.h: Implement PropertyProbe Interface
981 for XVAdaptors so that one can choose the adaptor to use with
982 gstreamer-properties.
984 2007-02-06 Stefan Kost <ensonic@users.sf.net>
986 * gst/audioconvert/gstaudioconvert.c:
987 Also mention that a conversion from double to float is suboptimal still.
989 2007-02-06 Tim-Philipp Müller <tim at centricular dot net>
991 * gst-libs/gst/audio/gstaudiofilter.c:
992 (gst_audio_filter_class_init), (gst_audio_filter_change_state):
993 Clear our formats structure and free the caps contained in it when
996 2007-02-05 Andy Wingo <wingo@pobox.com>
998 * gst-libs/gst/audio/gstbaseaudiosink.c
999 (gst_base_audio_sink_callback): Update basesink->offset so that we
1000 pull monotonically increasing offsets instead of, um, seeking back
1001 to 0 each time. Fixes alsasrc ! alsasink!
1003 2007-02-05 Tim-Philipp Müller <tim at centricular dot net>
1005 * gst/videoscale/gstvideoscale.c:
1006 A width and height of 1 makes us crash, so increase minimum size to
1007 2x2 pixels until someone feels like fixing this (#404512).
1009 2007-02-04 Tim-Philipp Müller <tim at centricular dot net>
1011 * tests/check/pipelines/oggmux.c: (GST_START_TEST), (oggmux_suite):
1012 Add small test to make sure request pads are cleaned up properly
1013 even if oggmux never changes state out of NULL.
1015 2007-02-04 Tim-Philipp Müller <tim at centricular dot net>
1017 * tests/check/libs/utils.c: (GST_START_TEST):
1018 Fix unit test. Turns out things work much better when you
1019 NULL-terminate string arrays. Should make p5 build bot happy again.
1021 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
1023 * gst-libs/gst/audio/Makefile.am:
1024 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
1025 (gst_audio_filter_template_base_init),
1026 (gst_audio_filter_template_class_init),
1027 (gst_audio_filter_template_init),
1028 (gst_audio_filter_template_set_property),
1029 (gst_audio_filter_template_get_property),
1030 (gst_audio_filter_template_setup),
1031 (gst_audio_filter_template_filter),
1032 (gst_audio_filter_template_filter_inplace), (plugin_init):
1033 Oops, forgot to commit fixed-up example.
1035 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
1037 * docs/libs/gst-plugins-base-libs-sections.txt:
1038 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
1039 (gst_audio_filter_class_init), (gst_audio_filter_init),
1040 (gst_audio_filter_set_caps),
1041 (gst_audio_filter_class_add_pad_templates):
1042 * gst-libs/gst/audio/gstaudiofilter.h:
1043 Port GstAudioFilter to 0.10. This change technically breaks
1044 API and ABI (and thus also every library developer's heart),
1045 but seems justifiable on the grounds that the base class was
1046 completely unusable before (ie. would crash immediately when
1047 actually used). Fixes #403963 (and eventually also #403572).
1048 Also document all of this a bit.
1050 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
1052 * gst-libs/gst/utils/install-plugins.c:
1053 (gst_install_plugins_spawn_child):
1054 * tests/check/libs/utils.c:
1055 (test_base_utils_install_plugins_do_callout):
1056 Lowering log level to see why things fail on the p5 build bot;
1057 fix some typos in unit test messages.
1059 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
1061 * tests/check/libs/utils.c:
1062 (test_base_utils_install_plugins_do_callout):
1063 Don't hard-code temp directory for test helper; use GLib functions
1064 to write out file and do error checking etc.
1066 2007-02-02 Tim-Philipp Müller <tim at centricular dot net>
1068 * gst-libs/gst/utils/Makefile.am:
1069 * gst-libs/gst/utils/base-utils.h:
1070 * gst-libs/gst/utils/install-plugins.c:
1071 (gst_install_plugins_context_set_xid),
1072 (gst_install_plugins_context_new),
1073 (gst_install_plugins_context_free),
1074 (gst_install_plugins_get_helper),
1075 (gst_install_plugins_spawn_child),
1076 (gst_install_plugins_return_from_status),
1077 (gst_install_plugins_installer_exited),
1078 (gst_install_plugins_async), (gst_install_plugins_sync),
1079 (gst_install_plugins_return_get_name),
1080 (gst_install_plugins_installation_in_progress):
1081 * gst-libs/gst/utils/install-plugins.h:
1082 API: add API for applications to initiate installation of missing
1083 plugins, ie. gst_install_plugins_async() primarily.
1084 Based on libgimme-codec by Ryan Lortie.
1087 Add --with-install-plugins-helper configure option so distros can specify
1088 the path of the helper script or program to call when plugin installation
1089 is requested (distros: please do any argument munging in this helper
1090 script instead of patching GStreamer to pass arguments differently
1091 to another program directly).
1093 * docs/libs/gst-plugins-base-libs-docs.sgml:
1094 * docs/libs/gst-plugins-base-libs-sections.txt:
1095 Build and document new API.
1097 * tests/check/libs/utils.c: (result_cb),
1098 (test_base_utils_install_plugins_do_callout), (GST_START_TEST),
1099 (libgstbaseutils_suite):
1100 Some simple checks for the new API.
1102 2007-02-02 Tim-Philipp Müller <tim at centricular dot net>
1104 * tests/check/elements/audioconvert.c: (test_float_conversion):
1105 Add small test for 32bit float <=> 64bit float conversion (works
1106 only one way so far, 32=>64 produces structured noise).
1108 2007-02-02 Tim-Philipp Müller <tim at centricular dot net>
1110 * gst/audioconvert/gstaudioconvert.c:
1111 (set_structure_widths_32_and_64), (make_lossless_changes):
1112 We don't support floats with a width of 40, 48 or 56 bits.
1114 2007-02-02 Stefan Kost <ensonic@users.sf.net>
1116 * gst/audioconvert/audioconvert.c: (float), (double),
1117 (audio_convert_get_func_index):
1118 * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
1119 (make_lossless_changes):
1120 Support for 64-bit float audio in audioconvert (#339837)
1122 2007-02-01 Tim-Philipp Müller <tim at centricular dot net>
1124 Patch by: Holger Wansing <linux wansing-online de>
1128 Add German translation (#352069).
1130 2007-02-01 Sebastian Dröge <slomo@circular-chaos.org>
1132 reviewed by: Wim Taymans <wim@fluendo.com>
1134 * ext/ogg/gstoggmux.c: (gst_ogg_mux_ogg_pad_destroy_notify),
1135 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad):
1136 Use newly added GstCollectPads API to free the allocated resources in
1137 the GstOggPad structures (#402393).
1139 2007-01-31 Jan Schmidt <thaytan@mad.scientist.com>
1141 * gst/playback/gstplaybin.c: (gen_vis_element):
1142 Add audioresample+audioconvert in front of the visualisation
1143 element, so that elements like libvisual 0.4 that don't support all
1144 samplerates can work.
1148 2007-01-30 Tim-Philipp Müller <tim at centricular dot net>
1150 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property),
1151 (gst_play_base_bin_get_streaminfo_value_array):
1152 Take some locks and make a copy of the streaminfo value array we
1153 maintain while holding the lock, so that the application can
1154 retrieve the stream-info as a value array in a thread-safe way.
1156 2007-01-30 Wim Taymans <wim@fluendo.com>
1158 * gst/audioconvert/gstaudioconvert.c:
1159 Don't fail on 0 sized buffers. Fixes #396835.
1161 2007-01-29 David Schleef <ds@schleef.org>
1163 * gst/typefind/gsttypefindfunctions.c:
1164 Detect BBCD as video/x-dirac, so we can play raw dirac
1167 2007-01-29 Tim-Philipp Müller <tim at centricular dot net>
1169 * ext/theora/theoraenc.c: (theora_enc_chain):
1170 Check return value of theora_encode_header(), or we might try to
1171 allocate a random number of bytes. theora_encode_header() can fail
1172 if libtheora has been compiled with encoding support disabled.
1175 2007-01-29 Wim Taymans <wim@fluendo.com>
1177 * tests/check/gst/.cvsignore:
1178 Do as buildbot says.
1180 2007-01-29 Wim Taymans <wim@fluendo.com>
1182 * ext/libvisual/visual.c: (gst_visual_src_setcaps):
1183 Fix strides in libvisual. Gst uses X strides.
1184 Inspired by: <ed at catmur dot co dot uk> and
1185 <tim at centricular dot net>
1188 2007-01-27 Wim Taymans <wim@fluendo.com>
1190 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
1191 (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
1192 (gst_ogg_demux_get_prev_page), (gst_ogg_demux_do_seek),
1193 (gst_ogg_demux_perform_seek),
1194 (gst_ogg_demux_bisect_forward_serialno),
1195 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
1196 (gst_ogg_demux_find_chains), (gst_ogg_demux_handle_page),
1197 (gst_ogg_demux_chain), (gst_ogg_demux_combine_flows),
1198 (gst_ogg_demux_loop_reverse), (gst_ogg_demux_loop):
1199 * ext/ogg/gstoggdemux.h:
1200 Properly propagate streaming errors when we are scanning the file for
1201 chains so that we don't crash when shut down. Might fix some crashers
1202 when quickly switching oggs in RB such as #332503 and #378436.
1204 2007-01-26 Tim-Philipp Müller <tim at centricular dot net>
1206 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
1207 Map a gnome-vfs HOST_NOT_FOUND error into a GStreamer NOT_FOUND
1210 2007-01-25 Wim Taymans <wim@fluendo.com>
1212 * gst/playback/gstplaybasebin.c: (remove_source):
1213 Don't try to disconnect a signal from a finalized object.
1215 2007-01-25 Tim-Philipp Müller <tim at centricular dot net>
1217 * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose):
1218 Cast lock macro parameters to make sure we're actually accessing the
1219 lock member at the right class level. Free list itself in _dispose()
1220 as well and NULL it in case dispose gets called multiple times.
1222 2007-01-25 Edward Hervey <edward@fluendo.com>
1224 * gst/playback/gstdecodebin2.c:
1225 (gst_decode_bin_dispose),(gst_decode_bin_finalize):
1226 Free GstDecodeGroups no longer used.
1227 (gst_decode_group_expose):
1228 Don't unlock too many times !
1229 (deactivate_free_recursive):
1230 Free iterator once we're done with it.
1231 Fix for recursively deactivating elements (stop at ghostpads).
1233 2007-01-25 Tim-Philipp Müller <tim at centricular dot net>
1235 * gst/playback/gstplaybin.c: (handoff):
1236 Fix up caps on the frame buffer before we save it and potentially
1237 make it accessible to other threads via g_object_get; also use
1238 gst_buffer_replace() instead of gst_mini_object_replace().
1240 2007-01-25 Tim-Philipp Müller <tim at centricular dot net>
1242 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
1243 Make getting the current frame thread-safe.
1245 2007-01-25 Edward Hervey <edward@fluendo.com>
1247 * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize),
1248 (gst_decode_group_new), (gst_decode_group_free):
1249 Set queues to bigger sizes to cope with HD contents.
1250 Fix some mutex freeing and add comment about MT safe methods.
1252 2007-01-24 Tim-Philipp Müller <tim at centricular dot net>
1254 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
1255 (gst_text_overlay_text_event):
1256 Don't unnecessarily ref (and then leak) upstream events if the text
1257 pad is not linked. Fixes #399948.
1259 * tests/check/gst-plugins-base.supp:
1260 Add suppression for pango on edgy/x86 for textoverlay test.
1262 2007-01-24 Wim Taymans <wim@fluendo.com>
1264 * gst-libs/gst/rtp/gstrtpbuffer.h:
1265 Add some more fixed payloads.
1267 2007-01-23 Tim-Philipp Müller <tim at centricular dot net>
1269 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
1270 Error out properly if we get an error from libogg while reading the
1271 BOS page(s). Fixes crash parsing 'fuzzed' ogg file (#399340).
1273 2007-01-23 Tim-Philipp Müller <tim at centricular dot net>
1275 * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize):
1278 * tests/check/elements/playbin.c:
1279 (test_sink_usage_video_only_stream),
1280 (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
1281 (test_suburi_error_wrongproto), (test_missing_urisource_handler),
1282 (test_missing_suburisource_handler),
1283 (test_missing_primary_decoder), (playbin_suite):
1284 Run all tests once with decodebin and once with decodebin2.
1285 One test does not pass yet with decodebin2.
1287 2007-01-23 Edward Hervey <edward@fluendo.com>
1289 * ext/ogg/gstoggmux.c: (all_pads_eos), (gst_ogg_mux_collected):
1290 Fix the cases where oggmux doesn't properly figure out that all
1291 sinkpads have gone EOS, and therefore doesn't push out the remaining
1292 buffers and the final EOS event.
1295 2007-01-23 Julien MOUTTE <julien@moutte.net>
1297 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1298 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1299 Don't lock on navigation event push, just on keysym to string.
1300 Fixes #397673 again.
1302 2007-01-22 Edward Hervey <edward@fluendo.com>
1304 * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
1305 (get_current_group), (group_demuxer_event_probe),
1306 (gst_decode_group_expose), (deactivate_free_recursive),
1307 (gst_decode_group_free):
1309 Don't forget to emit 'no-more-pads' once a group is exposed.
1310 Cleanup elements from a DecodeGroup once we remove it.
1311 Protect call to gst_decode_group_expose() with the decodebin lock.
1313 2007-01-22 Julien MOUTTE <julien@moutte.net>
1315 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1316 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1317 Looking at Xorg code i can't figure out if that XKeysymToString
1318 function is thread sensible or not. Lock it just in case as
1319 recommended by Radek Doulik <rodo at ximian dot com>.
1321 2007-01-22 Julien MOUTTE <julien@moutte.net>
1323 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1324 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1325 Lock that X Call as well. Fixes #397673.
1327 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
1329 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
1330 Don't go into an endless loop if the file starts with 00 00 01 2X,
1331 like quicktime redirect files might. Fixes #396042.
1333 * tests/check/Makefile.am:
1334 * tests/check/gst/.cvsignore:
1335 * tests/check/gst/typefindfunctions.c: (GST_START_TEST),
1336 (typefindfunctions_suite):
1337 Add unit test for the above.
1339 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
1341 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1342 On second thought, use "depth" field rather than "bpp" field.
1344 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
1346 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1347 Camtasia caps apparently need a bpp field (#398875).
1349 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1351 * gst/playback/gstplaybasebin.c: (setup_subtitle),
1352 (gen_source_element), (gst_play_base_bin_change_state):
1353 Attempt at a better error message in case we don't have the required
1354 URI handler installed; post missing-plugin message also when we're
1355 missing an URI handler for the subtitle URI; clean up properly also
1356 when an error occurs and we never made it to PAUSED state.
1358 * tests/check/elements/playbin.c: (GST_START_TEST),
1360 Check that we're also getting a missing-plugin messsage for a
1361 missing subtitle URI handler (and clean up properly).
1363 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1365 * gst/playback/gstplaybasebin.c: (analyse_source), (setup_source):
1366 Plug a few reference leaks.
1368 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1370 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
1371 Lower probability a bit if the marker isn't right at the start,
1372 to decrease the chance of false positives.
1374 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1376 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
1377 Small mpeg2 system stream typefinding improvement: make typefinder
1378 probe a bit into the stream instead of just looking for a marker
1379 at the beginning. Fixes #397810.
1381 2007-01-18 Tim-Philipp Müller <tim at centricular dot net>
1383 * gst/audioconvert/gstchannelmix.c:
1384 Remove compatibility cruft for prehistoric GLib versions.
1386 2007-01-17 Tim-Philipp Müller <tim at centricular dot net>
1388 * gst/playback/Makefile.am:
1389 * gst/playback/gstdecodebin.c: (close_pad_link):
1390 * gst/playback/gstdecodebin2.c: (analyze_new_pad):
1391 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
1392 (gst_play_base_bin_handle_message_func), (unknown_type):
1393 Let decodebin be the element to post missing-plugin messages for
1394 missing decoders (rather than playbin); make playbin implement
1395 GstBin::handle_message so we can suppress missing-plugin messages
1396 for types we're not handling on purpose (don't want to bring up an
1397 installer in those cases).
1399 2007-01-16 Tim-Philipp Müller <tim at centricular dot net>
1401 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1402 * gst-libs/gst/tag/gstvorbistag.c:
1403 (gst_tag_list_to_vorbiscomment_buffer):
1404 * gst/typefind/gsttypefindfunctions.c: (vorbis_type_find):
1405 Fix potentially unaligned access (#397207).
1407 2007-01-16 Stefan Kost <ensonic@users.sf.net>
1409 * tests/examples/seek/seek.c: (set_scale), (update_scale),
1410 (do_seek), (stop_seek), (pause_cb), (stop_cb), (loop_toggle_cb),
1411 (rate_spinbutton_changed_cb), (msg_eos), (msg_segment_done),
1413 Allow to toggle looping while it plays. Fix callback prototype. Clean
1414 up code a bit more. Add copyright header.
1416 2007-01-16 Stefan Kost <ensonic@users.sf.net>
1418 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
1419 Red and blue mask was swapped (spotted by Dan Williams).
1421 2007-01-15 Stefan Kost <ensonic@users.sf.net>
1423 * gst-libs/gst/tag/gstid3tag.c:
1424 * gst-libs/gst/tag/gstvorbistag.c:
1425 Use new beats-per-minute tag from core.
1427 2007-01-15 Tim-Philipp Müller <tim at centricular dot net>
1430 Add new files with translatable strings, so they actually make it
1431 into the template file one day.
1433 2007-01-12 Andy Wingo <wingo@pobox.com>
1435 * gst-libs/gst/audio/gstbaseaudiosink.c
1436 (gst_base_audio_sink_fixate): Implement, stolen from baseaudiosrc.
1437 (gst_base_audio_sink_activate_pull): Remove the handwavey nego
1438 stuff, as the base class handles this now. Actually tell the ring
1440 (gst_base_audio_sink_callback): Cast the ring buffer correctly.
1441 How did this work before? Maybe I'm not as awesome a programmer as
1444 * gst-libs/gst/audio/gstbaseaudiosrc.c
1445 (gst_base_audio_src_fixate): Rework as a basesrc vmethod instead
1448 2007-01-12 Tim-Philipp Müller <tim at centricular dot net>
1450 * gst-libs/gst/utils/missing-plugins.c: (copy_and_clean_caps):
1451 Remove more fields so that the application can better blacklist
1452 formats that have been tried before.
1454 2007-01-12 Tim-Philipp Müller <tim at centricular dot net>
1456 * gst-libs/gst/audio/mixerutils.h:
1457 Add G_BEGIN_DECLS and G_END_DECLS guards so these helpers can be
1458 used when compiling with c++ compilers as well.
1460 2007-01-12 Tim-Philipp Müller <tim at centricular dot net>
1462 * gst/typefind/gsttypefindfunctions.c:
1465 2007-01-11 Tim-Philipp Müller <tim at centricular dot net>
1467 * gst/playback/gstplaybin.c: (post_missing_element_message),
1468 (gen_video_element), (gen_text_element), (gen_audio_element),
1470 Post missing-plugin messages also when we error out because
1471 converters, textoverlay or auto*sinks are missing (#161922).
1473 2007-01-10 Wim Taymans <wim@fluendo.com>
1475 * gst/playback/gstdecodebin.c: (dynamic_add), (close_pad_link),
1476 (is_demuxer_element), (new_caps):
1477 * gst/playback/gstplaybasebin.c: (source_new_pad):
1478 Fix the case where we try to ref a NULL element when we delay a link
1479 because of unfixed caps.
1480 Set the state of autoplugged decodebins to PAUSED.
1481 RTSP now works in playbin, we can remove it from the blacklist.
1483 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1485 * gst/playback/Makefile.am:
1486 * gst/playback/gstplaybasebin.c: (string_arr_has_str),
1487 (unknown_type), (setup_subtitle), (gen_source_element):
1488 * gst/playback/gstplaybin.c: (plugin_init):
1489 Post missing-plugin messages on the bus for missing sources and
1490 missing decoders/demuxers/depayloaders; fix error code used when
1491 we're missing an URI handler source; for media types that we are not
1492 handling on purpose at the moment, don't print "don't know how to
1493 handle xyz" messages to the terminal or post missing-plugin
1494 messages on the bus.
1496 * tests/check/elements/playbin.c: (create_playbin),
1497 (GST_START_TEST), (gst_codec_src_uri_get_type),
1498 (gst_codec_src_uri_get_protocols), (gst_codec_src_uri_get_uri),
1499 (gst_codec_src_uri_set_uri), (gst_codec_src_uri_handler_init),
1500 (gst_codec_src_init_type), (gst_codec_src_base_init),
1501 (gst_codec_src_create), (gst_codec_src_class_init),
1502 (gst_codec_src_init), (plugin_init), (playbin_suite):
1503 Add some tests for the missing-plugin stuff.
1505 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1508 * gst-libs/gst/Makefile.am:
1509 * gst-libs/gst/utils/Makefile.am:
1510 * gst-libs/gst/utils/base-utils.c: (gst_base_utils_init):
1511 * gst-libs/gst/utils/base-utils.h:
1512 * gst-libs/gst/utils/descriptions.c: (format_info_get_desc),
1513 (find_format_info), (caps_are_rtp_caps),
1514 (gst_base_utils_get_source_description),
1515 (gst_base_utils_get_sink_description),
1516 (gst_base_utils_get_decoder_description),
1517 (gst_base_utils_get_encoder_description),
1518 (gst_base_utils_get_element_description),
1519 (gst_base_utils_add_codec_description_to_tag_list),
1520 (gst_base_utils_get_codec_description), (gst_base_utils_list_all):
1521 * gst-libs/gst/utils/descriptions.h:
1522 * gst-libs/gst/utils/missing-plugins.c:
1523 (missing_structure_get_type), (copy_and_clean_caps),
1524 (gst_missing_uri_source_message_new),
1525 (gst_missing_uri_sink_message_new),
1526 (gst_missing_element_message_new),
1527 (gst_missing_decoder_message_new),
1528 (gst_missing_encoder_message_new),
1529 (missing_structure_get_string_detail),
1530 (missing_structure_get_caps_detail),
1531 (gst_missing_plugin_message_get_installer_detail),
1532 (gst_missing_plugin_message_get_description),
1533 (gst_is_missing_plugin_message):
1534 * gst-libs/gst/utils/missing-plugins.h:
1535 API: add new libgstbaseutils library with functions
1536 - to create and parse missing-plugins messages
1537 - that provide (translated) descriptions for caps/decoders/sources/etc.
1540 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
1541 * pkgconfig/gstreamer-plugins-base.pc.in:
1544 * docs/libs/gst-plugins-base-libs-docs.sgml:
1545 * docs/libs/gst-plugins-base-libs-sections.txt:
1546 Generate docs for new lib and API.
1548 * tests/check/Makefile.am:
1549 * tests/check/libs/.cvsignore:
1550 * tests/check/libs/utils.c: (missing_msg_check_getters),
1551 (GST_START_TEST), (libgstbaseutils_suite):
1552 Add some basic unit tests.
1554 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1556 * ext/ogg/Makefile.am:
1557 Dist gstoggdemux.h to fix 'make distcheck'.
1559 * sys/v4l/Makefile.am:
1560 Fix 'make distcheck' even more.
1562 2007-01-09 Wim Taymans <wim@fluendo.com>
1564 * docs/plugins/Makefile.am:
1565 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1566 * docs/plugins/gst-plugins-base-plugins-sections.txt:
1567 * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
1568 (gst_ogg_pad_query_types), (gst_ogg_pad_submit_page),
1569 (gst_ogg_chain_reset), (gst_ogg_chain_new_stream),
1570 (gst_ogg_demux_perform_seek):
1571 * ext/ogg/gstoggdemux.h:
1573 Add some more comments.
1576 2007-01-09 Wim Taymans <wim@fluendo.com>
1578 * ext/theora/theoradec.c:
1579 * ext/vorbis/vorbisdec.c:
1580 * gst-libs/gst/audio/gstringbuffer.c:
1581 (gst_ring_buffer_commit_full):
1582 * gst-libs/gst/audio/gstringbuffer.h:
1583 * gst-libs/gst/rtp/gstrtpbuffer.c:
1584 * gst-libs/gst/tag/gstvorbistag.c:
1585 Small documentation updates/fixes
1587 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1590 Require core CVS HEAD for Andy's basesrc/sink API additions.
1592 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
1594 Patch by: Günter Thelen <daedalus dot inc at gmx net>
1596 * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
1598 Add typefinder for flac-in-ogg in conformance with the ogg-mapping
1599 on flac.sf.net (there appear to be other versions of the first
1600 ogg page in the wild) (#391365).
1602 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
1605 Check if localtime_r() is available.
1607 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
1608 If localtime_r() is not available, fall back to localtime(). Should
1609 fix build on MingW (#393310).
1611 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
1613 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
1614 * gst/subparse/gstsubparse.h:
1615 Remove spurious 1000 subtrahend when calculating the timestamp from
1616 the frame number and the frame rate . Also, use the frames/second
1617 value specified in the first line of the file, if one is specified
1618 there. Should fix #357503.
1620 * tests/check/elements/subparse.c: (do_test),
1621 (test_tmplayer_do_test), (test_microdvd_do_test), (GST_START_TEST),
1623 Add some basic unit tests for the microdvd subtitle format.
1625 2007-01-07 Julien MOUTTE <julien@moutte.net>
1627 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1628 (gst_xvimage_buffer_finalize), (gst_xvimagesink_xvimage_new),
1629 (gst_xvimagesink_xvimage_put), (gst_lookup_xv_port_from_adaptor),
1630 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps),
1631 (gst_xvimagesink_set_xwindow_id),
1632 (gst_xvimagesink_set_event_handling),
1633 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
1634 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
1635 Patch by : Young-Ho Cha <ganadist at chollian dot net>
1637 Add an adaptor property to select a specific XV adaptor.
1638 * sys/xvimage/xvimagesink.h:
1640 2007-01-07 Julien MOUTTE <julien@moutte.net>
1642 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
1643 (gst_ximagesink_handle_xerror), (gst_ximagesink_ximage_new),
1644 (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
1645 (gst_ximagesink_handle_xevents), (gst_ximagesink_setcaps),
1646 (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
1647 (gst_ximagesink_expose), (gst_ximagesink_set_event_handling):
1648 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1649 (gst_xvimage_buffer_finalize), (gst_xvimagesink_handle_xerror),
1650 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
1651 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_setcaps),
1652 (gst_xvimagesink_change_state), (gst_xvimagesink_set_xwindow_id),
1653 (gst_xvimagesink_expose), (gst_xvimagesink_set_event_handling):
1654 Use flow_lock much more to protect every access to xwindow.
1655 Try to catch erros while creating images in case some drivers are
1656 just generating an XError when the requested image is too big.
1657 Should fix : #354698, #384008, #384060.
1658 * tests/icles/stress-xoverlay.c: (cycle_window), (create_window):
1659 Implement some stress testing of setting window xid.
1661 2007-01-07 Sébastien Moutte <sebastien@moutte.net>
1663 * win32/common/libgsaudio.def:
1664 Add new exported function.
1665 * win32/common/libgstogg.dsp:
1666 Add gstoggaviparse.c to the build.
1667 * win32/common/libgstvideoscale.dsp:
1668 Add vs_4tap.c to the build.
1669 * win32/common/libgstvorbis.dsp:
1670 Add vorbistag.c to the build.
1672 2007-01-06 Andy Wingo <wingo@pobox.com>
1674 * gst-libs/gst/audio/gstbaseaudiosink.c
1675 (gst_base_audio_sink_class_init)
1676 (gst_base_audio_sink_init):
1677 (gst_base_audio_sink_activate_pull): Add an activate_pull function
1678 to baseaudiosink, and tell basesink that we can work in pull mode.
1679 This way the ring buffer thread drives the pipeline directly, if
1680 pull mode is possible. There is some lingering nastiness regarding
1682 (gst_base_audio_sink_callback): Implement the callback to pull
1683 data. This interface is a bit light, though -- it should get a
1684 GstFlowReturn return value at least.
1686 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1688 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
1689 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
1690 * gst/playback/gstdecodebin2.c:
1691 (gst_decode_group_check_if_blocked):
1692 Printf format and missing argument fixes.
1694 2007-01-05 Jan Schmidt <thaytan@mad.scientist.com>
1696 * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header),
1697 (gst_ogm_parse_change_state):
1698 Activate pads before adding them to the element.
1700 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1702 * tests/examples/seek/scrubby.c: (main):
1703 * tests/examples/seek/seek.c: (main):
1704 Call g_thread_init() first thing in main() (see #391278).
1706 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1708 * tests/check/Makefile.am:
1709 * tests/check/libs/.cvsignore:
1710 * tests/check/libs/netbuffer.c: (GST_START_TEST),
1712 Add test for GstNetBuffer + gst_buffer_copy(). Disabled
1713 for the time being, since it's broken, see #393099.
1715 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1717 * tests/check/Makefile.am:
1718 Update to use GST_PLUGINS_BASE_CFLAGS as well.
1720 2007-01-04 Thomas Vander Stichele <thomas at apestaart dot org>
1723 split out GST_CFLAGS into GST_PLUGINS_BASE_CFLAGS and GST_CFLAGS
1724 so that GST_BASE_CFLAGS can go inbetween them, making sure
1725 we use uninstalled gst-libs headers
1726 * docs/libs/Makefile.am:
1727 * ext/alsa/Makefile.am:
1728 * ext/cdparanoia/Makefile.am:
1729 * ext/gnomevfs/Makefile.am:
1730 * ext/libvisual/Makefile.am:
1731 * ext/ogg/Makefile.am:
1732 * ext/theora/Makefile.am:
1733 * ext/vorbis/Makefile.am:
1734 * gst-libs/gst/audio/Makefile.am:
1735 * gst-libs/gst/cdda/Makefile.am:
1736 * gst-libs/gst/interfaces/Makefile.am:
1737 * gst-libs/gst/riff/Makefile.am:
1738 * gst-libs/gst/rtp/Makefile.am:
1739 * gst-libs/gst/tag/Makefile.am:
1740 * gst/adder/Makefile.am:
1741 * gst/audioconvert/Makefile.am:
1742 * gst/audiorate/Makefile.am:
1743 * gst/audioresample/Makefile.am:
1744 * gst/playback/Makefile.am:
1745 * gst/tcp/Makefile.am:
1746 * gst/videoscale/Makefile.am:
1747 * gst/volume/Makefile.am:
1748 * sys/ximage/Makefile.am:
1749 * sys/xvimage/Makefile.am:
1750 * tests/icles/Makefile.am:
1753 2007-01-04 Julien MOUTTE <julien@moutte.net>
1755 * gst-libs/gst/interfaces/xoverlay.c:
1756 (gst_x_overlay_handle_events):
1757 * gst-libs/gst/interfaces/xoverlay.h:
1758 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
1759 (gst_ximagesink_set_xwindow_id),
1760 (gst_ximagesink_set_event_handling),
1761 (gst_ximagesink_xoverlay_init), (gst_ximagesink_set_property),
1762 (gst_ximagesink_get_property), (gst_ximagesink_init),
1763 (gst_ximagesink_class_init):
1764 * sys/ximage/ximagesink.h:
1765 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new),
1766 (gst_xvimagesink_set_xwindow_id),
1767 (gst_xvimagesink_set_event_handling),
1768 (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_set_property),
1769 (gst_xvimagesink_get_property), (gst_xvimagesink_init),
1770 (gst_xvimagesink_class_init):
1771 * sys/xvimage/xvimagesink.h:
1772 * tests/icles/stress-xoverlay.c: (toggle_events), (create_window):
1773 Add a method to the XOverlay interface to allow disabling of
1774 event handling in x[v]imagesink elements. This will let X events
1775 propagate to parent windows which can be usefull in some cases.
1776 Be carefull that the application is then responsible of pushing
1777 navigation events and expose events to the video sink.
1780 2007-01-03 Tim-Philipp Müller <tim at centricular dot net>
1782 * gst-libs/gst/tag/gstvorbistag.c:
1783 * tests/check/libs/tag.c: (GST_START_TEST):
1784 Add vorbistag <=> GStreamer tag mapping for GST_TAG_LOCATION
1787 2007-01-01 Tim-Philipp Müller <tim at centricular dot net>
1791 * docs/design/Makefile.am:
1794 2006-12-27 Julien MOUTTE <julien@moutte.net>
1796 * docs/libs/gst-plugins-base-libs-sections.txt: Fix a documentation
1797 typo. Fixes: #390063.
1799 2006-12-27 Julien MOUTTE <julien@moutte.net>
1801 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
1802 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Plug a
1804 * win32/common/config.h: Updated.
1806 2006-12-22 Stefan Kost <ensonic@users.sf.net>
1808 * tests/check/elements/gdpdepay.c: (cleanup_gdpdepay),
1809 (setup_gdpdepay_streamheader):
1810 * tests/check/elements/gdppay.c: (cleanup_gdppay),
1811 (setup_gdppay_streamheader):
1812 Fix the dp tests, but activating the pads for the streamheader tests
1813 too and cleaning up conditionaly
1815 2006-12-22 Jan Schmidt <thaytan@mad.scientist.com>
1817 * gst/ffmpegcolorspace/avcodec.h:
1818 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1819 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
1820 (gst_ffmpegcsp_avpicture_fill):
1821 * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
1822 (img_get_alpha_info):
1823 Add 2 new caps arrangements, for 24-bit RGB and BGR in 32-bits, but at the
1824 other end of the word. Fixes: #387073.
1826 Add some inconsequential branch hints in a couple of places.
1828 2006-12-21 Tim-Philipp Müller <tim at centricular dot net>
1830 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1831 (gst_ffmpeg_caps_to_smpfmt):
1832 The "signed" field in raw audio caps is of boolean type, trying to
1833 extract the value with _get_int() will fail (fix to keep in sync with
1834 the copy in gst-ffmpeg)
1836 2006-12-21 Stefan Kost <ensonic@users.sf.net>
1838 * tests/check/elements/audioresample.c: (cleanup_audioresample):
1839 * tests/check/elements/audiotestsrc.c: (cleanup_audiotestsrc):
1840 * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
1842 * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay):
1843 * tests/check/elements/subparse.c: (teardown_subparse):
1844 * tests/check/elements/textoverlay.c: (cleanup_textoverlay):
1845 * tests/check/elements/videorate.c: (cleanup_videorate):
1846 * tests/check/elements/videotestsrc.c: (cleanup_videotestsrc):
1847 * tests/check/elements/volume.c: (cleanup_volume):
1848 * tests/check/elements/vorbisdec.c: (setup_vorbisdec),
1849 (cleanup_vorbisdec):
1850 * tests/check/elements/vorbistag.c: (setup_vorbistag),
1851 (cleanup_vorbistag):
1852 consistent pad (de)activation
1854 2006-12-20 Tim-Philipp Müller <tim at centricular dot net>
1856 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1857 Forgot to register the extensions.
1859 2006-12-20 Tim-Philipp Müller <tim at centricular dot net>
1861 * gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
1863 Add typefinder for VIVO files (my christmas present to the 90s).
1865 2006-12-16 Tim-Philipp Müller <tim at centricular dot net>
1867 * gst/playback/gstdecodebin.c: (type_found):
1868 Special-case the text/plain media type: we only want to recognise it
1869 as a 'raw' decoded media type if it comes from a demuxer or subtitle
1870 parser, but not if the entire stream is of text/plain type. If the
1871 entire stream is text/plain, we should just error out.
1873 This fixes playback of audio files with lyrics in totem. Totem can't
1874 distinguish between text files and subtitle files and passes any
1875 .txt file with the same basename as the main file to playbin as
1876 suburi, and playbin will then throw a 'subtitle found, but no video
1877 stream' error, which isn't entirely helpful. See #380342.
1879 Also, with this change we'll show a slightly more correct error
1880 message in case totem passes a playlist file to us (although a
1881 custom error message wording instead of the default text would
1882 probably not be a bad idea either).
1884 Same problem also needs to be fixed for playbin+decodebin2.
1886 * tests/check/Makefile.am:
1887 * tests/check/elements/decodebin.c: (src_handoff_cb),
1888 (decodebin_new_decoded_pad_cb), (GST_START_TEST),
1890 Add simple unit test for decodebin for the above.
1892 2006-12-16 Tim-Philipp Müller <tim at centricular dot net>
1894 * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
1895 * gst/playback/gstdecodebin2.c: (gst_decode_bin_change_state):
1896 Refuse to change state to READY when we failed to create any of the
1897 required elements in our instance init function.
1899 2006-12-15 Tim-Philipp Müller <tim at centricular dot net>
1901 * docs/libs/gst-plugins-base-libs-sections.txt:
1902 Small docs fixes/updates.
1904 * gst-libs/gst/video/gstvideosink.h:
1905 Remove nonfunctional GST_VIDEO_SINK_CLOCK macro which is a leftover
1906 from the 0.9 days (GST_BASE_SINK_CLOCK, which it points to, was
1907 removed from the base sink API between 0.9.6 and 0.9.7).
1908 API: add GST_VIDEO_SINK_CAST and use it for the height/width
1909 accessor macros, so we don't do a runtime GObject type check every
1912 2006-12-15 Thomas Vander Stichele <thomas at apestaart dot org>
1915 * gst-plugins-base.doap:
1916 * gst-plugins-base.spec.in:
1919 2006-12-09 Tim-Philipp Müller <tim at centricular dot net>
1921 Patch by: Jens Granseuer <jensgr at gmx net>
1923 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
1924 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
1925 (gst_base_rtp_audio_payload_handle_frame_based_buffer),
1926 (gst_base_rtp_audio_payload_handle_sample_based_buffer):
1927 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
1928 Declare variables at the beginning of a block. Fixes #383195.
1930 2006-12-07 Jan Schmidt <thaytan@mad.scientist.com>
1933 Bump version nano - back to CVS.
1936 === release 0.10.11 ===
1938 2006-12-06 Jan Schmidt <thaytan@mad.scientist.com>
1941 releasing 0.10.11, "Dumb things"
1943 2006-12-05 Jan Schmidt <thaytan@mad.scientist.com>
1945 * gst/playback/gstdecodebin.c: (find_dynamic), (dynamic_add),
1946 (close_pad_link), (elem_is_dynamic), (unlinked), (close_link):
1947 Handle the case where an element has multiple pads with
1948 unfixed caps as well as still possibly producing more dynamic
1949 pads by storing each case as a distinct entry in the dynamic list.
1952 2006-12-04 Wim Taymans <wim@fluendo.com>
1954 * gst/playback/gstdecodebin.c: (close_pad_link):
1955 Fix #382223, add more dynamic caps handling.
1957 2006-12-04 Wim Taymans <wim@fluendo.com>
1959 reviewed by: <delete if not using a buddy>
1961 * gst-libs/gst/audio/gstringbuffer.h:
1962 * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_init),
1963 (gst_netaddress_set_ip4_interface),
1964 (gst_netaddress_set_ip6_interface), (gst_netaddress_set_loopback),
1965 (gst_netaddress_set_ttl), (gst_netaddress_get_ip4_interface),
1966 (gst_netaddress_get_ip6_interface), (gst_netaddress_get_loopback),
1967 (gst_netaddress_get_ttl):
1968 * gst-libs/gst/netbuffer/gstnetbuffer.h:
1969 * gst/playback/gstdecodebin.c: (close_pad_link):
1970 * tests/examples/seek/seek.c: (end_scrub), (end_seek), (do_seek),
1971 (seek_cb), (stop_seek), (rate_spinbutton_changed_cb):
1972 * win32/common/config.h:
1974 2006-12-01 Michael Smith <msmith@fluendo.com>
1976 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
1977 Delete bad debug code.
1980 2006-12-01 Jan Schmidt <thaytan@mad.scientist.com>
1982 * gst/videoscale/vs_4tap.c:
1984 * win32/common/config.h:
1985 * win32/vs8/libgstvideoscale.vcproj:
1986 Fix compilation on win32 under VS8
1987 Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
1988 Partially fixes #381175
1990 2006-11-30 Michael Smith <msmith@fluendo.com>
1992 * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
1994 It would be very bad if, after a discont buffer, we thought every
1995 single following buffer was also discont. So, add to the test to
1996 ensure that this isn't the case.
1998 * ext/theora/theoraenc.c: (theora_enc_is_discontinuous):
1999 ... it was the case. So fix it.
2001 2006-11-28 Wim Taymans <wim@fluendo.com>
2003 * gst/playback/gstplaybasebin.c: (check_queue_event):
2006 * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
2007 Fix width and height range from 16 - 4096 to 1 - MAXINT, just like the
2008 padtemplate caps. Refixes #357577.
2010 2006-11-28 Wim Taymans <wim@fluendo.com>
2012 * gst/playback/gstplaybasebin.c: (check_queue_event),
2013 (queue_threshold_reached), (queue_out_of_data),
2014 (gen_preroll_element):
2015 Add event probe to see when EOS is in a queue and we can disable the
2016 underrun signals. Fixes #357577.
2018 2006-11-28 Edward Hervey <edward@fluendo.com>
2020 * gst/playback/Makefile.am:
2021 * gst/playback/gstdecodebin2.c: (gst_decode_bin_get_type),
2022 (_gst_boolean_accumulator), (gst_decode_bin_class_init),
2023 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
2024 (gst_decode_bin_init), (gst_decode_bin_dispose),
2025 (gst_decode_bin_finalize), (gst_decode_bin_set_property),
2026 (gst_decode_bin_get_property), (gst_decode_bin_set_caps),
2027 (gst_decode_bin_get_caps), (gst_decode_bin_autoplug_continue),
2028 (gst_decode_bin_autoplug_sort), (analyze_new_pad), (connect_pad),
2029 (connect_element), (expose_pad), (type_found),
2030 (pad_added_group_cb), (pad_removed_group_cb),
2031 (no_more_pads_group_cb), (pad_added_cb), (pad_removed_cb),
2032 (no_more_pads_cb), (find_compatibles), (is_demuxer_element),
2033 (are_raw_caps), (multi_queue_overrun_cb),
2034 (multi_queue_underrun_cb), (gst_decode_group_new),
2035 (get_current_group), (group_demuxer_event_probe),
2036 (gst_decode_group_control_demuxer_pad),
2037 (gst_decode_group_control_source_pad),
2038 (gst_decode_group_check_if_blocked),
2039 (gst_decode_group_check_if_drained), (gst_decode_group_expose),
2040 (gst_decode_group_hide), (gst_decode_group_free),
2041 (gst_decode_group_set_complete), (source_pad_blocked_cb),
2042 (source_pad_event_probe), (gst_decode_pad_new), (add_fakesink),
2043 (remove_fakesink), (find_sink_pad), (gst_decode_bin_change_state),
2045 New decodebin2 element.
2047 * gst/playback/gstplay-marshal.list:
2048 Added marshallers for new signals in decodebin2
2049 * gst/playback/gstplaybasebin.c: (setup_subtitle), (make_decoder):
2050 Use decodebin2 if *and only if* the USE_DECODEBIN2 environment variable
2053 2006-11-28 Wim Taymans <wim@fluendo.com>
2055 * gst/playback/gstplaybasebin.c: (setup_source),
2056 (gst_play_base_bin_change_state):
2057 Disable rtsp:// uris for the release, it's not good enough yet.
2060 2006-11-26 Wim Taymans <wim@fluendo.com>
2062 * ext/theora/theoradec.c: (gst_theora_dec_reset),
2063 (theora_dec_push_forward), (theora_dec_push_reverse),
2064 (theora_handle_data_packet), (theora_dec_decode_buffer),
2065 (theora_dec_flush_decode), (theora_dec_chain_reverse),
2066 (theora_dec_chain_forward), (theora_dec_chain):
2067 Implement reverse playback.
2069 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
2070 (vorbis_dec_decode_buffer), (vorbis_dec_flush_decode),
2071 (vorbis_dec_chain_forward):
2072 Clear buffers used for reverse playback in _reset.
2073 No need to set the eos flag, we clip samples using the segment.
2075 2006-11-24 Wim Taymans <wim@fluendo.com>
2077 * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
2078 (gst_ogg_pad_init), (gst_ogg_pad_dispose), (gst_ogg_pad_reset),
2079 (gst_ogg_pad_stream_out), (gst_ogg_pad_submit_page),
2080 (gst_ogg_chain_reset), (gst_ogg_demux_perform_seek):
2082 Handle continued pages in reverse mode.
2084 2006-11-24 Wim Taymans <wim@fluendo.com>
2086 * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
2087 (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
2088 (vorbis_dec_flush_decode):
2090 Don't try to add invalid timestamps.
2091 Clipping will unref the buffer.
2093 2006-11-24 Stefan Kost <ensonic@users.sf.net>
2095 * gst/adder/gstadder.h:
2096 * gst/audiotestsrc/gstaudiotestsrc.h:
2097 remove obsolete _factory_init protos
2099 2006-11-24 Stefan Kost <ensonic@users.sf.net>
2101 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
2102 Fix spacing in debug message.
2104 2006-11-23 Wim Taymans <wim@fluendo.com>
2106 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
2107 (gst_ogg_demux_chain):
2108 Don't just ignore return values from _pad_push().
2109 Small debug improvements.
2111 2006-11-23 Michael Smith <msmith@fluendo.com>
2113 * ext/ogg/gstoggmux.c: (gst_ogg_mux_process_best_pad):
2114 If our incoming buffer is marked as DISCONT, then increment the page
2115 number (so that the discontinuity is marked in the final ogg
2116 bitstream) and flush the previous page.
2118 2006-11-22 Michael Smith <msmith@fluendo.com>
2120 * ext/theora/gsttheoraenc.h:
2121 * ext/theora/theoraenc.c: (gst_theora_enc_init),
2122 (theora_enc_reset), (theora_enc_clear), (theora_enc_sink_setcaps),
2123 (theora_buffer_from_packet), (theora_enc_is_discontinuous),
2124 (theora_enc_chain), (theora_enc_change_state):
2125 Mark discontinuities of > 3/4 of a frame, reinit encoder.
2127 * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
2128 (GST_START_TEST), (theoraenc_suite):
2129 Enable discontinuity test, fix it.
2131 2006-11-21 Tim-Philipp Müller <tim at centricular dot net>
2133 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
2134 (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
2135 (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
2136 (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
2137 (gst_text_overlay_change_state):
2138 * ext/pango/gsttextoverlay.h:
2139 Some textoverlay fixes: for one, in the video chain function,
2140 actually wait for a text buffer to come in if there is none at the
2141 moment and there should be one; also, deal more gracefully with
2142 incoming buffers that do not have a timestamp or duration; discard
2143 text buffer when not needed any longer. Fixes #341681.
2145 * tests/check/Makefile.am:
2146 * tests/check/elements/.cvsignore:
2147 * tests/check/elements/textoverlay.c:
2148 (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2),
2149 (setup_textoverlay), (buffer_is_all_black), (create_black_buffer),
2150 (create_text_buffer), (cleanup_textoverlay), (GST_START_TEST),
2151 (test_video_waits_for_text_send_text_newsegment_thread),
2152 (test_video_waits_for_text_shutdown_element),
2153 (test_render_continuity_push_video_buffers_thread),
2154 (textoverlay_suite):
2155 Add some unit tests for textoverlay.
2157 2006-11-21 Tim-Philipp Müller <tim at centricular dot net>
2159 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
2160 Avoid integer underflow when the found probability for mp3 is
2161 smaller than the 'penalty' we subtract if there's not a clean
2162 mp3 header sync at offset 0.
2164 2006-11-21 Stefan Kost <ensonic@users.sf.net>
2166 * docs/libs/gst-plugins-base-libs-sections.txt:
2167 Add some new symbols to the docs
2169 2006-11-20 Tim-Philipp Müller <tim at centricular dot net>
2171 * tests/check/Makefile.am:
2172 * tests/check/elements/ffmpegcolorspace.c:
2173 (ffmpegcolorspace_suite):
2174 Enable ffmpegcolorspace test now that the RGBA32 issue is fixed
2175 (for now not for valgrinding though, since it takes too long).
2177 2006-11-20 Wim Taymans <wim@fluendo.com>
2179 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
2180 (gst_ffmpeg_pixfmt_to_caps):
2181 Fix RGBA32 caps. Fixes #357038.
2183 2006-11-20 Tim-Philipp Müller <tim at centricular dot net>
2185 * gst-libs/gst/interfaces/mixertrack.h:
2186 Add FIXME so we can add some padding here in 0.11
2188 2006-11-19 Tim-Philipp Müller <tim at centricular dot net>
2190 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
2191 Fix GstBaseRTPAudioPayload structure so the whole GObject
2192 inheritance business actually works (parent class instance structure
2193 must always come first in the derived class instance structure).
2195 2006-11-16 Tim-Philipp Müller <tim at centricular dot net>
2197 * gst/videotestsrc/Makefile.am:
2198 * tests/check/Makefile.am:
2199 Make sure our checks and the videotestsrc plugin link against the
2200 local uninstalled gst libs and not any installed gst libs that
2201 might happen to exist as well.
2203 * tests/check/elements/adder.c: (message_received),
2204 (test_event_message_received), (test_play_twice_message_received):
2205 * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
2206 Fix compiler warnings when compiling against core with disabled
2209 2006-11-16 Michael Smith <msmith@fluendo.com>
2211 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
2212 (gst_audio_rate_sink_event), (gst_audio_rate_chain):
2213 Fix audiorate, so that it accurately sets offsets and timestamps.
2214 Doesn't change the fundamental algorithmic decisions; so should be
2217 * tests/check/Makefile.am:
2218 Enable audiorate test now that it passes.
2220 2006-11-09 Stefan Kost <ensonic@users.sf.net>
2222 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
2223 clear xv when going to NULL, remove // commented non-existant proto
2225 * tests/examples/seek/seek.c: (main):
2226 add missing tooltip description for scrub and play_scrub
2228 2006-11-14 David Schleef <ds@schleef.org>
2231 Bump liboil requirement to 0.3.8.
2232 * gst-libs/gst/riff/riff-media.c:
2234 * gst/videoscale/vs_image.h:
2235 * gst/videoscale/vs_scanline.h:
2236 Use liboil's stdint.h.
2237 * gst/videotestsrc/videotestsrc.c:
2238 Remove liboil related ifdef's, since they aren't needed now, and
2239 won't work with future versions.
2241 2006-11-14 David Schleef <ds@schleef.org>
2243 * gst/videoscale/Makefile.am:
2244 * gst/videoscale/gstvideoscale.c:
2245 * gst/videoscale/gstvideoscale.h:
2246 * gst/videoscale/vs_4tap.c:
2247 * gst/videoscale/vs_4tap.h:
2248 * gst/videoscale/vs_image.c:
2249 * gst/videoscale/vs_image.h:
2250 * gst/videoscale/vs_scanline.c:
2251 * gst/videoscale/vs_scanline.h:
2252 Add a 4-tap image scaler. Theoretically looks much prettier.
2253 The tap calculation could use some improvement.
2255 2006-11-14 Wim Taymans <wim@fluendo.com>
2257 Patch by: Jan David Mol <j dot j dot d dot mol at tudelft dot nl>
2259 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds),
2260 (gst_riff_parse_strf_iavs):
2261 * gst/subparse/gstsubparse.c: (convert_encoding):
2262 * gst/tcp/gstmultifdsink.c:
2263 (gst_multi_fd_sink_handle_client_write):
2264 * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
2265 (gst_tcp_read_buffer), (gst_tcp_gdp_read_caps),
2266 (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
2267 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_render):
2268 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
2269 (gst_ximagesink_ximage_new):
2270 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
2271 Various gsize and gssize printf fixes. Fixes #372507.
2273 2006-11-13 Wim Taymans <wim@fluendo.com>
2275 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
2276 (vorbis_dec_push_forward), (vorbis_dec_push_reverse),
2277 (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
2278 (vorbis_dec_flush_decode), (vorbis_dec_chain_reverse),
2279 (vorbis_dec_chain_forward), (vorbis_dec_chain):
2280 * ext/vorbis/vorbisdec.h:
2281 First stab at vorbis reverse playback.
2283 2006-11-13 Wim Taymans <wim@fluendo.com>
2285 * gst-libs/gst/audio/gstbaseaudiosink.c:
2286 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
2287 * gst-libs/gst/audio/gstbaseaudiosink.h:
2288 Make the clock sync code more accurate wrt resampling and playback
2291 * gst-libs/gst/audio/gstringbuffer.c:
2292 (gst_ring_buffer_commit_full), (gst_ring_buffer_commit):
2293 * gst-libs/gst/audio/gstringbuffer.h:
2294 Use better algorithm to interpolate sample rates.
2296 2006-11-13 Michael Smith <msmith@fluendo.com>
2298 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page):
2299 Improve a debug line slightly.
2301 * ext/ogg/gstogmparse.c: (gst_ogm_parse_plugin_init):
2302 Call gst_riff_init() in plugin_init, to avoid getting errors from
2303 the debug system (unrelated changes to another plugin made this turn
2306 2006-11-10 Tim-Philipp Müller <tim at centricular dot net>
2308 Patch by: Sergey Scobich <sergery.scobich at gmail com>
2310 * win32/common/libgsttag.def:
2311 Add missing symbol (#366492).
2313 2006-11-09 Tim-Philipp Müller <tim at centricular dot net>
2315 * gst/playback/gststreamselector.c: (gst_stream_selector_dispose):
2316 Don't unref a NULL pad.
2318 2006-11-09 Wim Taymans <wim@fluendo.com>
2320 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
2321 (gst_ogg_demux_get_prev_page), (gst_ogg_demux_perform_seek),
2322 (gst_ogg_demux_handle_page), (gst_ogg_demux_chain),
2323 (gst_ogg_demux_loop_forward), (gst_ogg_demux_loop_reverse),
2324 (gst_ogg_demux_loop):
2325 Implement first stab at reverse playback.
2327 2006-11-07 Stefan Kost <ensonic@users.sf.net>
2329 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
2330 (gst_riff_create_video_template_caps):
2331 add h263/h264 variants to the caps, Fixes #363118
2333 2006-11-06 Tim-Philipp Müller <tim at centricular dot net>
2335 * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
2336 * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
2337 Use g_strerror instead of strerror so we get UTF-8.
2339 2006-11-03 David Schleef <ds@schleef.org>
2341 * ext/ogg/gstoggdemux.c:
2342 * ext/ogg/gstoggmux.c:
2343 Add/remove KW-DIRAC header here, since it is ogg-specific.
2345 2006-11-03 Michael Smith <msmith@fluendo.com>
2347 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
2348 Recognise more mpeg4 elementary video streams.
2350 2006-11-02 Edward Hervey <edward@fluendo.com>
2352 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
2353 Lower the probability of mp3 typefinding functions if we don't find a
2354 valid mp3 header at the start of the file.
2357 2006-11-02 Wim Taymans <wim@fluendo.com>
2359 * ext/theora/gsttheoradec.h:
2360 * ext/theora/theoradec.c: (gst_theora_dec_init),
2361 (theora_dec_sink_event), (theora_dec_chain_forward),
2362 (theora_dec_flush_decode), (theora_dec_chain_reverse),
2364 Document and partially implement an algorithm for doing reverse playback
2367 2006-11-02 Tim-Philipp Müller <tim at centricular dot net>
2369 Patch by: Sergey Scobich <sergey.scobich at gmail com>
2371 * win32/common/config.h:
2372 * win32/common/interfaces-enumtypes.c:
2373 * win32/common/libgsttag.def:
2374 * win32/vs8/gst-plugins-base.sln:
2375 * win32/vs8/libgstaudioresample.vcproj:
2376 * win32/vs8/libgstinterfaces.vcproj:
2377 * win32/vs8/libgstogg.vcproj:
2378 * win32/vs8/libgstriff.vcproj:
2379 * win32/vs8/libgsttag.vcproj:
2380 * win32/vs8/libgsttheora.vcproj:
2381 * win32/vs8/libgstvideoscale.vcproj:
2382 * win32/vs8/libgstvorbis.vcproj:
2383 Misc. VS8 build fixes: fix syntax in config.h, add missing entries
2384 to libgsttag.def; add missing dependencies for some vs8 projects;
2385 re-arrange placement of .def files in vs8 projects (#366334).
2387 2006-11-01 Tim-Philipp Müller <tim at centricular dot net>
2390 Remove unused variable.
2392 * ext/ogg/gstoggdemux.c:
2393 Fix Wim's surname in plugin description.
2395 2006-10-31 Wim Taymans <wim@fluendo.com>
2397 * gst-plugins-base.spec.in:
2398 spec new .h file. Fixes #368310.
2400 2006-10-31 Michael Smith <msmith@fluendo.com>
2402 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
2403 (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
2404 (gst_multi_fd_sink_get_stats),
2405 (gst_multi_fd_sink_remove_client_link),
2406 (gst_multi_fd_sink_queue_buffer),
2407 (gst_multi_fd_sink_handle_clients):
2408 * gst/tcp/gstmultifdsink.h:
2409 Make using the remove or clear signals threadsafe.
2410 Make calling get-stats with an invalid fd not segfault.
2413 2006-10-31 Wim Taymans <wim@fluendo.com>
2415 * gst-libs/gst/rtp/Makefile.am:
2416 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2417 (gst_base_rtp_audio_payload_init):
2418 Fix and activate base audio payloader.
2420 2006-10-28 Tim-Philipp Müller <tim at centricular dot net>
2422 * gst/typefind/gsttypefindfunctions.c: (qtif_type_find),
2424 Add typefinder for QuickTime Image Files (see #366156).
2426 2006-10-28 Tim-Philipp Müller <tim at centricular dot net>
2428 * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
2429 Another typo fix (#366212).
2431 2006-10-27 Wim Taymans <wim@fluendo.com>
2433 * gst/volume/gstvolume.c: (volume_transform_ip):
2434 Use stream time to synchronize volume property instead of rather random
2435 timestamps. This is needed when gnonlin does its time shifting.
2437 2006-10-27 Wim Taymans <wim@fluendo.com>
2439 Patch by: Mark Nauwelaerts <manauw at skynet dot be>
2441 * ext/ogg/gstoggmux.c: (gst_ogg_mux_release_pad):
2442 Remove the pad from the element in release_pad. Fixes #364812.
2444 2006-10-27 Tim-Philipp Müller <tim at centricular dot net>
2446 * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
2447 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
2448 Explicitly create our custom buffer classes at a thread-safe
2449 location as well, since g_type_class_ref() doesn't seem to be
2450 entirely thread-safe either (#365501; also see #349410).
2452 2006-10-26 Tim-Philipp Müller <tim at centricular dot net>
2454 * gst-libs/gst/riff/riff-read.c: (freeform_string_to_utf8),
2455 (gst_riff_parse_info):
2456 If strings in INFO chunk are not UTF-8, do something similar to
2457 what we do for ID3v1 tags: check a number of environment variables
2458 (GST_AVI_TAG_ENCODING, GST_RIFF_TAG_ENCODING, GST_TAG_ENCODING) for
2459 character sets to try, otherwise try the current locale and/or fall
2460 back on ISO-8859-1. Fixes #360552.
2462 2006-10-23 Tim-Philipp Müller <tim at centricular dot net>
2464 * gst/videotestsrc/gstvideotestsrc.c:
2465 (gst_video_test_src_pattern_get_type),
2466 (gst_video_test_src_set_pattern):
2467 * gst/videotestsrc/gstvideotestsrc.h:
2468 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_checkers1),
2469 (gst_video_test_src_checkers2), (gst_video_test_src_checkers4),
2470 (gst_video_test_src_checkers8):
2471 * gst/videotestsrc/videotestsrc.h:
2472 Add a bunch of exciting new checkers patterns.
2474 2006-10-23 Tim-Philipp Müller <tim at centricular dot net>
2476 * gst/subparse/Makefile.am:
2477 * gst/subparse/gstsubparse.c:
2478 (gst_sub_parse_data_format_autodetect),
2479 (gst_sub_parse_format_autodetect), (handle_buffer),
2480 (gst_sub_parse_chain), (gst_subparse_type_find), (plugin_init):
2481 * gst/subparse/gstsubparse.h:
2482 * gst/subparse/tmplayerparse.c: (tmplayer_parse_line),
2484 * gst/subparse/tmplayerparse.h:
2485 Add support for TMPlayer-type subtitles (#362845).
2487 * tests/check/elements/subparse.c: (test_tmplayer_do_test),
2488 (GST_START_TEST), (subparse_suite):
2489 Add some basic unit tests for the above.
2491 2006-10-23 Tim-Philipp Müller <tim at centricular dot net>
2493 * tests/check/elements/audiorate.c: (test_injector_base_init),
2494 (test_injector_class_init), (test_injector_chain),
2495 (test_injector_init), (probe_cb), (do_perfect_stream_test),
2496 (GST_START_TEST), (audiorate_suite):
2497 More tests for audiorate: inject buffers to check behaviour when
2500 2006-10-21 Tim-Philipp Müller <tim at centricular dot net>
2502 * tests/check/Makefile.am:
2503 * tests/check/elements/.cvsignore:
2504 * tests/check/elements/audiorate.c: (probe_cb), (got_buf),
2505 (do_perfect_stream_test), (GST_START_TEST), (audiorate_suite):
2506 Add some basic unit tests for audiorate. Disabled at the moment
2507 since it doesn't pass yet (see bug #363119).
2509 2006-10-20 Tim-Philipp Müller <tim at centricular dot net>
2511 * gst/subparse/gstsubparse.c: (subrip_fix_up_markup),
2512 (parse_subrip), (handle_buffer):
2513 Add missing closing tags for markup and fix broken markup,
2514 otherwise pango won't render anything (fixes #357531). Also,
2515 make sure the text we send out is always NUL-terminated
2516 (better safe than sorry etc.).
2518 * tests/check/elements/subparse.c: (test_srt_do_test),
2520 Some more tests for .srt incl. tests for the above stuff.
2522 2006-10-20 Julien MOUTTE <julien@moutte.net>
2524 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
2525 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
2526 Patch by: Stefan Kost <ensonic@users.sf.net>
2527 Try to redraw borders only when needed. Apparently this consumes
2528 resources on small devices... :-O (#363607)
2530 2006-10-20 Michael Smith <msmith@fluendo.com>
2532 * gst/tcp/gstmultifdsink.c:
2533 (gst_multi_fd_sink_client_queue_buffer):
2534 If caps change, then update the client's idea of the caps so that we
2535 don't end up re-sending streamheaders for every single buffer after
2538 2006-10-20 Michael Smith <msmith@fluendo.com>
2540 * ext/ogg/gstoggparse.c: (gst_ogg_parse_dispose),
2541 (gst_ogg_parse_append_header), (gst_ogg_parse_chain):
2542 Set caps on pushed buffers; fix up refcounting of caps objects.
2544 2006-10-19 Tim-Philipp Müller <tim at centricular dot net>
2546 * gst/typefind/gsttypefindfunctions.c: (mmsh_type_find),
2548 Typefind mmsh header data packet to application/x-mmsh (#362625).
2550 2006-10-19 Tim-Philipp Müller <tim at centricular dot net>
2552 * tests/check/Makefile.am:
2553 * tests/check/elements/.cvsignore:
2554 * tests/check/elements/subparse.c: (buffer_from_static_string),
2555 (setup_subparse), (teardown_subparse), (test_srt_do_test),
2556 (GST_START_TEST), (subparse_suite):
2557 Add very simple unit test for subparse.
2559 2006-10-19 Tim-Philipp Müller <tim at centricular dot net>
2561 * gst/subparse/gstsubparse.c: (strip_trailing_newlines),
2563 Strip trailing newlines from subtitle text output.
2565 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2567 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
2568 (gst_sub_parse_change_state):
2569 Fix memleak; clear subparse->textbuf n state change function.
2571 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2573 * gst/subparse/gstsubparse.c:
2574 (gst_sub_parse_data_format_autodetect):
2575 Don't require subrip (.srt) files to start with a chunk number of 1.
2577 2006-10-18 Wim Taymans <wim@fluendo.com>
2579 * gst-libs/gst/audio/gstbaseaudiosink.c:
2580 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
2581 * gst-libs/gst/audio/gstbaseaudiosink.h:
2582 Extract rate from the NEWSEGMENT event.
2583 Use commit_full to also take rate adjustment into account when writing
2584 samples to the ringbuffer.
2586 * gst-libs/gst/audio/gstringbuffer.c:
2587 (gst_ring_buffer_commit_full), (gst_ring_buffer_commit),
2588 (gst_ring_buffer_read):
2589 * gst-libs/gst/audio/gstringbuffer.h:
2590 Added _commit_full() to also take rate into account.
2591 Use simple interpolation algorithm to resample audio.
2592 API: gst_ring_buffer_commit_full()
2594 * tests/examples/seek/scrubby.c: (speed_cb), (do_seek):
2595 * tests/examples/seek/seek.c: (segment_done):
2596 Don't try to seek with 0.0 rate, just pause instead.
2597 Remove bogus debug line.
2599 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2601 * gst/playback/gstplaybasebin.c: (subbin_startup_sync_msg),
2603 Catch async errors when starting up the subtitle bin, so we can
2604 stop waiting and continue with the main film instead of hanging
2605 forever. Fixes #339366.
2607 * tests/check/elements/playbin.c: (playbin_suite):
2608 Enable unit test for the above.
2610 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2612 * tests/check/Makefile.am:
2613 * tests/check/elements/.cvsignore:
2614 * tests/check/elements/playbin.c: (GST_START_TEST),
2615 (gst_red_video_src_uri_get_type),
2616 (gst_red_video_src_uri_get_protocols),
2617 (gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri),
2618 (gst_red_video_src_uri_handler_init),
2619 (gst_red_video_src_init_type), (gst_red_video_src_base_init),
2620 (gst_red_video_src_create), (gst_red_video_src_class_init),
2621 (gst_red_video_src_init), (plugin_init), (playbin_suite):
2622 Some small and basic unit tests for playbin; not very useful yet,
2623 but at least a start.
2625 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2627 * gst/playback/gstplaybin.c: (setup_sinks):
2628 The old pad activation spiel.
2630 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2632 * gst/playback/gstplaybasebin.c: (setup_source):
2633 Don't hang forever if the subbin already fails to start up in
2634 the state change to PAUSED (#339366).
2636 2006-10-17 Tim-Philipp Müller <tim at centricular dot net>
2638 * gst-libs/gst/interfaces/tuner.c: (gst_tuner_list_channels),
2639 (gst_tuner_set_channel), (gst_tuner_get_channel),
2640 (gst_tuner_list_norms), (gst_tuner_set_norm), (gst_tuner_get_norm),
2641 (gst_tuner_set_frequency), (gst_tuner_get_frequency),
2642 (gst_tuner_signal_strength), (gst_tuner_find_norm_by_name),
2643 (gst_tuner_find_channel_by_name):
2644 Fix some function guards, add some more function guards.
2646 2006-10-17 Jan Schmidt <thaytan@mad.scientist.com>
2648 * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
2649 (remove_element_chain):
2650 Don't return a pad from get_our_ghost_pad unless it is actually the
2652 Change a cast in remove_element_chain slightly.
2654 2006-10-13 Julien MOUTTE <julien@moutte.net>
2656 * tests/examples/seek/seek.c: (do_seek), (start_seek),
2657 (rate_spinbutton_changed_cb), (segment_done), (msg_state_changed):
2658 Segment seeking needs to use the rate and set stop to -1.
2660 2006-10-13 Wim Taymans <wim@fluendo.com>
2662 * gst-libs/gst/audio/gstbaseaudiosink.c:
2663 (gst_base_audio_sink_setcaps):
2664 Don't crash when ringbuffer is not yet created.
2665 Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
2668 * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2669 * gst/playback/gststreamselector.c:
2670 (gst_stream_selector_request_new_pad):
2671 Activate pads befre adding them to running elements.
2673 2006-10-13 Julien MOUTTE <julien@moutte.net>
2675 * tests/examples/seek/seek.c: (do_seek), (start_seek),
2676 (rate_spinbutton_changed_cb), (msg_state_changed): Stop the scale
2677 updater when we start grabing the slider. Don't wait for the
2678 pipeline to be PAUSED.
2680 2006-10-13 Tim-Philipp Müller <tim at centricular dot net>
2682 * gst-libs/gst/interfaces/mixer.c: (gst_mixer_list_tracks),
2683 (gst_mixer_set_volume), (gst_mixer_get_volume),
2684 (gst_mixer_set_mute), (gst_mixer_set_option),
2685 (gst_mixer_get_option), (gst_mixer_mute_toggled),
2686 (gst_mixer_record_toggled), (gst_mixer_volume_changed),
2687 (gst_mixer_option_changed):
2688 Guard mixer interface functions against bogus arguments.
2690 2006-10-12 Julien MOUTTE <julien@moutte.net>
2692 * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
2693 (play_cb), (pause_cb), (stop_cb), (rate_spinbutton_changed_cb),
2694 (msg_state_changed), (main): Use state-changed messages to trigger
2695 start/stop of scale update timer. Indeed the scale slider was
2696 jumping here and there because the update timer was activated
2697 before seek completed. This fixes instant applying of rate changes
2698 by pressing the spinbutton like a crazy man !
2700 2006-10-12 Tim-Philipp Müller <tim at centricular dot net>
2702 Patch by: Sebastien Cote <sebas642 at yahoo.ca>
2704 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
2705 (gst_basertppayload_finalize):
2706 Fix two small memory leaks (#361456).
2708 2006-10-10 Julien MOUTTE <julien@moutte.net>
2710 * tests/examples/seek/seek.c: (do_seek),
2711 (rate_spinbutton_changed_cb): When changing spinbutton we try
2712 to change the rate on the fly.
2714 2006-10-10 Wim Taymans <wim@fluendo.com>
2716 * gst-libs/gst/riff/riff-ids.h:
2717 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
2718 (gst_riff_create_audio_template_caps):
2721 2006-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
2723 Patch by: Josep Torre Valles <josep@fluendo.com>
2725 * ext/gnomevfs/gstgnomevfssink.c:
2726 * ext/gnomevfs/gstgnomevfssrc.c:
2727 Fix URI interface implementation return type.
2728 * ext/pango/gsttextoverlay.c: (gst_text_overlay_set_property):
2729 Fix what looks like a copy/paste issue when assigning values.
2730 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
2731 (gst_audio_filter_template_get_type):
2732 Cast to prevent Forte warnings.
2733 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
2734 Fix URI interface implementation return type.
2735 gst_pad_query_position requires a signed integer pointer as
2736 3rd parameter, GstClockTime is unsigned.
2737 * gst/audioconvert/audioconvert.c:
2738 Fix integer overflow when treated as signed.
2739 * gst/audioresample/resample.c: (resample_add_input_data):
2740 Cast to prevent warnings on Forte.
2741 * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette):
2742 Fix integer overflow when treated as signed.
2743 * gst/ffmpegcolorspace/imgconvert_template.h:
2744 Fix integer overflow when treated as signed. RGBA_OUT shifts bits.
2745 * gst/playback/gstdecodebin.c: (queue_filled_cb),
2746 (cleanup_decodebin):
2747 Who initialises a guint to -1!
2748 Cast function pointers to prevent warnings on Forte.
2749 * gst/playback/gstplaybasebin.c: (queue_deadlock_check),
2750 (queue_threshold_reached):
2751 Cast function pointers correctly to prevent warnings on Forte.
2752 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
2753 Cast function pointers correctly to prevent warnings on Forte.
2754 * gst/subparse/gstssaparse.c: (gst_ssa_parse_setcaps):
2755 Obvious change to unsigned, 0xEF > max signed char.
2756 * gst/tcp/gstmultifdsink.c: (get_buffers_max), (count_burst_unit):
2757 GstClockTime is unsigned, initialise correctly.
2758 * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
2759 Cast so pointer arithemetic doesn't cause warnings on Forte.
2760 * gst/videorate/gstvideorate.c:
2761 Use correct return value.
2762 * tests/examples/seek/scrubby.c:
2763 GstClockTime is unsigned, initialise correctly.
2765 2006-10-10 Tim-Philipp Müller <tim at centricular dot net>
2767 Patch by: Ferenc Gerlits <fgerlits at gmail com>
2769 * gst/typefind/gsttypefindfunctions.c:
2770 Recognise XML files and XML-like files shorter than 256 bytes as
2771 well (fixes #359237).
2773 2006-10-09 Edgard Lima <edgard.lima@indt.org.br>
2775 Patch by: Renato Filho <renato.filho@indt.org.br>
2777 * gst/typefind/gsttypefindfunctions.c:
2778 Added typefind functions to video/x-nuv media.
2780 2006-10-08 Tim-Philipp Müller <tim at centricular dot net>
2782 * gst-libs/gst/interfaces/xoverlay.c:
2783 (gst_x_overlay_set_xwindow_id), (gst_x_overlay_expose):
2784 Some more guards against invalid input.
2786 2006-10-07 Julien MOUTTE <julien@moutte.net>
2788 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event):
2790 * tests/examples/seek/seek.c: (do_seek),
2791 (rate_spinbutton_changed_cb), (main): Add a rate spinbutton in
2792 seek example to experiment with rates != 1.0 (reverse playback !)
2794 2006-10-06 Stefan Kost <ensonic@users.sf.net>
2796 * gst-libs/gst/interfaces/xoverlay.c:
2797 Unref message in doc-example (spotted by Robert McQueen)
2799 2006-10-06 Wim Taymans <wim@fluendo.com>
2801 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2802 (mpeg1_parse_header), (mpeg1_sys_type_find):
2805 2006-10-06 Wim Taymans <wim@fluendo.com>
2807 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
2809 * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2810 Activate dynamic pads before adding them to the element.
2812 2006-10-06 Michael Smith <msmith@fluendo.com>
2814 * gst-libs/gst/floatcast/floatcast.h:
2815 Fix obviously-bogus macros; use the correct types.
2817 2006-10-06 Wim Taymans <wim@fluendo.com>
2819 * gst-libs/gst/rtp/gstbasertpdepayload.c:
2820 (gst_base_rtp_depayload_change_state):
2821 Also call parent state change function to activate pads.
2823 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2824 (mpeg1_parse_header), (mpeg1_sys_type_find):
2825 Add some more debug info in mpeg typefinding.
2827 2006-10-06 Michael Smith <msmith@fluendo.com>
2829 * ext/theora/theoradec.c: (theora_dec_chain):
2830 Zero byte theora packets are valid and well-defined; don't warn on
2833 2006-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
2835 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
2836 (gst_multi_fd_sink_get_stats), (find_limits),
2837 (gst_multi_fd_sink_queue_buffer):
2838 API: add dropped_buffers to the get-stats GValueArray
2840 2006-10-05 Tim-Philipp Müller <tim at centricular dot net>
2842 * ext/alsa/gstalsadeviceprobe.c:
2843 (gst_alsa_device_property_probe_get_values):
2844 * ext/alsa/gstalsasink.c: (set_hwparams):
2845 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_elem_pad),
2846 (gst_ogg_chain_new_stream), (gst_ogg_demux_read_chain):
2847 * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers),
2848 (gst_ogg_mux_process_best_pad):
2849 * ext/ogg/gstoggparse.c: (gst_ogg_parse_new_stream),
2850 (gst_ogg_parse_chain):
2851 * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
2852 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
2853 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_setup),
2854 (gst_vorbis_enc_buffer_check_discontinuous):
2855 * ext/vorbis/vorbisparse.c: (vorbis_parse_src_query):
2856 * gst-libs/gst/audio/gstbaseaudiosink.c:
2857 (gst_base_audio_sink_render):
2858 * gst-libs/gst/cdda/gstcddabasesrc.c:
2859 (gst_cdda_base_src_handle_track_seek):
2860 * gst-libs/gst/rtp/gstbasertpdepayload.c:
2861 (gst_base_rtp_depayload_push_full):
2862 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
2863 * gst/audioresample/resample.c: (resample_input_pushthrough):
2864 * gst/playback/gstplaybasebin.c: (queue_out_of_data):
2865 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
2866 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2867 (wavpack_type_find):
2868 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
2869 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
2870 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
2871 * tests/check/elements/volume.c: (GST_START_TEST):
2872 Printf format fixes.
2874 2006-10-04 Thomas Vander Stichele <thomas at apestaart dot org>
2876 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_caps):
2877 Fix a simple mistake (see the docs)
2880 2006-10-03 Tim-Philipp Müller <tim at centricular dot net>
2882 * docs/plugins/Makefile.am:
2883 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2884 * docs/plugins/gst-plugins-base-plugins-sections.txt:
2885 * docs/plugins/gst-plugins-base-plugins.args:
2886 * docs/plugins/gst-plugins-base-plugins.hierarchy:
2887 * docs/plugins/inspect/plugin-adder.xml:
2888 * docs/plugins/inspect/plugin-alsa.xml:
2889 * docs/plugins/inspect/plugin-audioconvert.xml:
2890 * docs/plugins/inspect/plugin-audiorate.xml:
2891 * docs/plugins/inspect/plugin-audioresample.xml:
2892 * docs/plugins/inspect/plugin-audiotestsrc.xml:
2893 * docs/plugins/inspect/plugin-cdparanoia.xml:
2894 * docs/plugins/inspect/plugin-decodebin.xml:
2895 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
2896 * docs/plugins/inspect/plugin-gdp.xml:
2897 * docs/plugins/inspect/plugin-gnomevfs.xml:
2898 * docs/plugins/inspect/plugin-libvisual.xml:
2899 * docs/plugins/inspect/plugin-ogg.xml:
2900 * docs/plugins/inspect/plugin-pango.xml:
2901 * docs/plugins/inspect/plugin-playbin.xml:
2902 * docs/plugins/inspect/plugin-subparse.xml:
2903 * docs/plugins/inspect/plugin-tcp.xml:
2904 * docs/plugins/inspect/plugin-theora.xml:
2905 * docs/plugins/inspect/plugin-typefindfunctions.xml:
2906 * docs/plugins/inspect/plugin-video4linux.xml:
2907 * docs/plugins/inspect/plugin-videorate.xml:
2908 * docs/plugins/inspect/plugin-videoscale.xml:
2909 * docs/plugins/inspect/plugin-videotestsrc.xml:
2910 * docs/plugins/inspect/plugin-volume.xml:
2911 * docs/plugins/inspect/plugin-vorbis.xml:
2912 * docs/plugins/inspect/plugin-ximagesink.xml:
2913 * docs/plugins/inspect/plugin-xvimagesink.xml:
2914 Add vorbistag element to docs; update version numbers to 0.10.10.1.
2916 2006-10-03 Tim-Philipp Müller <tim at centricular dot net>
2918 Patch by: James "Doc" Livingston <doclivingston at gmail com>
2920 * ext/vorbis/Makefile.am:
2921 * ext/vorbis/vorbis.c: (plugin_init):
2922 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_class_init),
2923 (vorbis_parse_parse_packet), (vorbis_parse_chain):
2924 * ext/vorbis/vorbisparse.h:
2925 * ext/vorbis/vorbistag.c: (gst_vorbis_tag_base_init),
2926 (gst_vorbis_tag_class_init), (gst_vorbis_tag_init),
2927 (gst_vorbis_tag_parse_packet):
2928 * ext/vorbis/vorbistag.h:
2929 Add new vorbistag element which derives from vorbisparse
2930 and is essentially the same as well, only that it implements
2931 the GstTagSetter interface and can modify the stream's
2932 vorbiscomment on the fly (#335635).
2934 * tests/check/Makefile.am:
2935 * tests/check/elements/.cvsignore:
2936 * tests/check/elements/vorbistag.c: (setup_vorbistag),
2937 (cleanup_vorbistag), (buffer_probe), (start_pipeline),
2938 (get_buffer), (stop_pipeline), (_create_codebook_header_buffer),
2939 (_create_audio_buffer), (GST_START_TEST), (vorbistag_suite):
2940 Add unit test for new vorbistag element.
2942 2006-10-03 Tim-Philipp Müller <tim at centricular dot net>
2944 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init),
2945 (vorbis_parse_push_headers), (vorbis_parse_chain):
2946 Set BOS flag in packet structure to fix 'jump depends
2947 on unitialized value' errors in valgrind; various minor
2950 2006-09-30 Jan Schmidt <thaytan@mad.scientist.com>
2952 * gst/playback/gstdecodebin.c: (close_pad_link):
2953 Fix typo in a debug statement.
2955 * gst/playback/gstplaybasebin.c: (probe_triggered),
2956 (new_decoded_pad_full), (new_decoded_pad), (subs_new_decoded_pad),
2957 (gen_source_element), (source_new_pad), (analyse_source),
2959 When handling no_more_pads in new_decoded_pad, make sure to treat
2960 subtitle pads correctly. Fixes playback with subtitle files.
2962 Move a recurring message to LOG level.
2964 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
2965 The maximum value for the Xv colorkey on this Radeon is 0xFFFFFFFF,
2966 which ends up as -1 when cast to an int. Make the logic handle the
2967 max value as an unsigned mask and only change the colorkey when it's
2968 a value we recognise.
2970 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
2972 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2973 Removed empty * between paragraphs
2975 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
2977 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2978 * gst-libs/gst/rtp/README:
2979 Moved some documentation into .c file
2981 2006-09-29 Wim Taymans <wim@fluendo.com>
2983 * gst/playback/gstdecodebin.c: (no_more_pads):
2986 2006-09-29 Wim Taymans <wim@fluendo.com>
2988 * gst/playback/gstdecodebin.c: (new_caps):
2991 * gst/playback/gstplaybin.c:
2994 2006-09-29 Tim-Philipp Müller <tim at centricular dot net>
2996 * tests/check/Makefile.am:
2997 Re-enable cddabasesrc test to see if it works again
3000 2006-09-29 Wim Taymans <wim@fluendo.com>
3002 * gst/playback/gstplaybasebin.c: (setup_subtitle),
3003 (gen_source_element):
3004 Handle invalid URIs a bit more gracefully.
3006 2006-09-29 Tim-Philipp Müller <tim at centricular dot net>
3008 * tests/check/pipelines/oggmux.c:
3009 Remove obsolete comment.
3011 2006-09-29 Michael Smith <msmith@fluendo.com>
3013 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
3014 (gst_ogg_mux_release_pad), (gst_ogg_mux_push_buffer),
3015 (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
3016 (gst_ogg_mux_send_headers), (gst_ogg_mux_process_best_pad),
3017 (gst_ogg_mux_collected):
3018 Commit patch from James "Doc" Livingston, adds proper EOS handling
3019 in oggmux. GStreamer can, for the first time ever, create a valid
3022 * tests/check/pipelines/oggmux.c: (check_chain_final_state),
3024 Reenable tests now that they pass.
3026 2006-09-29 Wim Taymans <wim@fluendo.com>
3028 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
3029 Stop reading commands when EOF (we read 0) as well.
3031 2006-09-28 Wim Taymans <wim@fluendo.com>
3033 * gst/playback/gstdecodebin.c: (dynamic_create), (dynamic_free),
3034 (close_pad_link), (dynamic_remove), (no_more_pads), (new_caps),
3035 (find_dynamic), (unlinked), (close_link):
3036 Implement delayed caps linking needed for element with a lot of
3037 different caps on the src pads that get fixed at runtime.
3038 Improve management of dynamic elements.
3040 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
3041 (group_destroy), (group_commit), (check_queue), (queue_overrun),
3042 (gen_preroll_element), (remove_groups), (unknown_type),
3043 (add_element_stream), (no_more_pads_full), (no_more_pads),
3044 (sub_no_more_pads), (source_no_more_pads), (preroll_unlinked),
3045 (new_decoded_pad), (setup_subtitle), (array_has_value),
3046 (gen_source_element), (source_new_pad), (has_all_raw_caps),
3047 (analyse_source), (remove_decoders), (make_decoder),
3048 (remove_source), (setup_source), (finish_source), (prepare_output),
3049 (gst_play_base_bin_change_state):
3050 * gst/playback/gstplaybasebin.h:
3051 Use more _CAST instead of full type checking casts.
3052 Small cleanups, plug some leaks.
3053 Handle dynamic sources.
3054 Add some helper functions to create lists of strings used for
3055 blacklisting and other stuff.
3056 Refactor some code dealing with analysing the source.
3057 Re-enable sources without pads (like cd:// or other selfcontained
3060 2006-09-28 Wim Taymans <wim@fluendo.com>
3062 * gst-libs/gst/audio/gstbaseaudiosink.c:
3063 (gst_base_audio_sink_render):
3064 When we have a timestamp, we can still perform clipping.
3065 When we have no clock, we must play the sample ASAP.
3067 2006-09-28 Wim Taymans <wim@fluendo.com>
3069 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
3070 Set caps on outgoing buffers.
3072 * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
3073 (gst_video_rate_event), (gst_video_rate_chain):
3074 * gst/videorate/gstvideorate.h:
3075 Fix videorate some more. Fixes #357977
3077 2006-09-28 Tim-Philipp Müller <tim at centricular dot net>
3079 * tests/check/elements/adder.c: (adder_suite):
3080 Don't set timeout to 6 seconds when we're running
3081 in valgrind ... (and how is 6 seconds longer than
3082 the default anyway?)
3084 2006-09-28 Wim Taymans <wim@fluendo.com>
3086 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
3087 (gst_audio_rate_sink_event), (gst_audio_rate_convert),
3088 (gst_audio_rate_convert_segments), (gst_audio_rate_chain):
3089 Keep sink and src segment to keep track of time and support more
3091 Fix bogus next_offset and run_time calculation, don't understand how
3092 this could have worked before. Fixes #357976.
3093 Remove some unneeded vars.
3095 2006-09-28 Tim-Philipp Müller <tim at centricular dot net>
3097 * gst/playback/gstplaybin.c: (remove_sinks):
3098 Only remove visualisation from visbin if there is a visbin (or:
3099 don't throw warnings when closing totem without playing a file).
3101 2006-09-27 Wim Taymans <wim@fluendo.com>
3103 * gst-libs/gst/audio/gstbaseaudiosink.c:
3104 (gst_base_audio_sink_render):
3105 Add some more info in a WARNING.
3107 * gst-libs/gst/audio/gstbaseaudiosrc.c:
3108 (gst_base_audio_src_create):
3109 Handle PAUSE in create function, use new -core addition to
3110 wait for playing. Fixes pausing and resuming capture from an
3113 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
3114 (gst_ring_buffer_read):
3116 Caller supports interrupted reads now.
3118 2006-09-27 Tim-Philipp Müller <tim at centricular dot net>
3120 * tests/check/Makefile.am:
3121 Another attempt to make the gen64 buildbot happy.
3123 2006-09-27 Stefan Kost <ensonic@users.sf.net>
3125 Patch by: Jonathan Matthew <jonathan@kaolin.wh9.net>
3127 * ext/libvisual/visual.c: (gst_visual_clear_actors),
3128 (gst_visual_chain), (gst_visual_change_state):
3129 Libvisual plugin was not passing audio data to libvisual 0.4.0
3130 correctly. Fixes #357800
3132 2006-09-27 Tim-Philipp Müller <tim at centricular dot net>
3134 * tests/check/pipelines/simple-launch-lines.c: (run_pipeline):
3135 Add timeout to _get_state() so we see which pipeline it is
3136 that causes trouble on the gen64 build bot.
3138 2006-09-27 Wim Taymans <wim@fluendo.com>
3140 * gst-libs/gst/rtp/gstbasertpdepayload.c:
3141 (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
3142 (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
3143 (gst_base_rtp_depayload_set_gst_timestamp):
3144 the source pad always uses fixed caps.
3146 2006-09-27 Wim Taymans <wim@fluendo.com>
3148 * docs/libs/gst-plugins-base-libs-docs.sgml:
3149 * docs/libs/gst-plugins-base-libs-sections.txt:
3150 * gst-libs/gst/audio/gstaudioclock.c:
3151 * gst-libs/gst/audio/gstaudioclock.h:
3152 * gst-libs/gst/audio/gstaudiosink.c:
3153 * gst-libs/gst/audio/gstaudiosink.h:
3154 * gst-libs/gst/audio/gstaudiosrc.c:
3155 * gst-libs/gst/audio/gstbaseaudiosink.c:
3156 (gst_base_audio_sink_render):
3157 * gst-libs/gst/audio/gstbaseaudiosink.h:
3158 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init):
3159 * gst-libs/gst/audio/gstbaseaudiosrc.h:
3160 * gst-libs/gst/audio/gstringbuffer.h:
3161 Added docs for the audio libs.
3163 2006-09-27 Tim-Philipp Müller <tim at centricular dot net>
3165 * tests/check/Makefile.am:
3166 Temporarily disable test that fails on the bots for unknown reasons.
3168 2006-09-26 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
3170 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
3171 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
3172 Moved AudioCodecType into priv
3173 Renamed all gst_basertpaudiopayload to gst_base_rtp_audio_payload prefixes
3175 2006-09-25 Wim Taymans <wim@fluendo.com>
3177 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
3178 (add_fakesink), (remove_fakesink), (pad_probe), (close_pad_link),
3179 (is_demuxer_element), (try_to_link_1), (get_our_ghost_pad),
3181 Cleanups and small leak fixes.
3182 Added Depayloaders to valid list of autopluggable elements.
3184 2006-09-25 Wim Taymans <wim@fluendo.com>
3186 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
3187 (gst_play_bin_vis_blocked), (gst_play_bin_set_property),
3188 (gen_video_element), (gen_text_element), (gen_audio_element),
3189 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
3190 (gst_play_bin_set_clock_func), (gst_play_bin_change_state):
3191 Detect NO_PREROLL state change returns and disable clock distribution to
3192 the sinks so that sync is disabled.
3193 Avoid some type checking and do simple casts instead.
3194 Small cleanups, fix some FIXMEs.
3195 Be more robust when linking user specified elements, catch an report
3196 errors. Fixes #357404.
3197 Fix some leaks in the error paths.
3199 2006-09-25 Stefan Kost <ensonic@users.sf.net>
3202 ChangeLog surgery for missing bug-number
3204 2006-09-25 Tim-Philipp Müller <tim at centricular dot net>
3206 Patch by: Peter Kjellerstedt <pkj at axis com>
3208 * gst/playback/test.c:
3209 Fix compilation with uClibc and -Werror (#357591).
3211 2006-09-25 Tim-Philipp Müller <tim at centricular dot net>
3213 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
3214 Parse dates that are followed by a time as well (#357532).
3216 * tests/check/libs/tag.c: (test_vorbis_tags):
3217 Add unit test for this.
3219 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3221 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
3222 (gst_audio_convert_transform_caps):
3223 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor):
3224 * gst/videotestsrc/videotestsrc.h:
3225 A few array const-ifications.
3227 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3229 * tests/check/Makefile.am:
3230 See if this makes the build bots happy.
3232 * tests/check/libs/cddabasesrc.c:
3235 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3237 Patch by: Young-Ho Cha <ganadist at chollian dot net>
3239 * gst/subparse/samiparse.c: (handle_start_font),
3240 (fix_invalid_entities):
3241 More case-insensitivity for certain tags; recognise entities with
3242 decimal codes as special entities as well (#357330).
3244 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3246 * gst-libs/gst/Makefile.am:
3247 Need to build tag directory before cdda.
3249 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3251 * docs/libs/gst-plugins-base-libs-sections.txt:
3252 * gst-libs/gst/cdda/Makefile.am:
3253 * gst-libs/gst/cdda/gstcddabasesrc.c:
3254 (gst_cdda_base_src_base_init):
3255 * gst-libs/gst/cdda/gstcddabasesrc.h:
3256 * gst-libs/gst/tag/tag.h:
3257 * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal),
3258 (gst_tag_register_musicbrainz_tags):
3259 Move GST_TAG_CDDA_* tags into libgsttag and make libgstcddabasesrc
3260 depend on libgsttag. This is required so we can extract/read tags like
3261 DISCID without depending on libgstcddabasesrc (which used to register
3264 * gst-libs/gst/tag/gstvorbistag.c:
3265 Add vorbiscomment mapping for CDDB_DISCID and MUSICBRAINZ_DISCID
3266 tags (also see #347848).
3268 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1):
3269 Log vorbis comments we are actually writing. Const-ify array.
3271 2006-09-23 Wim Taymans <wim@fluendo.com>
3273 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
3274 Improve buffering a bit by avoiding a deadlock because we cannot assume
3275 the underrun is always called.
3277 2006-09-23 Wim Taymans <wim@fluendo.com>
3279 Patch by: Young-Ho Cha <ganadist at chollian dot net>
3281 * gst-libs/gst/riff/riff-ids.h:
3282 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3283 (gst_riff_create_audio_template_caps):
3284 Added MPEG-4 AAC and id and caps. Fixes #357289
3285 Added WMA9 Lossless id.
3287 2006-09-22 Tim-Philipp Müller <tim at centricular dot net>
3289 * ext/gnomevfs/gstgnomevfssrc.c:
3290 Fix misleading docs addition.
3292 * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3293 Get rid of compiler warning the right way.
3295 2006-09-22 Wim Taymans <wim@fluendo.com>
3297 * gst-libs/gst/rtp/gstbasertpdepayload.c:
3298 (gst_base_rtp_depayload_finalize),
3299 (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
3300 (gst_base_rtp_depayload_push_full),
3301 (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_push),
3302 (gst_base_rtp_depayload_process),
3303 (gst_base_rtp_depayload_set_gst_timestamp),
3304 (gst_base_rtp_depayload_queue_release):
3305 * gst-libs/gst/rtp/gstbasertpdepayload.h:
3308 Refactored the process method and added methods to push from the process
3310 Use _scale functions.
3311 API: gst_base_rtp_depayload_push_ts
3312 API: gst_base_rtp_depayload_push
3314 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
3315 timestamps are uint.
3317 2006-09-22 Stefan Kost <ensonic@users.sf.net>
3319 * gst-libs/gst/interfaces/xoverlay.c:
3320 Remove unused statement from doc example.
3322 2006-09-21 Stefan Kost <ensonic@users.sf.net>
3324 * gst-libs/gst/interfaces/videoorientation.c:
3325 (gst_video_orientation_iface_init),
3326 (gst_video_orientation_get_hflip),
3327 (gst_video_orientation_get_vflip),
3328 (gst_video_orientation_get_hcenter),
3329 (gst_video_orientation_get_vcenter),
3330 (gst_video_orientation_set_hflip),
3331 (gst_video_orientation_set_vflip),
3332 (gst_video_orientation_set_hcenter),
3333 (gst_video_orientation_set_vcenter):
3334 Add since tags to new API docs, ChangeLog surgery (forgot API keyword
3337 2006-09-21 Tim-Philipp Müller <tim at centricular dot net>
3339 * tests/check/Makefile.am:
3340 * tests/check/elements/.cvsignore:
3341 * tests/check/elements/ffmpegcolorspace.c: (rgb_format_to_caps),
3342 (create_rgb_conversions), (rgb_conversion_free),
3343 (right_shift_colour), (fix_expected_colour), (check_rgb_buf),
3344 (got_buf_cb), (GST_START_TEST), (ffmpegcolorspace_suite):
3345 Add unit test for ffmpegcolorspace (RGB <=> RGB only so far),
3346 but disable for now since it doesn't pass (something wrong with
3349 2006-09-21 Wim Taymans <wim@fluendo.com>
3351 * gst/playback/gstplaybasebin.c: (group_commit),
3352 (queue_deadlock_check), (queue_overrun), (queue_threshold_reached),
3353 (queue_out_of_data), (gen_preroll_element),
3354 (preroll_remove_overrun), (probe_triggered):
3355 Refactor handling of overrun detection.
3356 Separate handling of group completion and deadlock detection when doing
3357 network buffering. This should fix some deadlocks that were not detected
3358 because the group was completed.
3359 Add more comments, improve debugging.
3361 2006-09-21 Wim Taymans <wim@fluendo.com>
3363 * tests/check/elements/gdpdepay.c: (GST_START_TEST):
3364 * tests/check/libs/audio.c:
3365 Some more compilation fixes.
3367 2006-09-21 Wim Taymans <wim@fluendo.com>
3369 * gst-libs/gst/audio/gstringbuffer.c:
3370 (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
3371 (gst_ring_buffer_read):
3372 Early morning compilation fix.
3374 2006-09-20 Wim Taymans <wim@fluendo.com>
3376 * tests/check/elements/gdpdepay.c: (GST_START_TEST):
3377 * tests/check/elements/multifdsink.c: (GST_START_TEST):
3378 * tests/check/elements/videorate.c: (GST_START_TEST):
3379 * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
3380 * tests/check/pipelines/oggmux.c: (eos_buffer_probe):
3383 2006-09-20 Stefan Kost <ensonic@users.sf.net>
3385 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3386 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
3387 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
3388 Handcrafted merge to help CVS understanding what I changed and what
3391 2006-09-20 Stefan Kost <ensonic@users.sf.net>
3393 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3394 (gst_xvimagesink_get_times):
3395 change colorkey behaviour back according to #354773 comment 6/7
3397 2006-09-19 Michael Smith <msmith@fluendo.com>
3399 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
3400 (gst_multi_fd_sink_class_init), (get_buffers_max), (find_limits),
3401 (gst_multi_fd_sink_recover_client),
3402 (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_set_property),
3403 (gst_multi_fd_sink_get_property):
3404 * gst/tcp/gstmultifdsink.h:
3405 Implement stubbed out properties unit-type, units-soft-max,
3406 units-max, to allow specifying maximum sizes in units other than
3410 2006-09-19 Wim Taymans <wim@fluendo.com>
3412 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3413 (gst_riff_create_audio_template_caps):
3414 Reorder the audio formats a bit for clarity.
3415 Detect and create caps for MSGSM and MSN (WAV49).
3418 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3419 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
3420 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
3421 Small cleanups, move error handling out of normal flow for clarity.
3423 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3425 * docs/libs/gst-plugins-base-libs-docs.sgml:
3426 * docs/libs/gst-plugins-base-libs.types:
3427 * gst-libs/gst/interfaces/Makefile.am:
3428 * gst-libs/gst/interfaces/videoorientation.c:
3429 (gst_video_orientation_get_type),
3430 (gst_video_orientation_iface_init),
3431 (gst_video_orientation_get_hflip),
3432 (gst_video_orientation_get_vflip),
3433 (gst_video_orientation_get_hcenter),
3434 (gst_video_orientation_get_vcenter),
3435 (gst_video_orientation_set_hflip),
3436 (gst_video_orientation_set_vflip),
3437 (gst_video_orientation_set_hcenter),
3438 (gst_video_orientation_set_vcenter):
3439 * gst-libs/gst/interfaces/videoorientation.h:
3440 API: Add new interface to control video orientation (fixes #354908)
3442 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3444 * gst/videotestsrc/gstvideotestsrc.c:
3445 Use G_UNLIKELY in _create and log one more detail.
3447 (gst_video_test_src_get_times), (gst_video_test_src_create):
3448 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
3449 Use gst_util_uint64_scale_int in _get_times().
3451 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3453 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
3454 Give better warning message (add object and detail).
3456 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3458 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3459 (gst_xvimagesink_get_times):
3460 xvimage assumed that XV_COLORKEY can be set in RGB888 format (fixes
3461 #354773), use gst_util_uint64_scale_int in _get_times()
3463 2006-09-18 Michael Smith <msmith@fluendo.com>
3465 * ext/ogg/gstoggmux.c: (gst_ogg_mux_push_buffer):
3466 Timestamps are unsigned; comparision against GST_CLOCK_TIME_NONE was
3467 always true, leading to dropping all timestamps.
3469 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3471 * ext/libvisual/visual.c: (gst_vis_src_negotiate),
3472 (gst_visual_chain), (gst_visual_change_state):
3473 update to work also with libvisual 0.4 API, fix double unref (#355914)
3475 * tools/gst-launch-ext.1.in:
3476 * tools/gst-visualise.1.in:
3477 remove references to old man-pages
3479 * tests/examples/seek/seek.c: (main):
3480 add real meadi-buttons, add tool-tips for the seek-options, arrange
3481 seek options in a table
3483 2006-09-18 Michael Smith <msmith@fluendo.com>
3485 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear),
3486 (gst_ogg_mux_push_buffer):
3487 Don't generate out-of-order timestamps from oggmux, instead clamp
3488 output timestamps to be >= the previously output ts.
3491 2006-09-18 Michael Smith <msmith@fluendo.com>
3493 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
3494 (gst_multi_fd_sink_class_init):
3495 Updates, fixes, and typo corrections for multifdsink. No functional
3498 2006-09-17 Michael Smith <msmith@fluendo.com>
3500 * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find):
3501 Don't crash on truncated files - check that we got an 8 byte buffer
3502 before trying to memcmp it.
3504 2006-09-17 Tim-Philipp Müller <tim at centricular dot net>
3506 * gst/playback/gstplaybasebin.c: (get_active_source):
3507 Make stream-switching appear instant to the application
3508 (ie. make sure that a g_object_get on 'current-foo' returns
3509 the stream previously set with g_object_set(). Totem needs
3510 this to update stream-related meta-info (like audio-codec)
3511 correctly when switching streams.
3513 2006-09-17 Tim-Philipp Müller <tim at centricular dot net>
3515 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer),
3516 (gst_alsa_mixer_ensure_track_list):
3517 Try harder to guess which mixer track is the master mixer
3518 track (instead of just taking the first one that has a pvolume).
3521 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3523 reviewed by: <delete if not using a buddy>
3525 * gst-libs/gst/audio/audio.h:
3526 * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
3528 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3530 * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
3531 (gst_audio_convert_transform_caps):
3532 Get structure-name just once.
3534 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3536 * tests/check/elements/audioresample.c: (GST_START_TEST):
3537 * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3538 * tests/check/elements/volume.c: (GST_START_TEST):
3539 * tests/check/elements/vorbisdec.c: (GST_START_TEST):
3540 * tests/check/pipelines/oggmux.c: (validate_ogg_page), (eos_watch),
3541 (test_pipeline), (GST_START_TEST):
3542 * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
3543 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
3544 Fix big batch of compiler warnings.
3546 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3548 * ext/gnomevfs/gstgnomevfssrc.c:
3549 Add docs about icydemux usage in connection with gnomevfssrc
3551 * ext/libvisual/visual.c:
3552 * ext/ogg/gstoggaviparse.c:
3553 * ext/ogg/gstoggdemux.c:
3554 * ext/ogg/gstoggmux.c:
3555 * ext/ogg/gstoggparse.c:
3556 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
3557 * gst-libs/gst/audio/gstaudiosink.c:
3558 * gst-libs/gst/audio/gstaudiosrc.c:
3559 * gst/audiorate/gstaudiorate.c:
3560 More G_OBJECT macro fixing.
3562 * gst/audiotestsrc/gstaudiotestsrc.h:
3563 Fix wrong info in header due to copy & paste
3565 2006-09-15 Wim Taymans <wim@fluendo.com>
3567 * gst-libs/gst/audio/gstbaseaudiosink.c:
3568 (gst_base_audio_sink_get_time), (gst_base_audio_sink_callback):
3569 * gst-libs/gst/audio/gstbaseaudiosrc.c:
3570 (gst_base_audio_src_get_time), (gst_base_audio_src_fixate),
3571 (gst_base_audio_src_get_times), (gst_base_audio_src_get_offset),
3572 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
3573 Do the delay calculation in the source/sink base classes as this is
3574 specific for the capture/playback mode.
3575 Try to fixate a bit better, like round depth up to a multiple of 8
3577 Handle underruns correctly by marking DISCONT on buffers and adjusting
3578 timestamps to handle the gap.
3579 Set offset/offset_end correctly on buffers.
3581 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_pause),
3582 (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
3583 (gst_ring_buffer_read):
3584 Remove resync and underrun recovery from the ringbuffer.
3585 Fix ringbuffer read code on under/overrun.
3587 2006-09-15 Wim Taymans <wim@fluendo.com>
3589 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
3590 (gst_play_base_bin_init), (fill_buffer), (check_queue),
3591 (queue_threshold_reached), (gst_play_base_bin_set_property),
3592 (gst_play_base_bin_get_property):
3593 * gst/playback/gstplaybasebin.h:
3594 Don't use a 0 low watermark when buffering, it is catching starvation
3595 way too late. Instead, use a 3 second queue with 30 and 95
3596 percent low/high watermarks.
3597 Added queue-min-threshold property to configure low watermark.
3598 Use new _buffering message API.
3599 Make queue_threshold variable big enough to store a uint64 time value.
3600 API: playbin::queue-min-threshold property.
3602 2006-09-15 Wim Taymans <wim@fluendo.com>
3605 We require 0.10.10.1 now because of _wait_preroll().
3607 * gst-libs/gst/audio/gstbaseaudiosink.c:
3608 (gst_base_audio_sink_render):
3609 Use gst_base_sink_wait_preroll().
3611 2006-09-15 Wim Taymans <wim@fluendo.com>
3613 * ext/alsa/gstalsasink.c: (xrun_recovery), (gst_alsasink_write):
3614 * ext/alsa/gstalsasrc.c: (xrun_recovery), (gst_alsasrc_read):
3615 Use DEBUG_OBJECT more.
3617 === release 0.10.10 ===
3619 2006-09-07 Thomas Vander Stichele <thomas at apestaart dot org>
3621 patch by: Michael Smith <msmith at fluendo dot com>
3623 * gst/tcp/gstmultifdsink.c: (is_sync_frame),
3624 (gst_multi_fd_sink_client_queue_buffer),
3625 (gst_multi_fd_sink_new_client):
3626 * tests/check/elements/multifdsink.c: (GST_START_TEST),
3627 (multifdsink_suite):
3628 Fix implementation of sync-method 'next-keyframe'
3631 2006-09-07 Thomas Vander Stichele <thomas at apestaart dot org>
3633 patch by: Wim Taymans <wim at fluendo dot com>
3635 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
3636 This patch removes the RANDOM flag that was incorrectly introduced with
3637 revision 1.91. Fixes #354590
3639 2006-09-05 Tim-Philipp Müller <tim at centricular dot net>
3641 * tests/check/Makefile.am:
3642 Random variation in Makefile line to see if it makes the
3643 gen64-base-full bot any happier.
3645 2006-09-04 Tim-Philipp Müller <tim at centricular dot net>
3647 * tests/check/pipelines/oggmux.c: (oggmux_suite):
3648 Disable test that fails at the moment (killed after timeout).
3650 2006-09-04 Tim-Philipp Müller <tim at centricular dot net>
3652 Patch by: James Livingston <doclivingston at gmail.com>
3654 * tests/check/Makefile.am:
3655 * tests/check/pipelines/.cvsignore:
3656 * tests/check/pipelines/oggmux.c: (get_page_codec),
3657 (check_chain_final_state), (fail_if_audio), (validate_ogg_page),
3658 (eos_buffer_probe), (start_pipeline), (stop_pipeline), (eos_watch),
3659 (test_pipeline), (test_vorbis), (test_theora), (test_vorbis_theora),
3660 (test_theora_vorbis), (oggmux_suite):
3661 Add simple unit test for oggmux from #337026 with checking for the
3662 EOS flags disabled for the time being.
3664 2006-09-04 Wim Taymans <wim@fluendo.com>
3666 patch by: Alessandro Dessina <alessandro nnva org>
3668 * ext/ogg/gstoggmux.c:
3669 Add cmml caps to oggmux. Fixes #353912
3671 2006-09-02 Tim-Philipp Müller <tim at centricular dot net>
3673 * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3674 Returning a return value often helps. In this case, we
3675 don't need the return value anyway, so just get rid of it.
3676 Should make build bots much happier.
3678 2006-09-02 Tim-Philipp Müller <tim at centricular dot net>
3680 * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
3681 (paint_get_structure), (gst_video_test_src_get_size),
3682 (gst_video_test_src_smpte), (gst_video_test_src_snow),
3683 (gst_video_test_src_unicolor), (paint_setup_AYUV),
3684 (paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
3685 (paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
3686 * gst/videotestsrc/videotestsrc.h:
3687 Add support for AYUV and the various RGBA formats. Initialise
3688 fields of paintinfo structs allocated on the stack.
3690 * tests/check/elements/videotestsrc.c: (right_shift_colour),
3691 (fix_expected_colour), (check_rgb_buf), (got_buf_cb),
3692 (check_rgb_buf), (videotestsrc_suite):
3693 Add unit tests for videotestsrc's RGB output.
3695 2006-09-01 Tim-Philipp Müller <tim at centricular dot net>
3697 * gst/videotestsrc/gstvideotestsrc.c:
3698 (gst_video_test_src_pattern_get_type),
3699 (gst_video_test_src_set_pattern):
3700 * gst/videotestsrc/gstvideotestsrc.h:
3701 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
3702 (gst_video_test_src_black), (gst_video_test_src_white),
3703 (gst_video_test_src_red), (gst_video_test_src_green),
3704 (gst_video_test_src_blue):
3705 * gst/videotestsrc/videotestsrc.h:
3706 Add more uni-colour patterns ("white", "red", "green", and "blue").
3708 2006-09-01 Tim-Philipp Müller <tim at centricular dot net>
3710 * gst/videotestsrc/videotestsrc.c: (paint_setup_YVYU):
3711 Fix stride for YVYU, should be word-aligned (#353658).
3713 2006-08-31 Tim-Philipp Müller <tim at centricular dot net>
3715 * gst/adder/gstadder.c: (gst_adder_src_event):
3718 2006-08-31 Edward Hervey <edward@fluendo.com>
3720 * gst/adder/gstadder.c: (forward_event_func),
3721 (gst_adder_src_event), (gst_adder_collected),
3722 (gst_adder_change_state):
3723 * gst/adder/gstadder.h:
3724 Remember the start position asked in the incoming seeks, so we can
3725 output GST_EVENT_NEW_SEGMENT with a correct position value (instead
3726 of assuming it will always be 0).
3728 2006-08-31 Edward Hervey <edward@fluendo.com>
3730 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
3731 (gst_ogg_demux_finalize), (gst_ogg_demux_perform_seek),
3732 (gst_ogg_demux_loop):
3733 Send the GST_EVENT_NEW_SEGMENT from the streaming thread.
3735 2006-08-30 Tim-Philipp Müller <tim at centricular dot net>
3737 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3738 (gst_ffmpegcsp_get_unit_size):
3739 Return FALSE instead of returning a random false unit
3740 size when the format isn't known/supported (even if
3741 this shouldn't happen under normal circumstances).
3743 2006-08-29 Wim Taymans <wim@fluendo.com>
3745 Patch by: Tim-Philipp Müller <tim at centricular dot net>
3747 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create),
3748 (gst_gnome_vfs_src_start):
3749 Try harder to get the size from a uri by using _info_uri() when
3750 _info_from_handle() does not give us enough info.
3751 Also follow symlinks when getting the size.
3752 Partially Fixes #332864.
3754 2006-08-29 Tim-Philipp Müller <tim at centricular dot net>
3756 Patch by: Viktor Peters <viktor dot peters at gmail dot com>
3758 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
3759 (gst_alsa_mixer_update), (gst_alsa_mixer_get_volume),
3760 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
3761 (gst_alsa_mixer_set_record):
3762 * ext/alsa/gstalsamixertrack.c:
3763 (gst_alsa_mixer_track_update_alsa_capabilities),
3764 (alsa_track_has_cap), (gst_alsa_mixer_track_new),
3765 (gst_alsa_mixer_track_update):
3766 * ext/alsa/gstalsamixertrack.h:
3767 Improve and fix mixer track handling, in particular better handling
3768 of alsa's pvolume/pswitch/cvolume/cswitch capabilities; create
3769 separate track objects for tracks that have both capture and playback
3770 volume (and label them differently as well so they're not mistakenly
3771 assumed to be duplicates); classify mixer tracks that only affect
3772 the audible volume of something (rather than the capture volume)
3773 as playback tracks. Redefine/fix meaning of RECORD and MUTE flags
3774 for capture tracks to correspond to alsa-pswitch alsa-cswitch
3775 (following the meaning documented in the mixer interface header
3776 file); add support for alsa's exclusive cswitch groups; update/sync
3777 state/flags better if mixer settings are changed by another
3778 application. Fixes #336075.
3780 2006-08-29 Tim-Philipp Müller <tim at centricular dot net>
3782 * gst/playback/gstplaybin.c:
3783 Improve docs: add section about BUFFERING messages sent by playbin.
3785 2006-08-29 Michael Smith <msmith@fluendo.com>
3787 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_push_buffer),
3788 (gst_vorbis_enc_buffer_check_discontinuous),
3789 (gst_vorbis_enc_chain):
3790 Ignore explicit DISCONT marked on buffers (which is often spurious,
3791 particularly when using multiple segments), in favour of solely
3792 using the timestamps/durations.
3794 2006-08-29 Edward Hervey <edward@fluendo.com>
3796 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
3797 Don't rely on incoming buffers offset anymore, since it is completely
3798 broken when using multiple segments.
3799 Instead convert the incoming buffers timestamp to running time, and
3800 then convert that value to the offsets.
3801 Also inform GstSegment of the last outputted stop position, which is
3802 needed if we received several segments with an unknown stop value.
3804 2006-08-29 Thomas Vander Stichele <thomas at apestaart dot org>
3806 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
3807 fix buffer unreffing on a header push failure
3809 2006-08-28 Wim Taymans <wim@fluendo.com>
3811 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_sink_event),
3812 (gst_audio_rate_chain):
3813 Make the metadata of the buffer writable before changing its
3816 2006-08-28 Wim Taymans <wim@fluendo.com>
3818 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
3819 (gst_audio_rate_setcaps), (gst_audio_rate_init),
3820 (gst_audio_rate_sink_event), (gst_audio_rate_src_event),
3821 (gst_audio_rate_chain), (gst_audio_rate_change_state):
3822 Fix audiorate some more.
3823 Reset and resync counters on flush and READY.
3824 Handle the DISCONT flag correctly.
3825 Use GstSegment to track position.
3826 Fail when not negotiated.
3829 2006-08-25 Michael Smith <msmith@fluendo.com>
3831 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3833 Remove accidently included debug line.
3835 2006-08-25 Wim Taymans <wim@fluendo.com>
3837 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3839 If a buffer is received with no caps, make the buffer metadata
3840 writable and set the caps, making sure that we don't screw up the
3843 2006-08-25 Michael Smith <msmith@fluendo.com>
3845 * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset),
3846 (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain):
3847 Fix memory leaks and misleading debug messages, add a couple of
3850 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats),
3851 (gst_multi_fd_sink_render):
3852 Do not use gst_buffer_make_writable() in a basesink render method,
3853 as it may incorrectly unref the buffer. Instead, use convoluted
3854 dance to avoid copying the buffer except when we need to.
3856 2006-08-25 Michael Smith <msmith@fluendo.com>
3858 * ext/vorbis/vorbisenc.c:
3859 (gst_vorbis_enc_buffer_check_discontinuous):
3860 Allow very small discontinuities in the timestamps. These we can't
3861 do anything useful with anyway (because vorbis's timestamps have
3862 only sample granularity), and are commonly produced by elements with
3863 minor bugs. Allow up to 1/2 a sample out.
3866 2006-08-24 Wim Taymans <wim@fluendo.com>
3868 * tests/examples/seek/seek.c: (seek_cb), (start_seek), (stop_seek),
3869 (play_scrub_toggle_cb), (main):
3870 Add a checkbox to enable play scrubbing. Makes it possible to disable
3873 2006-08-23 Stefan Kost <ensonic@users.sf.net>
3875 * tests/check/elements/.cvsignore:
3878 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
3880 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
3881 (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init),
3882 (gst_ogm_parse_class_init), (gst_ogm_parse_dispose),
3883 (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
3884 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
3885 (gst_ogm_parse_stream_header), (gst_ogm_parse_comment_packet),
3886 (gst_ogm_text_parse_strip_trailing_zeroes),
3887 (gst_ogm_parse_data_packet), (gst_ogm_parse_chain),
3888 (gst_ogm_parse_sink_event), (gst_ogm_parse_change_state):
3889 Refactor ogm parse, do better input checking, misc. clean-ups.
3890 Cache incoming events and push them once the source pad has
3891 been created. Don't pass unterminated strings to sscanf().
3892 Strip trailing zeroes from subtitle text output, since they
3893 are not valid UTF-8. Don't push vorbiscomment packets on
3894 the subtitle text pad. Output perfect streams if possible.
3896 2006-08-23 Wim Taymans <wim@fluendo.com>
3898 * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
3899 Waits for tasks to settle down so that we clean up correctly for
3902 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
3904 * tests/check/libs/tag.c: (GST_START_TEST), (taglists_are_equal):
3905 Unit test fixes: \377 is more likely to fit into 8 bits than \777;
3906 actually return return value in taglists_are_equal.
3908 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
3910 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
3911 Fix crash due to broken bitstream parsing on x86-64: can't make
3912 any assumptions about sizeof(struct) due to alignment/packing
3913 differences on different architectures. Fixes #351790.
3915 2006-08-22 Wim Taymans <wim@fluendo.com>
3917 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
3918 (gst_riff_parse_chunk), (gst_riff_parse_file_header),
3919 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
3920 (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
3921 (gst_riff_parse_info):
3922 Protect public functions against bad input.
3926 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
3928 * gst-libs/gst/riff/riff-ids.h:
3929 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
3930 Add voxware audio IDs (even if we can't play it) (#351795).
3932 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
3934 * gst-libs/gst/riff/riff-media.c:
3935 (gst_riff_create_video_template_caps),
3936 (gst_riff_create_audio_template_caps),
3937 (gst_riff_create_iavs_template_caps):
3938 Const-ify some arrays and use G_N_ELEMENTS instead
3939 of wasting oodles of RAM on terminator bits.
3941 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
3943 * gst-libs/gst/tag/gstvorbistag.c:
3944 (gst_tag_list_to_vorbiscomment_buffer):
3945 * tests/check/libs/tag.c: (GST_START_TEST):
3946 And the same for _to_vorbiscomment_buffer(): allow
3947 id_data_len == 0 for speex.
3949 2006-08-21 Thomas Vander Stichele <thomas at apestaart dot org>
3952 * docs/plugins/Makefile.am:
3953 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3954 * docs/plugins/gst-plugins-base-plugins-sections.txt:
3955 * docs/plugins/inspect/plugin-gdp.xml:
3956 * gst/gdp/Makefile.am:
3957 * tests/check/Makefile.am:
3958 Move GDP plugin to -base from -bad. Closes #347783.
3960 2006-08-21 Tim-Philipp Müller <tim at centricular dot net>
3962 * gst-libs/gst/tag/gstvorbistag.c:
3963 (gst_tag_list_from_vorbiscomment_buffer):
3964 Allow id_data_len == 0 (needed for vorbis comments in Speex files).
3965 Also add some checks to make sure we don't memcmp() beyond the end of
3966 vorbiscomment buffer if the ID to check for is larger than the buffer.
3968 * tests/check/libs/tag.c: (GST_START_TEST):
3969 Some more tests for gst_tag_list_from_vorbiscomment_buffer().
3971 2006-08-21 Tim-Philipp Müller <tim at centricular dot net>
3973 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1),
3974 (gst_vorbis_enc_set_metadata):
3975 Use vorbis comment utility functions from libgsttag
3976 instead of re-inventing the wheel (partially fixes #347091).
3978 2006-08-21 Jan Schmidt <thaytan@mad.scientist.com>
3980 * tests/check/elements/audioconvert.c: (GST_START_TEST):
3981 Fix leaks. Wait for state transitions that might happen ASYNC, as well
3984 2006-08-21 Wim Taymans <wim@fluendo.com>
3986 * docs/libs/Makefile.am:
3987 * docs/libs/gst-plugins-base-libs-sections.txt:
3988 * docs/libs/gst-plugins-base-libs.types:
3989 Don't try to GObject scan the netbuffer as it's not a GObject.
3992 * gst-libs/gst/netbuffer/gstnetbuffer.c:
3993 * gst-libs/gst/netbuffer/gstnetbuffer.h:
3994 Document GstNetBuffer.
3996 2006-08-21 Stefan Kost <ensonic@users.sf.net>
3998 * tests/check/elements/audioconvert.c: (GST_START_TEST),
3999 (audioconvert_suite):
4000 Add testcase for caps-size-explosion
4002 2006-08-20 Stefan Kost <ensonic@users.sf.net>
4004 * gst/audioconvert/gstaudioconvert.c:
4005 (gst_audio_convert_get_unit_size), (set_structure_widths):
4006 Lower debug, use g_assert in _get_unit_size
4008 * gst/audioresample/gstaudioresample.c:
4009 (audioresample_get_unit_size):
4010 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4011 (gst_ffmpegcsp_get_unit_size):
4012 * gst/videoscale/gstvideoscale.c: (gst_video_scale_get_unit_size):
4013 use g_assert in _get_unit_size
4015 2006-08-18 Wim Taymans <wim@fluendo.com>
4017 * docs/libs/gst-plugins-base-libs-sections.txt:
4018 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_set_packet_len),
4019 (gst_rtp_buffer_pad_to), (gst_rtp_buffer_get_payload_subbuffer),
4020 (gst_rtp_buffer_get_payload_buffer):
4021 * gst-libs/gst/rtp/gstrtpbuffer.h:
4022 Document GstRTPBuffer.
4023 Added function to efficiently strip payload headers.
4024 API: gst_rtp_buffer_get_payload_subbuffer()
4026 2006-08-17 Tim-Philipp Müller <tim at centricular dot net>
4028 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
4029 (gst_tag_to_vorbis_comments):
4030 Serialise unknown vorbis comments into GST_TAG_EXTENDED_COMMENT
4031 tags and deserialise them properly as well (#347091).
4032 Add some more gtk-doc blurbs and also some g_return_if_fail().
4034 * tests/check/libs/tag.c: (GST_START_TEST),
4035 (back_to_vorbis_comments), (taglists_are_equal), (tag_suite):
4038 2006-08-17 Wim Taymans <wim@fluendo.com>
4040 * ext/ogg/Makefile.am:
4041 * ext/ogg/gstogg.c: (plugin_init):
4042 * ext/ogg/gstoggaviparse.c: (gst_ogg_avi_parse_get_type),
4043 (gst_ogg_avi_parse_base_init), (gst_ogg_avi_parse_class_init),
4044 (gst_ogg_avi_parse_init), (gst_ogg_avi_parse_finalize),
4045 (gst_ogg_avi_parse_setcaps), (gst_ogg_avi_parse_event),
4046 (gst_ogg_avi_parse_push_packet), (gst_ogg_avi_parse_chain),
4047 (gst_ogg_avi_parse_change_state), (gst_ogg_avi_parse_plugin_init):
4048 Added ogg-in-avi parser element. Fixes #140139.
4050 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
4051 Fixed a bug in oggdemux debug code.
4053 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
4054 (gst_riff_create_audio_template_caps):
4055 Recognise Ogg in the AVI extensible wave format.
4057 2006-08-17 Tim-Philipp Müller <tim at centricular dot net>
4059 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
4060 Make buffer durations add up (duration should be next_ts-ts for
4061 perfect streams). Fixes CD ripping to Ogg/Vorbis with vorbisenc
4064 * tests/check/libs/cddabasesrc.c: (gst_cd_foo_src_close),
4065 (test_buffer_timestamps), (cddabasesrc_suite):
4066 Add unit test for the above.
4068 * tests/check/Makefile.am:
4069 Don't know why cddabasesrc test was in VALGRIND_TO_FIX, remove
4070 to see what happens.
4072 2006-08-16 Wim Taymans <wim@fluendo.com>
4074 * ext/alsa/gstalsasink.c: (gst_alsasink_set_property),
4075 (gst_alsasink_open):
4076 * ext/alsa/gstalsasrc.c: (gst_alsasrc_set_property),
4078 Avoid setting and using a NULL device name.
4079 Print more info when we fail to open a device.
4081 2006-08-16 Tim-Philipp Müller <tim at centricular dot net>
4083 * docs/libs/gst-plugins-base-libs-sections.txt:
4084 * gst-libs/gst/tag/tag.h:
4085 * gst-libs/gst/tag/tags.c: (gst_tag_parse_extended_comment):
4086 API: add gst_tag_parse_extended_comment() (#351426).
4088 * tests/check/Makefile.am:
4089 * tests/check/libs/.cvsignore:
4090 * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite), (main):
4091 Add unit test for gst_tag_parse_extended_comment().
4093 2006-08-15 Tim-Philipp Müller <tim at centricular dot net>
4095 * sys/ximage/ximagesink.c: (gst_ximagesink_get_property):
4096 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_property):
4099 2006-08-15 Tim-Philipp Müller <tim at centricular dot net>
4101 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4102 * docs/plugins/gst-plugins-base-plugins-sections.txt:
4103 * docs/plugins/gst-plugins-base-plugins.args:
4104 * gst/playback/gstplaybin.c:
4107 * docs/plugins/inspect/plugin-adder.xml:
4108 * docs/plugins/inspect/plugin-alsa.xml:
4109 * docs/plugins/inspect/plugin-audioconvert.xml:
4110 * docs/plugins/inspect/plugin-audiorate.xml:
4111 * docs/plugins/inspect/plugin-audioresample.xml:
4112 * docs/plugins/inspect/plugin-audiotestsrc.xml:
4113 * docs/plugins/inspect/plugin-cdparanoia.xml:
4114 * docs/plugins/inspect/plugin-decodebin.xml:
4115 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
4116 * docs/plugins/inspect/plugin-gnomevfs.xml:
4117 * docs/plugins/inspect/plugin-ogg.xml:
4118 * docs/plugins/inspect/plugin-pango.xml:
4119 * docs/plugins/inspect/plugin-playbin.xml:
4120 * docs/plugins/inspect/plugin-subparse.xml:
4121 * docs/plugins/inspect/plugin-tcp.xml:
4122 * docs/plugins/inspect/plugin-theora.xml:
4123 * docs/plugins/inspect/plugin-typefindfunctions.xml:
4124 * docs/plugins/inspect/plugin-video4linux.xml:
4125 * docs/plugins/inspect/plugin-videorate.xml:
4126 * docs/plugins/inspect/plugin-videoscale.xml:
4127 * docs/plugins/inspect/plugin-videotestsrc.xml:
4128 * docs/plugins/inspect/plugin-volume.xml:
4129 * docs/plugins/inspect/plugin-vorbis.xml:
4130 * docs/plugins/inspect/plugin-ximagesink.xml:
4131 * docs/plugins/inspect/plugin-xvimagesink.xml:
4132 Update to CVS version.
4134 2006-08-14 Tim-Philipp Müller <tim at centricular dot net>
4136 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
4137 (gst_play_bin_set_property), (gst_play_bin_get_property),
4138 (value_list_append_structure_list),
4139 (gst_play_bin_handle_redirect_message),
4140 (gst_play_bin_handle_message):
4141 API: GstPlayBin::connection-speed
4142 Add "connection-speed" property; re-order redirect messages with
4143 multiple redirect locations depending on the minimum bitrate if
4144 that information is available and a connection speed is set
4147 2006-08-14 Tim-Philipp Müller <tim at centricular dot net>
4149 * gst/playback/gstplaybin.c:
4150 Update max volume to the same value that the volume element uses.
4152 2006-08-14 Wim Taymans <wim@fluendo.com>
4154 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
4157 2006-08-14 Wim Taymans <wim@fluendo.com>
4159 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
4160 (gst_ogg_demux_get_next_page), (gst_ogg_demux_perform_seek),
4161 (gst_ogg_demux_read_chain), (gst_ogg_demux_loop):
4162 Add some more debug info.
4163 Don't crash when a seek failed.
4164 Actually return the result of the seek instead of TRUE.
4165 Ignore multiple BOS pages with the same serial so that we don't create
4166 the same stream multiple times.
4167 Post an error when we fail to do the initial seek.
4169 2006-08-13 Wim Taymans <wim@fluendo.com>
4171 * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
4172 (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats):
4175 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
4176 (gst_alsa_mixer_new):
4177 Remove hack that always set the device to hw:0*.
4178 Properly find the card name for whatever device was configured.
4179 Do some better debugging.
4182 * ext/alsa/gstalsamixerelement.c:
4183 (gst_alsa_mixer_element_set_property),
4184 (gst_alsa_mixer_element_change_state):
4186 Handle setting of a NULL device name better.
4188 2006-08-11 Wim Taymans <wim@fluendo.com>
4190 * gst/adder/gstadder.c:
4191 Don't clip float values. Fixes #350900.
4193 2006-08-11 Andy Wingo <wingo@pobox.com>
4195 * gst/tcp/gsttcp.c: Really fix the build?
4197 * gst/tcp/gsttcp.h: For now, always disable deprecation here --
4200 2006-08-10 Tim-Philipp Müller <tim at centricular dot net>
4202 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes):
4203 Float caps shouldn't have a "signed" field.
4205 2006-08-10 Tim-Philipp Müller <tim at centricular dot net>
4207 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query):
4208 Implement SEEKING query in its most basic form, so that we can
4209 at least check if we're seekable or not (#350655).
4211 2006-08-09 Tim-Philipp Müller <tim at centricular dot net>
4213 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
4214 The checks here are not even close to anything that would
4215 justify MAXIMUM probability, lowering to POSSIBLE until someone
4216 fixes the checks (case at hand: quicktime redirection files
4217 might start with 00 00 01 XX and pass the checks here just
4220 2006-08-08 Tim-Philipp Müller <tim at centricular dot net>
4222 Patch by: Sjoerd Simons <sjoerd at luon net>
4224 * gst/typefind/gsttypefindfunctions.c: (multipart_type_find):
4225 Better detection for multipart/x-mixed-replace: accept leading
4226 whitespaces before the boundary marker as well (as our very own
4227 multipartmux used to produce) (#349068).
4229 2006-08-07 Tim-Philipp Müller <tim at centricular dot net>
4231 Patch by: Young-Ho Cha <ganadist at chollian net>
4233 * gst-libs/gst/riff/riff-ids.h:
4234 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
4235 (gst_riff_create_audio_template_caps):
4236 Detect DTS audio streams (#350157).
4238 2006-08-05 Andy Wingo <wingo@pobox.com>
4240 * ext/theora/gsttheoraparse.h:
4241 * ext/theora/theoraparse.c (gst_theora_parse_class_init)
4242 (theora_parse_dispose, theora_parse_set_property)
4243 (theora_parse_get_property, theora_parse_munge_granulepos)
4244 (theora_parse_push_buffer, theora_parse_change_state):
4245 API: GstTheoraParse::synchronization-points
4246 Add a property 'synchronization-points' to fix badly synchronized oggs.
4248 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4250 * tests/check/Makefile.am:
4251 * tests/check/libs/.cvsignore:
4252 * tests/check/libs/audio.c: (structure_contains_channel_positions),
4253 (fixed_caps_have_channel_positions), (GST_START_TEST),
4254 (audio_suite), (main):
4255 Add a few tests for the channel position stuff in libgstaudio.
4257 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4259 * ext/alsa/gstalsa.c: (caps_add_channel_configuration),
4260 (gst_alsa_detect_channels):
4261 * ext/alsa/gstalsasink.c:
4262 Add support for cards that (only) do more than 8 channels,
4263 like the Delta 44 (#345188).
4265 * gst-libs/gst/audio/multichannel.c:
4266 (gst_audio_check_channel_positions):
4267 * gst-libs/gst/audio/multichannel.h:
4268 API: add GST_AUDIO_CHANNEL_POSITION_NONE, which stands for an
4269 unspecified channel position and cannot be combined with any
4270 of the other audio channel positions; adjust position layout
4271 checks accordingly (#345188).
4273 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4275 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4276 Recognise ancient RealAudio files (see #349779).
4278 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4280 Patch by: Jens Granseuer <jensgr at gmx net>
4282 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4283 Add typefinder for Interplay's MVE format (#348973).
4285 2006-08-02 Wim Taymans <wim@fluendo.com>
4287 Patch by: Marcel Moreaux <marcelm at luon dot net>
4289 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4290 (gst_base_rtp_depayload_add_to_queue):
4291 * gst-libs/gst/rtp/gstbasertpdepayload.h:
4292 Handle RTP sequence number rollover.
4293 Disable jitterbuffer by default.
4295 2006-07-28 Jan Schmidt <thaytan@mad.scientist.com>
4297 * gst/audioresample/gstaudioresample.c: (audioresample_stop),
4298 (audioresample_set_caps):
4299 Don't leak references to the incoming caps. Clean them up when
4302 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
4303 (gst_video_scale_finalize):
4304 Don't leak our temporary pixel buffer.
4306 * tests/check/Makefile.am:
4307 * tests/check/pipelines/simple-launch-lines.c: (run_pipeline),
4308 (GST_START_TEST), (simple_launch_lines_suite):
4310 Fix leaks and re-enable the test for valgrind checking.
4312 2006-07-28 Tim-Philipp Müller <tim at centricular dot net>
4314 Patch by: Sjoerd Simons <sjoerd at luon net>
4316 * gst/typefind/gsttypefindfunctions.c: (multipart_type_find),
4318 Add typefind function for multipart/x-mixed-replace (#348916).
4320 2006-07-28 Wim Taymans <wim@fluendo.com>
4322 * gst/adder/gstadder.c: (gst_adder_setcaps),
4323 (gst_adder_query_duration):
4324 Fix leak in duration query.
4325 Reflow some docs and notes.
4327 2006-07-28 Michael Smith <msmith@fluendo.com>
4329 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST),
4331 Enable Andy's extra vorbisenc test, now that it passes. Also fix one
4334 2006-07-28 Michael Smith <msmith@fluendo.com>
4336 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps),
4337 (gst_vorbis_enc_sink_getcaps), (gst_vorbis_enc_buffer_from_packet),
4338 (gst_vorbis_enc_push_buffer),
4339 (gst_vorbis_enc_buffer_check_discontinuous),
4340 (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
4341 * ext/vorbis/vorbisenc.h:
4342 Handle discontinuities in the input vorbis stream correctly,
4343 so that the output is properly timestamped (and has good granulepos
4344 values). Needs some oggmux fixes too.
4346 2006-07-27 Wim Taymans <wim@fluendo.com>
4348 patch by: Kai Vehmanen <kv2004 eca cx>
4350 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4351 (gst_base_rtp_depayload_chain),
4352 (gst_base_rtp_depayload_handle_sink_event),
4353 (gst_base_rtp_depayload_change_state):
4354 Don't send multiple newsegments with different formats.
4357 2006-07-26 Wim Taymans <wim@fluendo.com>
4359 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4360 (gst_ogg_demux_do_seek), (gst_ogg_demux_read_chain):
4361 Make seeking in ogg more accurate again by doing the more correct
4362 granuletime to stream time conversion.
4364 2006-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
4366 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
4367 (gst_multi_fd_sink_new_client):
4368 debug a little more understandably
4369 do not use goto as a substitute for break, especially if
4370 break is also being used
4372 2006-07-26 Tim-Philipp Müller <tim at centricular dot net>
4374 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
4375 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
4376 Remove GLib-2.6 compatibility cruft.
4378 2006-07-24 Wim Taymans <wim@fluendo.com>
4380 * gst-libs/gst/audio/gstbaseaudiosink.c:
4381 (gst_base_audio_sink_render):
4382 Don't try to align a sample to an unknown value.
4384 2006-07-24 Wim Taymans <wim@fluendo.com>
4386 * gst-libs/gst/audio/gstbaseaudiosink.c:
4387 (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
4388 When the audio clock is slaved to another clock, never try to align
4389 samples but trust the rate interpolation algorithm.
4391 2006-07-24 Wim Taymans <wim@fluendo.com>
4393 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4394 Don't try to calculate silence samples, base class does this much
4397 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4398 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps),
4399 (gst_ring_buffer_acquire):
4400 Calculate silence samples correctly.
4402 * gst-libs/gst/audio/gstringbuffer.h:
4405 2006-07-22 Tim-Philipp Müller <tim at centricular dot net>
4407 * gst/typefind/gsttypefindfunctions.c: (xml_check_first_element):
4408 Limit search for the first markup tag to the first few kB of
4409 the file. If we don't find one there, it's highly unlikely that
4410 this is an XML(-ish) file.
4412 2006-07-21 Andy Wingo <wingo@pobox.com>
4414 * tests/check/pipelines/theoraenc.c (test_discontinuity): Similar
4415 test to the one in vorbisenc. Also commented out.
4417 * tests/check/pipelines/vorbisenc.c:
4418 (test_discontinuity): New test, commented out until Mike lands
4419 some elite vorbisenc patches.
4421 * tests/check/pipelines/theoraenc.c: Port to bufferstraw.
4422 Bufferstraw was actually factored out of these tests. Now we share
4425 * configure.ac (GST_MAJORMINOR): Rev core requirements to 0.10.9.1
4426 for bufferstraw addition to gstcheck.
4428 2006-07-21 Wim Taymans <wim@fluendo.com>
4430 * ext/theora/theoradec.c: (clip_buffer):
4433 2006-07-21 Wim Taymans <wim@fluendo.com>
4435 * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
4436 (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
4437 (gst_audioringbuffer_release), (gst_audioringbuffer_stop):
4439 Avoid type casting when we can.
4441 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_dispose):
4444 2006-07-20 Tim-Philipp Müller <tim at centricular dot net>
4446 * ext/alsa/gstalsamixerelement.c:
4447 (gst_alsa_mixer_element_change_state):
4448 Make state change fail if the specified device can't be opened
4451 2006-07-20 Wim Taymans <wim@fluendo.com>
4453 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
4454 (cb_newpad), (main):
4455 Example of a small audio/video player using decodebin.
4457 2006-07-20 Stefan Kost <ensonic@users.sf.net>
4459 * gst-libs/gst/riff/riff-ids.h:
4462 2006-07-19 Wim Taymans <wim@fluendo.com>
4464 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4465 (gst_base_rtp_depayload_chain),
4466 (gst_base_rtp_depayload_change_state):
4467 Don't assert when not negotiated but post a meaningfull
4468 error message. Fixes #347918.
4470 * gst-libs/gst/rtp/gstbasertppayload.c:
4471 Add comment about better default MTU size.
4473 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
4474 Small cleanups, start docs.
4476 2006-07-19 Tim-Philipp Müller <tim at centricular dot net>
4478 Patch by: Martin Szulecki
4480 * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_property):
4481 If "device-name" is requested and the device is not
4482 open, try to temporarily open it to obtain this
4483 information (#342494).
4485 2006-07-19 Tim-Philipp Müller <tim at centricular dot net>
4487 * gst-libs/gst/tag/gstid3tag.c:
4488 Add TSSE <=> GST_TAG_ENCODER mapping (see #347898).
4490 * gst-libs/gst/tag/gsttageditingprivate.h:
4491 * gst-libs/gst/tag/gstvorbistag.c:
4492 Some more random const-ifications.
4494 2006-07-18 Stefan Kost <ensonic@users.sf.net>
4496 * gst-libs/gst/riff/riff-ids.h:
4497 * gst-libs/gst/riff/riff-media.c:
4498 (gst_riff_create_video_template_caps):
4499 Add more FOURCCs (sort list to make stuff easier to find),
4500 add comment what those 16 bytes in struct _gst_riff_strh according to
4503 2006-07-17 Tim-Philipp Müller <tim at centricular dot net>
4505 * gst-libs/gst/audio/multichannel.c:
4506 (gst_audio_check_channel_positions),
4507 (gst_audio_fixate_channel_positions):
4508 Const-ify two arrays.
4510 2006-07-17 Tim-Philipp Müller <tim at centricular dot net>
4512 * ext/alsa/gstalsa.c: (caps_add_channel_configuration):
4513 Fix typo, so that alsasink also advertises 8 channels
4514 if that's supported (tags: can, worms, open, alsa, ph34r).
4516 2006-07-17 Wim Taymans <wim@fluendo.com>
4518 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4519 (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
4520 *sigh*, when is the compiler going to warn when the comments
4521 are out-of-sync with the code.. Refix case of busted theora
4522 headers with 0 granule pos.
4524 2006-07-14 Wim Taymans <wim@fluendo.com>
4526 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4527 (gst_base_rtp_depayload_wait),
4528 (gst_base_rtp_depayload_change_state),
4529 (gst_base_rtp_depayload_set_property),
4530 (gst_base_rtp_depayload_get_property):
4531 Fix 99% cpu load by waiting for absolute times on the
4532 clock. Fixes #347300.
4534 2006-07-14 Andy Wingo <wingo@pobox.com>
4536 * ext/theora/gsttheoraparse.h:
4537 * ext/theora/theoraparse.c (theora_parse_drain_event_queue)
4538 (theora_parse_push_headers, theora_parse_clear_queue)
4539 (theora_parse_drain_queue_prematurely, )
4540 (theora_parse_sink_event, theora_parse_change_state): Queue events
4541 until we initialized our state, like in vorbisparse.
4543 * ext/vorbis/vorbisparse.h:
4544 * ext/vorbis/vorbisparse.c (vorbis_parse_drain_event_queue)
4545 (vorbis_parse_push_headers, vorbis_parse_clear_queue)
4546 (vorbis_parse_drain_queue_prematurely, )
4547 (vorbis_parse_sink_event, vorbis_parse_change_state): Queue events
4548 until we have initialized our state. Fixes seeking after an
4551 2006-07-14 Andy Wingo <wingo@pobox.com>
4553 Patch by: Iain Holmes <iaingnome@gmail.com>
4555 * ext/ogg/gstoggdemux.c (gst_ogg_demux_finalize): Fix memleak.
4557 2006-07-14 Jan Schmidt <thaytan@mad.scientist.com>
4560 Bump nano back to CVS
4562 === release 0.10.9 ===
4564 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4567 releasing 0.10.9, "I walk the line"
4569 2006-07-14 Michael Smith <msmith@fluendo.com>
4571 * tests/check/pipelines/vorbisenc.c: (stop_pipeline):
4572 Move a g_cond_signal to earlier to avoid sometimes deadlocking
4573 (commonly happens when running this test under valgrind) when trying
4574 to remove the buffer probe.
4576 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4578 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
4579 Fix missing g_unlock from the previous commit
4581 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4583 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
4584 (gst_ximagesink_change_state):
4585 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
4586 (gst_xvimagesink_change_state):
4587 Implement a locking order to ensure we always take the object lock
4588 before the x_lock and never vice-versa.
4590 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4592 * gst/playback/gstdecodebin.c: (find_compatibles):
4593 Fix a caps leak when linking (#347304)
4595 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4596 (gst_ximagesink_ximage_destroy), (gst_ximagesink_xcontext_clear),
4597 (gst_ximagesink_change_state):
4598 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
4599 (gst_xvimage_buffer_finalize), (gst_xvimagesink_check_xshm_calls),
4600 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
4601 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_change_state):
4602 Don't leak shared memory resources. Use the object lock to protect
4603 against the xcontext disappearing while returning a buffer from the
4606 2006-07-12 Edward Hervey <edward@fluendo.com>
4608 * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize),
4609 (vorbis_handle_comment_packet):
4610 gst_tag_list_merge() returns a new object. Take that into account when
4611 using it. This avoids memleak.
4612 Revert previous commit which is not needed.
4614 2006-07-12 Edward Hervey <edward@fluendo.com>
4616 * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize):
4617 Reset the decoder in finalize so that all fields get cleared.
4619 2006-07-12 Wim Taymans <wim@fluendo.com>
4621 * gst-libs/gst/audio/gstbaseaudiosrc.c:
4622 (gst_base_audio_src_set_clock),
4623 (gst_base_audio_src_check_get_range), (gst_base_audio_src_create):
4624 Don't try to post an error message when setting the clock fails
4625 as this can happen when adding an element to a bin which will then
4626 deadlock. Fixes #347296.
4628 2006-07-12 Edward Hervey <edward@fluendo.com>
4630 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
4631 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
4632 (vorbis_handle_type_packet):
4633 Post tag messages on the bus even if we're not initialized.
4634 If we're not initialized, we still postpone the event pushing of tags.
4636 2006-07-12 Wim Taymans <wim@fluendo.com>
4638 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4639 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4640 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4641 Revert last two changes that broke the freeze.
4643 2006-07-12 Wim Taymans <wim@fluendo.com>
4645 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4646 basesink calculates silence sample correctly for us.
4648 2006-07-12 Wim Taymans <wim@fluendo.com>
4650 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4651 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4652 Calculate correct silence samples so we don't fill our ringbuffer
4655 2006-07-12 Edward Hervey <edward@fluendo.com>
4657 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
4658 (gst_vorbis_dec_reset), (vorbis_dec_sink_event),
4659 (vorbis_handle_comment_packet), (vorbis_handle_type_packet):
4660 * ext/vorbis/vorbisdec.h:
4661 Delay sending events (newsegment, tags) until the decoder is properly
4665 2006-07-11 Jan Schmidt <thaytan@mad.scientist.com>
4667 * tests/check/elements/audioconvert.c: (get_float_mc_caps),
4668 (get_int_mc_caps), (GST_START_TEST), (audioconvert_suite):
4669 Patch from #347221 adding a test for audioconvert
4672 2006-07-11 Tim-Philipp Müller <tim at centricular dot net>
4674 * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
4675 (gst_ssa_parse_parse_line):
4676 Don't include the terminating NUL in the buffer size,
4677 it's only there for extra paranoia (would add random
4678 '*' characters at the end of each subtitle since the
4679 terminator itself is not valid UTF-8 technically).
4680 Also fix indenting after boilerplate macro.
4682 2006-07-10 Tim-Philipp Müller <tim at centricular dot net>
4684 * gst/playback/gstdecodebin.c: (close_pad_link):
4685 Also emit 'unknown-type' signal (which should really be
4686 called unhandled-type) if we found potential decoders/demuxers
4687 in the registry but none of them worked in the end (as in the
4688 case where the plugins don't exist any longer but are still
4689 listed in the registry). Fixes #329798.
4691 2006-07-08 Andy Wingo <wingo@pobox.com>
4693 * theoraparse.c (theora_parse_push_buffer)
4694 (theora_parse_drain_queue_prematurely, theora_parse_drain_queue):
4695 Add some more debugging. Fix granulepos reconstruction in the face
4698 2006-07-06 Wim Taymans <wim@fluendo.com>
4700 * gst-libs/gst/audio/gstbaseaudiosink.c:
4701 (gst_base_audio_sink_class_init),
4702 (gst_base_audio_sink_provide_clock):
4703 Use gobject_class instead of G_OBJECT_CLASS (klass)
4705 * gst-libs/gst/audio/gstbaseaudiosrc.c:
4706 (gst_base_audio_src_class_init), (gst_base_audio_src_init),
4707 (gst_base_audio_src_set_clock), (gst_base_audio_src_provide_clock),
4708 (gst_base_audio_src_get_time),
4709 (gst_base_audio_src_check_get_range), (gst_base_audio_src_create),
4710 (gst_base_audio_src_create_ringbuffer):
4711 Fix latency and buffer-time constants and properties ala basesink.
4712 Implement pull based scheduling. Fixes #346527.
4713 Set default blocksize in GstBaseSrc to 0, we default to pushing out
4715 Refuse slaving to another clock instead of silently not working.
4716 Only provide a clock when we are actually able to do so.
4717 Various small cleanups and compiler hints.
4719 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
4721 Patch by: Lutz Mueller <lutz at topfrose de>
4723 * gst/typefind/gsttypefindfunctions.c: (html_type_find),
4725 Add typefinding for text/html (#346581).
4727 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
4729 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
4730 (xml_check_first_element), (xml_type_find), (smil_type_find):
4731 Fix SMIL typefinding, make xml_check_first_element() more
4734 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
4736 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
4737 (gst_play_base_bin_finalize), (decodebin_element_added_cb),
4738 (decodebin_element_removed_cb), (gst_play_base_bin_set_property):
4739 * gst/playback/gstplaybasebin.h:
4740 Protect list of elements with a subtitle-encoding property and
4741 the subtitle encoding member itself with a lock of their own
4742 instead of using the object lock. This prevents a dead-lock in
4743 the element-remove callback in some circumstances when shutting
4746 2006-07-05 Sebastien Moutte <sebastien@moutte.net>
4748 * win32/common/libgsttag.def:
4749 Export some new functions.
4750 * win32/vs6/libgstogg.dsp:
4751 Add a link to libgsttag-0.10.lib.
4753 2006-07-04 Tim-Philipp Müller <tim at centricular dot net>
4755 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
4756 Some const-ification.
4758 2006-07-04 Wim Taymans <wim@fluendo.com>
4760 * gst/playback/gstplaybasebin.c: (is_stream), (gen_source_element):
4761 Improve checking if we are dealing with a stream. Added some
4762 more uris that need buffering.
4764 2006-07-03 Edward Hervey <edward@fluendo.com>
4766 * ext/vorbis/vorbisdec.c: (vorbis_do_clip):
4767 Remove unused variable.
4769 2006-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
4774 add GCOV_LIBS to GST_LIBS
4776 2006-07-02 Tim-Philipp Müller <tim at centricular dot net>
4778 Patch by: Michael Sheldon <webmaster at mikeasoft com>
4780 * ext/alsa/gstalsasrc.c:
4781 Add 32 bps to template caps and increase channels range
4782 from [1,2] to [1,MAX]. See #346326.
4784 2006-06-30 Tim-Philipp Müller <tim at centricular dot net>
4786 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
4787 Recognise 'WMVA' video codec fourcc (#345879).
4789 2006-06-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
4791 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4792 Fixed nasty memory leak
4794 2006-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
4796 * gst/tcp/gsttcp.c: (gst_tcp_read_buffer),
4797 (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps):
4800 2006-06-23 Jan Schmidt <thaytan@mad.scientist.com>
4802 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
4803 (gst_decode_bin_init), (gst_decode_bin_finalize), (add_fakesink),
4804 (remove_fakesink), (pad_probe), (gst_decode_bin_change_state):
4805 Protect remove_fakesink using a mutex, so that we don't try and
4806 remove the fakesink simultaneously from multiple threads.
4808 When going from READY to PAUSED, restore the fakesink, so that
4809 it is there when decodebin gets reused.
4811 2006-06-23 Tim-Philipp Müller <tim at centricular dot net>
4813 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4814 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4815 * gst-libs/gst/rtp/gstbasertppayload.c:
4816 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4817 * gst/tcp/gstmultifdsink.c:
4818 * gst/tcp/gsttcpclientsink.c:
4819 * gst/tcp/gsttcpclientsrc.c:
4820 * gst/tcp/gsttcpserversink.c:
4821 * gst/tcp/gsttcpserversrc.c:
4822 * gst/videorate/gstvideorate.c:
4823 * gst/videotestsrc/gstvideotestsrc.c:
4824 * sys/v4l/gstv4ljpegsrc.c:
4825 * sys/v4l/gstv4lmjpegsink.c:
4826 * sys/v4l/gstv4lsrc.c:
4827 * tests/examples/seek/scrubby.c:
4828 * tests/examples/seek/seek.c:
4829 Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
4831 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4833 * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
4834 Second field in GEnumValue shouldn't be a description,
4835 but a stringified version of the enum value.
4837 2006-06-22 Wim Taymans <wim@fluendo.com>
4839 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4840 (gst_ximage_buffer_free), (gst_ximagesink_ximage_put),
4841 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
4842 Avoid type checking in buffer casts.
4843 Avoid caps copy in buffer_alloc when we can.
4844 Use pad_peer_accept.
4846 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4848 * gst-libs/gst/tag/tag.h:
4849 Oops, make that 'Since: 0.10.9'.
4851 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4853 * docs/libs/gst-plugins-base-libs-sections.txt:
4854 * gst-libs/gst/tag/tag.h:
4855 * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
4856 (gst_tag_image_type_get_type):
4857 API: add GstTagImageType enum to describe images contained
4858 in image tags (#345641).
4860 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4862 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4863 Fix warnings with gst-inspect: "buffers-min" property
4864 should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
4865 typo in property description.
4867 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4869 Patch by: Cody Russell <bratsche at gnome org>
4871 * gst/audioresample/gstaudioresample.c:
4872 (gst_audioresample_class_init):
4873 * gst/playback/gststreamselector.c:
4874 (gst_stream_selector_class_init):
4875 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
4876 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4877 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
4878 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
4879 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
4880 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
4881 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
4882 * gst/videotestsrc/gstvideotestsrc.c:
4883 (gst_video_test_src_class_init):
4884 * gst/volume/gstvolume.c: (gst_volume_class_init):
4885 Avoid unnecessary class cast check in class_init
4886 functions (#337747).
4888 2006-06-21 Tim-Philipp Müller <tim at centricular dot net>
4890 * ext/pango/gsttextoverlay.c: (gst_text_overlay_make_utf8),
4891 (gst_text_overlay_video_chain):
4892 g_markup_escape_text() REALLY doesn't like non-UTF8 input
4893 and doesn't validate its input either (and neither did
4894 textoverlay it seems). Let's do that then and fix #345206.
4896 2006-06-19 Wim Taymans <wim@fluendo.com>
4898 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
4899 (gst_unit_type_get_type), (gst_multi_fd_sink_class_init),
4900 (gst_multi_fd_sink_init), (gst_multi_fd_sink_add_full),
4901 (gst_multi_fd_sink_add), (gst_multi_fd_sink_handle_client_read),
4902 (find_syncframe), (find_limits), (assign_value),
4903 (count_burst_unit), (gst_multi_fd_sink_new_client),
4904 (gst_multi_fd_sink_handle_client_write),
4905 (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_render),
4906 (gst_multi_fd_sink_set_property), (gst_multi_fd_sink_get_property),
4907 (gst_multi_fd_sink_change_state):
4908 * gst/tcp/gstmultifdsink.h:
4909 Added shiny new burst-on-connect methods.
4910 Add properties to control the minimal amount of data queued.
4912 API: bytes-min property
4913 API: time-min property
4914 API: buffers-min property
4915 API: burst-unit property
4916 API: burst-value property
4917 API: add-full signal
4919 * gst/tcp/gsttcp-marshal.list:
4920 Added new marshaller code for the new signal.
4922 * tests/check/elements/multifdsink.c: (GST_START_TEST),
4923 (multifdsink_suite):
4924 Added testcases for new burst methods.
4926 2006-06-19 Edward Hervey <edward@fluendo.com>
4928 * ext/theora/theoradec.c: (clip_buffer), (theora_dec_push):
4929 Implement clipping for accurate seeking.
4932 2006-06-19 Wim Taymans <wim@fluendo.com>
4934 Patch by: Philip Jaegenstedt <philip at lysator dot liu dot se>
4936 * gst/videoscale/gstvideoscale.c: (gst_video_scale_prepare_size),
4937 (gst_video_scale_transform):
4938 Make videoscale support RGBA, ARGB, BGRA and ABGR. Fixes #345131
4940 2006-06-17 Tim-Philipp Müller <tim at centricular dot net>
4943 Fix --disable-external (can't set conditionals conditionally,
4946 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
4948 * tests/check/elements/audioresample.c: (test_reuse),
4949 (audioresample_suite):
4950 Add test case for bug #342789 fixed below.
4952 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
4954 * gst/audioresample/gstaudioresample.c:
4955 (gst_audioresample_class_init), (gst_audioresample_init),
4956 (audioresample_start), (audioresample_stop),
4957 (gst_audioresample_set_property), (gst_audioresample_get_property):
4958 Implement GstBaseTransform::start and ::stop so that audioresample
4959 can clear its internal state properly and be reused instead of
4960 causing non-negotiated errors with playbin under some circumstances
4963 * tests/check/elements/audioresample.c: (setup_audioresample),
4964 (cleanup_audioresample):
4965 Need to set element state here so that ::start and ::stop are
4968 2006-06-16 Wim Taymans <wim@fluendo.com>
4970 Patch by: Young-Ho Cha <ganadist at chollian dot net>
4972 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_vids):
4973 Parse extra data better, apparently it's right behind
4974 the normal strf header size. Fixes #343500.
4976 2006-06-16 Wim Taymans <wim@fluendo.com>
4978 * ext/alsa/gstalsasink.c: (set_hwparams):
4979 If we fail to set the buffer_time and period_time alsa
4980 parameters, post a warning and leave alsa select a
4981 default instead of failing. Fixes #342085
4983 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
4985 * docs/libs/gst-plugins-base-libs-sections.txt:
4986 * gst-libs/gst/cdda/gstcddabasesrc.h:
4987 Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
4988 out in the header file and shouldn't be listed in the docs.
4990 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
4991 Must dereference pointer to fourcc in the debug statement.
4993 2006-06-16 Stefan Kost <ensonic@users.sf.net>
4995 * docs/libs/Makefile.am:
4996 * docs/libs/gst-plugins-base-libs-docs.sgml:
4997 * docs/libs/gst-plugins-base-libs-sections.txt:
4998 * docs/libs/gst-plugins-base-libs.types:
4999 add remaining symbols into correct setions
5001 * gst-libs/gst/audio/gstringbuffer.c:
5004 * gst-libs/gst/audio/gstringbuffer.h:
5005 comment out not yet implemented function
5008 * gst-libs/gst/floatcast/floatcast.h:
5009 * gst-libs/gst/netbuffer/gstnetbuffer.c:
5010 add short descriptions
5013 * gst-libs/gst/interfaces/propertyprobe.c:
5014 fix return value docs
5016 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5017 simplify debug logging
5019 * gst-libs/gst/riff/riff-read.h:
5020 sync function prototype and docs
5022 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5023 remove left over symbol
5025 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
5030 Use GST_PLUGIN_DOCS macro in configure.ac, add
5031 --enable-plugin-docs default to autogen.sh and use
5032 ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
5034 2006-06-15 Wim Taymans <wim@fluendo.com>
5036 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
5037 (gst_ogg_demux_activate_chain), (gst_ogg_demux_combine_flows),
5038 (gst_ogg_demux_loop):
5039 Combine GstFlowReturn from the source pads to give a
5040 meaningfull result to the upstream peer or to stop the
5041 processing task in case of errors.
5043 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
5045 * gst/playback/gststreaminfo.c: (cb_probe):
5046 Try GST_TAG_CODEC as fallback when extracting the
5047 codec name; more debug info.
5049 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
5051 * ext/ogg/Makefile.am:
5052 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
5053 Extract language tags from ogm subtitle streams, so that
5054 the subtitle menu choices are labelled correctly in
5055 Totem (fixes #344708).
5057 2006-06-14 Wim Taymans <wim@fluendo.com>
5059 Patch by: Alessandro Decina <alessandro at nnva dot org>
5061 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_clear),
5062 (gst_ogg_mux_release_pad), (gst_ogg_mux_get_headers),
5063 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_init_collectpads),
5064 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
5065 Fix various leaks. Fixes #343699.
5066 Add x-smoke mime type.
5068 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
5070 * gst-libs/gst/riff/riff-ids.h:
5071 Add IDs for 'bext' chunks (see #343837).
5073 2006-06-12 Tim-Philipp Müller <tim at centricular dot net>
5075 Patch by: Young-Ho Cha <ganadist at chollian net>
5077 * gst/subparse/samiparse.c: (sami_context_pop_state),
5078 (handle_start_font), (end_sami_element):
5079 Honour font face tags in SAMI subtitles (#344503).
5081 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5084 add missing files containing translatable strings
5086 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5088 * docs/libs/tmpl/.cvsignore:
5089 we don't want those *.sgml files in CVS either
5091 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5093 * docs/libs/.cvsignore:
5094 * tests/check/elements/.cvsignore:
5095 * tests/check/libs/.cvsignore:
5098 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5100 * docs/libs/Makefile.am:
5101 also commiting the changed Makefile.am (added more libs to the
5104 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5106 * docs/libs/gst-plugins-base-libs-docs.sgml:
5107 * docs/libs/gst-plugins-base-libs-sections.txt:
5108 * docs/libs/gst-plugins-base-libs.types:
5109 first batch of reordering things, add index & hierarchy
5111 2006-06-11 Thomas Vander Stichele <thomas at apestaart dot org>
5114 use GST_PKG_CHECK_MODULES, cleans up output
5116 2006-06-10 Tim-Philipp Müller <tim at centricular dot net>
5118 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
5119 Add support for burn:// URIs (#343385); const-ify things a bit,
5120 use G_N_ELEMENTS instead of hard-coded array size.
5122 2006-06-10 Tim-Philipp Müller <tim at centricular dot net>
5124 Patch by: Young-Ho Cha <ganadist at chollian net>
5126 * gst/subparse/samiparse.c: (fix_invalid_entities), (parse_sami):
5127 Fix up broken entities before passing them to libxml *sigh*.
5130 2006-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
5135 === release 0.10.8 ===
5137 2006-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
5140 releasing 0.10.8, "Moar gij ziet mij nie"
5142 2006-06-07 Thomas Vander Stichele <thomas at apestaart dot org>
5159 * win32/common/config.h:
5162 2006-06-07 Thomas Vander Stichele <thomas at apestaart dot org>
5164 * docs/libs/tmpl/gstaudio.sgml:
5165 * docs/libs/tmpl/gstcolorbalance.sgml:
5166 * docs/libs/tmpl/gstmixer.sgml:
5167 * docs/libs/tmpl/gstringbuffer.sgml:
5168 * docs/libs/tmpl/gsttuner.sgml:
5169 * docs/libs/tmpl/gstxoverlay.sgml:
5170 * gst-libs/gst/audio/audio.c:
5171 * gst-libs/gst/audio/gstringbuffer.c:
5172 * gst-libs/gst/interfaces/colorbalance.c:
5173 * gst-libs/gst/interfaces/mixer.c:
5174 * gst-libs/gst/interfaces/tuner.c:
5175 * gst-libs/gst/interfaces/xoverlay.c:
5176 move last template doc snippets to source code and delete them
5178 2006-06-06 Michael Smith <msmith@fluendo.com>
5180 * ext/theora/theoraparse.c: (theora_parse_drain_queue_prematurely),
5181 (theora_parse_drain_queue):
5182 Mark DELTA_UNIT on non-keyframes.
5184 2006-06-03 Jan Schmidt <thaytan@mad.scientist.com>
5186 * gst-libs/gst/audio/gstbaseaudiosink.c:
5187 (gst_base_audio_sink_class_init), (gst_base_audio_sink_setcaps):
5188 * gst-libs/gst/audio/gstbaseaudiosink.h:
5189 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps),
5190 (gst_ring_buffer_samples_done):
5191 * gst-libs/gst/audio/gstringbuffer.h:
5192 Document better the fact that latency_time and buffer_time are values
5193 stored in microseconds, and not the usual GStreamer nanoseconds.
5194 Change the variables (compatibly) that store them from GstClockTime
5195 to guint64 to make it more clear that they're not storing clock times.
5196 Also, remove the bogus property description that says the user can
5197 specify -1 to get the default value, since that's never been the case.
5199 When computing the default segment size for the ring buffer, make it
5200 an integer number of samples.
5202 When the sub-class indicates a delay greater than the number of
5203 samples we've written return 0 from the audio sink get_time method.
5205 2006-06-02 Michael Smith <msmith@fluendo.com>
5207 * tests/check/elements/audioconvert.c: (set_channel_positions),
5208 (get_float_mc_caps), (get_int_mc_caps):
5209 * tests/check/elements/audioresample.c:
5210 * tests/check/elements/audiotestsrc.c: (GST_START_TEST):
5211 * tests/check/elements/videorate.c:
5212 * tests/check/elements/videotestsrc.c: (GST_START_TEST):
5213 * tests/check/elements/volume.c:
5214 * tests/check/elements/vorbisdec.c:
5215 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
5216 Don't busy-wait in tests; this was causing test timeouts very
5217 frequently when running under valgrind.
5219 2006-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
5222 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_init),
5223 (gst_multi_fd_sink_remove_client_link),
5224 (gst_multi_fd_sink_client_queue_caps),
5225 (gst_multi_fd_sink_client_queue_buffer),
5226 (gst_multi_fd_sink_handle_client_write),
5227 (gst_multi_fd_sink_render):
5228 * gst/tcp/gstmultifdsink.h:
5229 make multifdsink properly deal with streamheader:
5230 - streamheader is taken from caps
5231 - buffers marked with IN_CAPS are not sent
5232 - streamheaders are sent, on connection, from the caps of the
5233 buffer where the client gets positioned to
5234 - further streamheader changes are done every time the client
5235 will receive a buffer with different caps
5236 * tests/check/elements/multifdsink.c: (GST_START_TEST),
5237 (gst_multifdsink_create_streamheader):
5240 2006-06-02 Michael Smith <msmith@fluendo.com>
5242 * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
5243 Reinstate limit on channel count. Vorbis does not define the meaning
5244 of > 6 channels, so they're just independent channels. Gstreamer
5245 currently has no mechanism to represent N independent channels.
5247 2006-06-02 Michael Smith <msmith@fluendo.com>
5249 * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
5250 Don't arbitrarily restrict channel counts and rate in vorbis.
5251 In terms of effects likely on real-world files, this fixes 96kHz
5254 2006-06-02 Michael Smith <msmith@fluendo.com>
5256 * gst/audioconvert/audioconvert.c: (float):
5257 More correct float->int conversion.
5259 2006-06-02 Michael Smith <msmith@fluendo.com>
5261 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_perform_seek):
5262 Don't accidently send GST_CLOCK_TIME_NONE as a new segment start
5263 value. Fixes g-critical on trying to play back ogg containing
5266 2006-06-02 Wim Taymans <wim@fluendo.com>
5268 * gst/playback/gstplaybasebin.c: (group_create), (group_commit),
5270 * gst/playback/gstplaybasebin.h:
5271 Make the subtitle detection work from any thread so we don't
5272 deadlock. Fixes #343397.
5274 2006-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
5276 * gst/volume/Makefile.am:
5277 Seriously, it's not *that* hard to get compilation right. Even
5278 a drunk can do it ! Add LIBOIL CFLAGS and LIBS
5280 2006-06-01 Stefan Kost <ensonic@users.sf.net>
5282 * gst/volume/gstvolume.c: (volume_choose_func),
5283 (volume_update_real_volume), (gst_volume_class_init),
5284 (gst_volume_init), (volume_process_float), (volume_process_int16),
5285 (volume_process_int16_clamp), (volume_set_caps),
5286 (volume_transform_ip), (plugin_init):
5287 * gst/volume/gstvolume.h:
5288 rewrite the passthrough check, split _int16 and _int16_clamp, fix
5289 another property desc., remove unused param from process function
5291 * tests/check/elements/volume.c: (volume_suite):
5292 reactivate the passthrough test
5294 2006-06-01 Stefan Kost <ensonic@users.sf.net>
5296 * ext/alsa/gstalsamixerelement.h:
5297 * ext/alsa/gstalsamixeroptions.h:
5298 * ext/alsa/gstalsamixertrack.h:
5299 * ext/gnomevfs/gstgnomevfssink.h:
5300 * ext/gnomevfs/gstgnomevfssrc.h:
5301 * ext/theora/gsttheoradec.h:
5302 * ext/theora/gsttheoraenc.h:
5303 * ext/theora/gsttheoraparse.h:
5304 * ext/vorbis/vorbisparse.h:
5305 * gst-libs/gst/audio/gstaudioclock.h:
5306 * gst-libs/gst/audio/gstaudiofilter.h:
5307 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5308 * gst/audioconvert/gstaudioconvert.h:
5309 * gst/audioresample/gstaudioresample.h:
5310 * gst/audiotestsrc/gstaudiotestsrc.h:
5311 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
5312 * gst/playback/gststreamselector.h:
5313 * gst/tcp/gstmultifdsink.h:
5314 * gst/tcp/gsttcpclientsink.h:
5315 * gst/tcp/gsttcpclientsrc.h:
5316 * gst/tcp/gsttcpserversink.h:
5317 * gst/tcp/gsttcpserversrc.h:
5318 * gst/videorate/gstvideorate.h:
5319 * gst/videoscale/gstvideoscale.h:
5320 * gst/videotestsrc/gstvideotestsrc.h:
5321 * gst/volume/gstvolume.h:
5322 * sys/v4l/gstv4ljpegsrc.h:
5323 * sys/v4l/gstv4lmjpegsink.h:
5324 * sys/v4l/gstv4lmjpegsrc.h:
5325 * sys/v4l/gstv4lsrc.h:
5326 * sys/ximage/ximagesink.h:
5327 * sys/xvimage/xvimagesink.h:
5328 * tests/old/testsuite/alsa/sinesrc.h:
5329 Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
5331 2006-05-31 Wim Taymans <wim@fluendo.com>
5333 * ext/libvisual/visual.c: (gst_visual_reset),
5334 (gst_visual_sink_setcaps), (gst_visual_sink_event),
5335 (gst_visual_src_event), (get_buffer), (gst_visual_chain):
5337 Use running time before doing QoS.
5340 2006-05-31 Thomas Vander Stichele <thomas at apestaart dot org>
5342 * docs/libs/Makefile.am:
5343 set a magic variable to indicate we know the docs are incomplete
5345 2006-05-30 Sebastien Moutte <sebastien@moutte.net>
5347 * win32/common/libgstvideo.def:
5348 export gst_video_calculate_display_ratio
5349 * win32/vs6/libgstvideoscale.dsp:
5350 add link to libgstvideo-0.10.lib
5352 2006-05-30 Tim-Philipp Müller <tim at centricular dot net>
5354 * gst/playback/gstplaybasebin.c: (gen_source_element):
5355 Throw a more comprehensible error for rtsp:// URIs (rather
5356 than erroring out with a negotiation error later on) until
5357 we fix playbin to handle rtspsrc etc.
5359 2006-05-30 Wim Taymans <wim@fluendo.com>
5361 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
5362 (gst_text_overlay_text_event):
5365 2006-05-30 Wim Taymans <wim@fluendo.com>
5367 * gst/adder/gstadder.c: (gst_adder_class_init), (gst_adder_init),
5368 (gst_adder_request_new_pad), (gst_adder_release_pad):
5369 * gst/adder/gstadder.h:
5370 Implement release_request_pad.
5371 Make padcounter atomic.
5373 * tests/check/elements/adder.c: (GST_START_TEST), (adder_suite):
5374 Added check for release_pad in adder.
5376 2006-05-30 Wim Taymans <wim@fluendo.com>
5378 * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
5381 2006-05-30 Thomas Vander Stichele <thomas at apestaart dot org>
5383 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
5384 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
5385 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
5386 (gst_ogg_pad_submit_page), (gst_ogg_chain_new_stream),
5387 (gst_ogg_demux_seek), (gst_ogg_demux_get_data),
5388 (gst_ogg_demux_get_next_page), (gst_ogg_demux_do_seek),
5389 (gst_ogg_demux_bisect_forward_serialno),
5390 (gst_ogg_demux_read_chain), (gst_ogg_demux_find_chains),
5391 (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
5393 clean up printf formats for granulepos and serialno
5395 2006-05-30 Michael Smith <msmith@fluendo.com>
5397 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
5398 (gst_vorbis_enc_class_init), (gst_vorbis_enc_dispose),
5399 (gst_vorbis_enc_generate_sink_caps), (gst_vorbis_enc_sink_getcaps),
5400 (gst_vorbis_enc_init), (gst_vorbis_enc_buffer_from_header_packet),
5401 (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
5402 * ext/vorbis/vorbisenc.h:
5403 Multi-channel caps negotiation, so we can do proper multichannel
5404 vorbis encoding, negotiated through audioconvert.
5406 2006-05-30 Wim Taymans <wim@fluendo.com>
5408 * tests/check/elements/adder.c: (test_event_message_received),
5409 (test_play_twice_message_received), (GST_START_TEST),
5411 Added check to show that #339935 is fixed with ongoing
5412 adder and collectpads fixes.
5414 2006-05-29 Wim Taymans <wim@fluendo.com>
5416 * gst/adder/gstadder.c: (gst_adder_request_new_pad):
5417 Don't leak pad name.
5419 2006-05-29 Wim Taymans <wim@fluendo.com>
5421 * gst/adder/gstadder.c: (gst_adder_query_duration),
5422 (forward_event_func), (forward_event), (gst_adder_src_event):
5424 Make query/seeking code threadsafe.
5426 * tests/check/Makefile.am:
5427 * tests/check/elements/adder.c: (test_event_message_received),
5428 (GST_START_TEST), (test_play_twice_message_received):
5429 Fix adder test case.
5431 2006-05-29 Tim-Philipp Müller <tim at centricular dot net>
5433 Patch by: Young-Ho Cha <ganadist at chollian net>
5435 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
5436 (gst_play_base_bin_init), (gst_play_base_bin_dispose),
5437 (set_encoding_element), (decodebin_element_added_cb),
5438 (decodebin_element_removed_cb), (setup_subtitle), (setup_source),
5439 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
5440 * gst/playback/gstplaybasebin.h:
5441 Add 'subtitle-encoding' property to playbin, so applications can
5442 force a subtitle encoding for non-UTF8 subtitles (#342268).
5444 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init),
5445 (gst_sub_parse_set_property):
5446 Rename recently-added 'encoding' property to 'subtitle-encoding'
5447 (so it can be proxied by playbin/decodebin in a generic way
5448 with less danger of false positives).
5450 2006-05-29 Michael Smith <msmith@fluendo.com>
5452 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
5453 (append_with_other_format), (set_structure_widths),
5454 (gst_audio_convert_transform_caps):
5455 Patch from #341562: give more specific audio caps in get_caps, so
5456 that basetransform can make better decisions on what caps to
5459 2006-05-28 Stefan Kost <ensonic@users.sf.net>
5461 * tests/check/elements/volume.c:
5462 make it compile again
5464 2006-05-28 Stefan Kost <ensonic@users.sf.net>
5466 * tests/check/elements/volume.c: (volume_suite):
5467 disable test until #343196 gets resolved
5469 2006-05-28 Stefan Kost <ensonic@users.sf.net>
5471 * gst/adder/gstadder.c: (gst_adder_get_type):
5472 Make it easier to copy&paste
5474 * gst/volume/Makefile.am:
5475 * gst/volume/gstvolume.c: (volume_update_real_volume),
5476 (gst_volume_set_volume), (gst_volume_set_mute),
5477 (gst_volume_class_init), (volume_process_int16), (volume_set_caps),
5478 (volume_transform_ip), (volume_update_mute),
5479 (volume_update_volume):
5480 * gst/volume/gstvolume.h:
5481 Add own debug category, move duplicate code to helper function, fix
5482 property texts, add more comments and prepare ffor liboil-goodness
5484 * tests/check/Makefile.am:
5485 * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
5486 add test for mute and passtrough case, be a bit more verbose to track
5489 * tests/check/generic/states.c: (GST_START_TEST):
5490 catch elements that fail to instantiate
5492 2006-05-28 Edward Hervey <edward@fluendo.com>
5494 * tests/check/pipelines/simple-launch-lines.c:
5495 * tests/check/pipelines/theoraenc.c:
5496 * tests/check/pipelines/vorbisenc.c:
5497 Comment out tests using parse_launch() if core was built without
5498 parsing capabilities.
5500 2006-05-27 Edward Hervey <edward@fluendo.com>
5502 * tests/check/Makefile.am:
5503 Extra bonus points for whoever explains to ensonic that you are meant
5504 to test unit tests thoroughly before commiting them, especially if
5505 you know it's going to break.
5506 De-activated element/adder tests.
5508 2006-05-27 Edward Hervey <edward@fluendo.com>
5510 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
5511 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
5512 Marking caps conversion issues as GST_WARNING is way too verbose,
5513 Moving them to GST_LOG.
5515 2006-05-27 Tim-Philipp Müller <tim at centricular dot net>
5518 Replace current README (containing the release notes from
5519 some 0.9.x version) with a proper README taken from the core.
5521 2006-05-26 Wim Taymans <wim@fluendo.com>
5523 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
5524 (vorbis_dec_src_event), (vorbis_dec_sink_event), (vorbis_do_clip),
5525 (vorbis_dec_push), (vorbis_handle_data_packet), (vorbis_dec_chain),
5526 (vorbis_dec_change_state):
5529 Clip output samples to segment boundaries.
5531 2006-05-26 Jan Schmidt <thaytan@mad.scientist.com>
5533 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
5534 (gst_ximagesink_xcontext_get), (gst_ximagesink_show_frame):
5535 Improve the errors produced on bad output, including some human
5536 readable description strings.
5537 Handle the (theoretical for ximagesink) case where the XServer
5538 has a different idea about the size required for a particular
5539 frame and gives us too small a memory allocation.
5541 2006-05-26 Jan Schmidt <thaytan@mad.scientist.com>
5543 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
5544 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
5545 (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
5546 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
5547 Improve the errors produced on bad output, including some human
5548 readable description strings.
5549 Handle RGB Xv formats properly by transforming them into our
5550 big-endian caps description.
5551 Use gst_caps_truncate to ensure that we never try and choose a
5552 non-fixed caps in buffer_alloc.
5553 Handle the case where the XServer has a different idea about the size
5554 required for a particular frame and gives us too small a memory
5556 Use -1 to indicate 'no image format', because 0 is a valid XServer
5557 image format number.
5558 Put RGB Xv formats at the end of the caps, so that we always prefer
5560 Iterate the available Xv Encodings to determine the maximum width and
5561 height, and then return that in our caps.
5562 (Closes #315312, #337544)
5564 2006-05-25 Jan Schmidt <thaytan@mad.scientist.com>
5566 * gst/playback/gstdecodebin.c: (remove_fakesink), (pad_probe):
5567 When there is only one unfinished pad and it receives an event that
5568 doesn't match our requirements, we need to set alldone=FALSE so that
5569 the fakesink is not removed yet.
5571 2006-05-25 Tim-Philipp Müller <tim at centricular dot net>
5573 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
5574 Use gst_type_find_helper_for_buffer() to find the type
5575 of stream from the first packet.
5578 Bump requirements to core CVS (needed for vorbis
5579 typefinding to work).
5581 2006-05-24 Edward Hervey <edward@fluendo.com>
5583 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
5584 Added the 'prfl' atom type which MQV (no, it's not a typo) files
5585 contain. Else they play perfectly fine with qtdemux.
5587 2006-05-23 Stefan Kost <ensonic@users.sf.net>
5589 * ext/theora/theoradec.c:
5590 * ext/theora/theoraenc.c:
5591 * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
5592 * gst/audiorate/gstaudiorate.c:
5593 make more debug catagories static
5595 * tests/check/Makefile.am:
5596 * tests/check/elements/adder.c: (message_received),
5597 (test_event_message_received), (GST_START_TEST),
5598 (test_play_twice_message_received), (adder_suite):
5599 added test case for using element twice, extra bonus points for anyone
5600 who can make these test run reliably
5602 2006-05-23 Tim-Philipp Müller <tim at centricular dot net>
5604 * ext/theora/theoradec.c: (theora_dec_chain):
5605 Make work with time-stamped input buffers that do not
5606 have a granulepos in BUFFER_OFFSET_END (like theora
5607 buffers coming from matroskademux). Fixes #342448.
5609 2006-05-22 Tim-Philipp Müller <tim at centricular dot net>
5611 Patch by: Peter Kjellerstedt <pkj at axis com>
5613 * gst/tcp/Makefile.am:
5614 fdstresstest doesn't need Gtk+, fix compilation if
5615 gtk is not available (#342566).
5617 2006-05-19 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
5619 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
5621 Removed redundant floor()
5623 2006-05-19 Tim-Philipp Müller <tim at centricular dot net>
5625 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5626 On second thought, just skip JUNK chunks automatically, so
5627 the caller doesn't have to handle this. Fixes #342345.
5628 Also, return GST_FLOW_UNEXPECTED if we get a short read,
5631 2006-05-19 Tim-Philipp Müller <tim at centricular dot net>
5633 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5634 Don't bail out on JUNK chunks with a size of 0 (would try to
5635 pull_range 0 bytes before, which sources don't like too much).
5638 2006-05-19 Jan Schmidt <thaytan@mad.scientist.com>
5640 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5641 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5642 Use the gstutil scaling function to preserve 64 bits while calculating
5643 output width and height from the display-aspect-ratio. (A continuation
5646 2006-05-19 Jan Schmidt <thaytan@mad.scientist.com>
5648 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
5649 (gst_xvimagesink_buffer_alloc):
5650 * sys/xvimage/xvimagesink.h:
5651 When performing buffer allocations, remember the caps and image format
5652 we return so that if the same caps are asked for next time we can
5653 return them immediately without doing any caps intersections.
5655 2006-05-18 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
5657 * gst-libs/gst/rtp/README:
5658 Some new documentation
5659 * gst-libs/gst/rtp/gstrtpbuffer.h:
5660 Added GST_RTP_PAYLOAD_DYNAMIC_STRING for use by children
5661 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
5662 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5663 New RTP audio base payloader class. Supports frame or sample based
5664 codecs. Not enabled in Makefile.am until approved.
5666 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5668 * tests/check/elements/alsa.c: (test_device_property_probe):
5669 Fix test case: don't try to free NULL GValueArray when there
5672 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5674 * tests/check/Makefile.am:
5675 * tests/check/elements/alsa.c: (test_device_property_probe),
5676 (alsa_suite), (main):
5677 Add simple test that runs a device property probe on alsasrc,
5678 alsasink and alsamixer. Disable valgrind check for now (too
5679 many leaks in libasound, and valgrind ignored my suppressions
5682 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5684 * ext/alsa/gstalsadeviceprobe.c: (gst_alsa_get_device_list),
5685 (gst_alsa_device_property_probe_probe_property),
5686 (gst_alsa_device_property_probe_needs_probe),
5687 (gst_alsa_device_property_probe_get_values),
5688 (gst_alsa_type_add_device_property_probe_interface):
5689 * ext/alsa/gstalsadeviceprobe.h:
5690 * ext/alsa/gstalsamixerelement.c:
5691 (gst_alsa_mixer_element_init_interfaces):
5692 * ext/alsa/gstalsamixerelement.h:
5693 Clean up and simplify alsa device probing. Make it actually work
5694 for multiple classes. Don't cache results any longer.
5696 * ext/alsa/gstalsasink.c: (gst_alsasink_init_interfaces),
5697 (gst_alsasink_init):
5698 * ext/alsa/gstalsasrc.c: (gst_alsasrc_dispose),
5699 (gst_alsasrc_interface_supported), (gst_implements_interface_init),
5700 (gst_alsasrc_init_interfaces), (gst_alsasrc_set_property):
5701 Make alsasink and alsasrc implement the GstPropertyProbe interface
5702 for device probing (#342181).
5703 Patch by: Martin Szulecki <gnomebugzilla at sukimashita com>
5705 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5707 * gst/subparse/samiparse.c: (handle_start_font):
5708 Don't ignore return value of strtol (++compiler_happiness).
5710 2006-05-17 Tim-Philipp Müller <tim at centricular dot net>
5712 Patch by: Young-Ho Cha <ganadist chollian net>
5714 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5715 (gst_sub_parse_class_init), (gst_sub_parse_init),
5716 (gst_sub_parse_set_property), (gst_sub_parse_get_property),
5718 * gst/subparse/gstsubparse.h:
5719 Add 'encoding' property (#341681).
5721 * gst/subparse/samiparse.c: (characters_sami):
5722 Output is pango markup, so we need to escape text
5723 between tags (#342143).
5725 2006-05-16 Tim-Philipp Müller <tim at centricular dot net>
5727 * gst-libs/gst/audio/multichannel.c:
5728 (gst_audio_check_channel_positions):
5729 It's okay to have caps with channels=1 and a channel position
5730 different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
5731 (deinterleavers might want to keep the position in the caps,
5732 so that they can be re-interleaved again properly later).
5733 Leave check for unexpected 2-channel layouts intact for now.
5735 2006-05-16 Zaheer Abbas Merali <zaheerabbas at merali dot org>
5737 * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
5738 Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
5739 basesrc can do its job correctly.
5741 2006-05-16 Tim-Philipp Müller <tim at centricular dot net>
5743 * ext/alsa/Makefile.am:
5744 * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
5745 (gst_alsa_detect_formats), (get_channel_free_structure),
5746 (caps_add_channel_configuration), (gst_alsa_detect_channels),
5747 (gst_alsa_probe_supported_formats):
5748 * ext/alsa/gstalsa.h:
5749 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5750 Refactor and improve caps probing code: probe signedness
5751 when we probe the supported formats/widths; set endianness
5752 to the one we actually probed for (ie. cpu endianness).
5754 * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
5755 (gst_alsasrc_close):
5756 * ext/alsa/gstalsasrc.h:
5757 Implement caps probing for alsasrc.
5759 2006-05-15 Wim Taymans <wim@fluendo.com>
5761 * ext/theora/theoradec.c: (gst_theora_dec_reset),
5762 (theora_dec_src_query), (theora_dec_src_event),
5763 (theora_dec_sink_event), (theora_handle_comment_packet),
5764 (theora_handle_data_packet), (theora_dec_change_state):
5765 Cleanups, add some G_LIKELY.
5766 Use segment helpers instead of our own wrong code.
5767 Clear queued buffers on seek and READY.
5769 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
5770 (vorbis_dec_convert), (vorbis_dec_src_query),
5771 (vorbis_dec_src_event), (vorbis_dec_sink_event),
5772 (vorbis_handle_comment_packet), (vorbis_dec_push),
5773 (vorbis_handle_data_packet), (vorbis_dec_chain),
5774 (vorbis_dec_change_state):
5775 * ext/vorbis/vorbisdec.h:
5776 Remove old useless packetno variable.
5777 Do position query properly.
5779 Do cleanup of queued buffers in new helper function
5782 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5784 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5785 Query supported sample rates. Fixes #341732.
5787 2006-05-15 Julien MOUTTE <julien@moutte.net>
5789 * gst/playback/gstdecodebin.c: (cleanup_decodebin),
5790 (gst_decode_bin_change_state): Make decodebin reusable
5791 when going from PAUSE_TO_READY and then back to PAUSED.
5794 2006-05-15 Wim Taymans <wim@fluendo.com>
5796 * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
5797 (vorbis_dec_convert), (vorbis_dec_src_query),
5798 (vorbis_dec_sink_query), (vorbis_dec_src_event),
5799 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
5800 (vorbis_dec_clean_queued), (vorbis_dec_push),
5801 (vorbis_handle_data_packet), (vorbis_dec_change_state):
5802 Cleanups. Use refcounting and DEBUG_OBJECT.
5803 Reset segment on flush, use code methods instead of our
5805 Fix potential memleak.
5807 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5809 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
5810 (gst_alsasink_init):
5811 * ext/alsa/gstalsasink.h:
5812 Don't leak allocated snd_output_t structure if there's
5813 more than one alsasink instance at a time (#341873).
5814 Also fix GObject macros in header file.
5816 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5818 * gst/subparse/gstsubparse.c:
5819 (gst_sub_parse_data_format_autodetect):
5820 Don't use libxml functions in the typefinding code.
5822 2006-05-15 Wim Taymans <wim@fluendo.com>
5824 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
5825 Fix seeking performance in the case where a non-header
5826 packet has a 0 granulepos (busted theora case).
5828 (nvdr: thanks Wim for not mentioning who spotted and fixed it in
5829 the first place, you limelight stealer you)
5831 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5833 * gst/subparse/gstsubparse.c:
5834 (gst_sub_parse_data_format_autodetect):
5835 Improve SAMI typefinding: handle case where there are
5836 whitespaces or newlines in front of the first <SAMI>
5839 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5842 Build video4linux plugin even if there's no XVIDEO, just
5843 without implementing the GstXOverlay interface (#334002).
5845 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5848 * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
5850 Add tentative support for libvisual-0.4 (#336881).
5852 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5854 Patch by: Young-Ho Cha <ganadist at chollian net>
5856 * gst/subparse/samiparse.c: (handle_start_font):
5857 Need to map "silver" colour explicitly (#169936).
5859 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5861 Patch by: Young-Ho Cha <ganadist at chollian net>
5863 * gst/subparse/Makefile.am:
5864 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5865 (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
5866 (gst_sub_parse_format_autodetect), (feed_textbuf),
5867 (gst_subparse_type_find), (plugin_init):
5868 * gst/subparse/gstsubparse.h:
5869 * gst/subparse/samiparse.c:
5870 * gst/subparse/samiparse.h:
5871 Add support for SAMI subtitles (#169936).
5873 2006-05-14 Michael Smith <msmith@fluendo.com>
5875 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
5876 Fix #341696: crash when mixing L+R+C to mono or stereo.
5877 * tests/check/Makefile.am:
5878 * tests/check/elements/audioconvert.c: (set_channel_positions),
5879 (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
5880 (audioconvert_suite):
5881 Add test for the above, including some generic framework bits for
5882 testing multichannel things.
5884 === release 0.10.7 ===
5886 2006-05-14 Jan Schmidt <thaytan@mad.scientist.com>
5889 releasing 0.10.7, "Leave the gun"
5891 2006-05-13 Jan Schmidt <thaytan@mad.scientist.com>
5893 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5894 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5897 2006-05-12 Jan Schmidt <thaytan@mad.scientist.com>
5899 * docs/libs/gst-plugins-base-libs-docs.sgml:
5900 * docs/libs/gst-plugins-base-libs-sections.txt:
5901 * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
5902 * gst-libs/gst/video/video.h:
5903 * gst/videoscale/Makefile.am:
5904 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5905 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5906 * tests/check/Makefile.am:
5907 * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
5909 Fix integer overflow problem with pixel-aspect-ratio calculations
5910 in videoscale and xvimagesink (#341542)
5912 2006-05-12 Tim-Philipp Müller <tim at centricular dot net>
5914 * gst-libs/gst/tag/gstid3tag.c:
5915 Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
5917 2006-05-12 Sebastien Moutte <sebastien@moutte.net>
5920 update win32 files listing
5922 2006-05-11 Thomas Vander Stichele <thomas at apestaart dot org>
5924 patch by: Sjoerd Simons (sjoerd@luon.net)
5926 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
5927 (group_create), (group_destroy), (add_stream),
5928 (gst_play_base_bin_get_property),
5929 (gst_play_base_bin_get_streaminfo_value_array):
5930 * gst/playback/gstplaybasebin.h:
5931 API: GstPlayBaseBin::stream-info-value-array property
5932 use a more bindings-friendly way of exposing streaminfo
5933 using a GValueArray. Tested in ipython.
5936 2006-05-11 Wim Taymans <wim@fluendo.com>
5938 * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
5939 (queue_underrun_cb), (queue_filled_cb):
5940 Also catch queue underruns but don't do anything yet.
5941 Refactor and comment queue enlarging code a bit.
5943 * gst/playback/gstplaybasebin.c: (queue_overrun),
5944 (queue_threshold_reached), (queue_out_of_data),
5945 (gen_preroll_element):
5946 If a queue over/underruns check that we don't create nasty
5947 deadlocks when the min-threshold is not reached but the
5948 max-bytes is. In those cases disable max-bytes when we
5949 know that the queue is fed timed data.
5952 2006-05-11 Tim-Philipp Müller <tim at centricular dot net>
5954 * gst/playback/gstplaybin.c: (gen_audio_element):
5955 Make playbin automatically plug an 'audioresample'
5956 element before the audio sink as well. This solves
5957 problems with sinks that only accept a very specific
5958 sample rate, like esdsink (e.g. #340379).
5960 2006-05-11 Tim-Philipp Müller <tim at centricular dot net>
5962 * gst/playback/gstplaybasebin.c: (gen_source_element):
5963 Make http sources send special headers so that we receive
5964 icecast metadata if the http stream is an icecast stream
5965 (otherwise the server will just ignore them). This also
5966 means that from now on users will need the 'icydemux'
5967 element from gst-plugins-good installed if they want to
5968 listen to icecast radio streams. (#341432, #333657).
5970 2006-05-11 Thomas Vander Stichele <thomas at apestaart dot org>
5972 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
5973 (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
5974 remove stupid example from docs - it should come with a simple
5977 * tests/check/elements/multifdsink.c: (wait_bytes_served),
5978 (fail_if_can_read), (GST_START_TEST),
5979 (gst_multifdsink_create_streamheader), (multifdsink_suite):
5980 add a test for changing streamheader which exposes a bug in
5983 2006-05-11 Michael Smith <msmith@fluendo.com>
5985 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
5986 (gst_gnome_vfs_src_received_headers_callback):
5987 * ext/gnomevfs/gstgnomevfssrc.h:
5988 Don't set icy-caps unless we have a sane interval value. Move
5989 interval to a local variable; we never use it outside this function.
5991 2006-05-11 Wim Taymans <wim@fluendo.com>
5993 * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
5994 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
5995 Register special buffer types along with the objects so
5996 that they are not registered at runtime from N different
5997 streaming threads since they are not threadsafe.
5999 2006-05-10 Thomas Vander Stichele <thomas at apestaart dot org>
6001 * tests/check/elements/multifdsink.c: (wait_bytes_served),
6002 (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
6003 add two more tests, one doing streamheader
6005 2006-05-10 Thomas Vander Stichele <thomas at apestaart dot org>
6007 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
6008 clean up the bufqueue when shutting down
6009 * tests/check/Makefile.am:
6010 * tests/check/elements/multifdsink.c: (setup_multifdsink),
6011 (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
6013 add a test for the leak that was just fixed
6015 2006-05-10 Wim Taymans <wim@fluendo.com>
6017 * gst/adder/gstadder.c: (gst_adder_setcaps),
6018 (gst_adder_query_duration), (gst_adder_query), (forward_event),
6019 (gst_adder_src_event), (gst_adder_sink_event),
6020 (gst_adder_class_init), (gst_adder_finalize),
6021 (gst_adder_request_new_pad), (gst_adder_collected):
6022 * gst/adder/gstadder.h:
6023 Updated some docs. Added comments and FIXMEs all over the place.
6024 Improve debugging info.
6025 Fix leak on finalize by not calling the parent.
6026 Implement duration query.
6027 Make event forwarding threadsafe.
6028 Correctly send NEWSEGMENT at start and after flush.
6029 Handle EOS correctly.
6030 Post error when not negotiated.
6032 * tests/check/elements/adder.c: (GST_START_TEST):
6033 Added FIXME in the test.
6035 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
6037 * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
6038 (gst_text_overlay_halign_get_type),
6039 (gst_text_overlay_wrap_mode_get_type):
6040 * ext/theora/theoradec.c: (theora_handle_type_packet),
6041 (theora_handle_data_packet):
6042 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
6043 (theora_enc_sink_setcaps), (theora_enc_chain):
6044 * gst-libs/gst/cdda/gstcddabasesrc.c:
6045 (gst_cdda_base_src_mode_get_type):
6046 * gst/audiotestsrc/gstaudiotestsrc.c:
6047 (gst_audiostestsrc_wave_get_type):
6048 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
6049 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
6050 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
6051 (gst_sync_method_get_type), (gst_unit_type_get_type),
6052 (gst_client_status_get_type):
6053 * gst/videoscale/gstvideoscale.c:
6054 (gst_video_scale_method_get_type):
6055 * gst/videotestsrc/gstvideotestsrc.c:
6056 (gst_video_test_src_pattern_get_type):
6057 * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
6058 (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
6059 (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
6060 (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
6061 (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
6062 (paint_setup_RGB565), (paint_setup_xRGB1555):
6063 Const-ify GEnumValue and GFlagsValue arrays. Use
6064 GST_ROUND_UP_* macros instead of home-made ones.
6066 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
6069 Require core CVS for the new newsegment stuff.
6071 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
6073 Patch by: Sjoerd Simons <sjoerd at luon net>
6075 * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
6076 Register nick for enum value (#341160).
6078 2006-05-09 Stefan Kost <ensonic@users.sf.net>
6080 * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
6082 backout typefind patch #340375
6084 * tests/check/elements/adder.c: (message_received),
6085 (GST_START_TEST), (adder_suite):
6086 redo, signal-handling of test
6088 2006-05-09 Wim Taymans <wim@fluendo.com>
6090 * gst/adder/gstadder.c: (gst_adder_request_new_pad),
6091 (gst_adder_collected):
6092 * gst/adder/gstadder.h:
6093 Remove bogus segment merging and forwarding, we don't
6094 care about timestamps anyway and we just produce a
6096 Also create a nice NEWSEGMENT event when we start.
6097 Use _scale_int some more.
6099 2006-05-09 Edward Hervey <edward@fluendo.com>
6101 * tests/icles/stress-xoverlay.c:
6102 Fix if core was built without parsing support.
6104 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
6106 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6107 Add SEDG (Samsung MPEG-4) fourcc.
6109 2006-05-09 Edward Hervey <edward@fluendo.com>
6111 * tests/icles/stress-xoverlay.c:
6112 * tests/examples/volume/volume.c:
6113 Fix if core was built without parsing support.
6115 * tests/examples/seek/seek.c:
6116 Disable the parse_launch example if core was built without parsing
6119 2006-05-08 Edward Hervey <edward@fluendo.com>
6121 * autogen.sh: (CONFIGURE_DEF_OPT):
6122 libtoolize on Darwin/MacOSX is called glibtoolize
6124 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6126 * tests/check/Makefile.am:
6127 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
6128 Disable the adder test, until the build-slaves posses the kindness to
6129 either like it or to give valid reason for not doing so
6131 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6133 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
6135 Shuffle NULL state change around and raise timeout more
6137 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6139 * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
6140 (mp4_type_find), (plugin_init):
6141 Add typefind to distinguish between "audio/x-m4a" and new type
6142 "video/mp4". Fixes #340375
6144 * tests/check/elements/adder.c: (adder_suite):
6145 Raise timeout to make buildbot happy
6147 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6149 * gst/adder/gstadder.c: (gst_adder_sink_event),
6150 (gst_adder_request_new_pad), (gst_adder_change_state):
6151 * gst/adder/gstadder.h:
6152 * tests/check/Makefile.am:
6153 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
6154 (adder_suite), (main):
6155 Add sink-event handling to adder. It tries to merge incomming
6156 newsegment-events. Added test to check if segment_done is comming
6157 through. Fixes #340060
6159 2006-05-05 Andy Wingo <wingo@pobox.com>
6161 * ext/theora/theoraparse.c (gst_theora_parse_init)
6162 (theora_parse_src_convert, theora_parse_src_query):
6163 * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
6164 (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
6165 query functions on the source pads of the theora and vorbis parse
6166 elements. Fixes position querying when doing a remux.
6168 2006-05-05 Michael Smith <msmith@fluendo.com>
6170 * ext/theora/theoraparse.c: (parse_granulepos),
6171 (theora_parse_drain_queue_prematurely),
6172 (theora_parse_queue_buffer), (theora_parse_sink_event):
6174 Fix invalid granulepos outputs when starting with a non-keyframe.
6176 2006-05-05 Jan Schmidt <thaytan@mad.scientist.com>
6178 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
6179 (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
6180 Rearrange MPEG system stream detection, fixing some memleaks in the
6182 Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
6183 they clean up their data correctly.
6184 Remove unused ogganx caps and move the 'is_annodex' check to inside
6185 the 'is_ogg' if statement.
6187 2006-05-05 Wim Taymans <wim@fluendo.com>
6189 * gst/playback/gstdecodebin.c: (cleanup_decodebin):
6190 Properly remove ghostpads. Fixes #340392
6192 2006-05-04 David Schleef <ds@schleef.org>
6194 * gst/typefind/gsttypefindfunctions.c:
6196 2006-05-03 Jan Schmidt <thaytan@mad.scientist.com>
6198 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
6199 (mpeg_ts_probe_headers), (mpeg_ts_type_find):
6201 When typefinding an MP3 in push-based mode, don't penalise the
6202 probability down to 74% when we found 5 valid frames just because we
6203 can't peek the end of the file.
6205 Make the probability for detecting MPEG Transport Streams based on the
6206 number of sequential headers we successfully detected.
6208 2006-05-03 Wim Taymans <wim@fluendo.com>
6210 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
6211 (vorbis_dec_push), (vorbis_dec_chain):
6212 Still produce an error when we receive an empty packet.
6214 2006-05-03 Wim Taymans <wim@fluendo.com>
6216 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
6217 (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
6218 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
6219 Mark buffers with DISCONT after seek and after activating new
6222 * ext/theora/gsttheoradec.h:
6223 * ext/theora/theoradec.c: (gst_theora_dec_reset),
6224 (theora_get_query_types), (theora_dec_sink_event),
6225 (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
6226 (theora_dec_change_state):
6228 Detect and mark DISCONT buffers.
6230 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
6231 (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
6232 (vorbis_dec_change_state):
6233 * ext/vorbis/vorbisdec.h:
6235 Detect and mark DISCONT buffers.
6236 Don't crash on 0 sized buffers.
6238 2006-05-03 Wim Taymans <wim@fluendo.com>
6240 * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
6241 (volume_transform_ip):
6242 Increase "volume" property to 10.0. Fixes #340369.
6243 Set the process function to NULL when capsnego fails so that
6244 we properly error out.
6246 2006-05-02 Stefan Kost <ensonic@users.sf.net>
6248 * gst/playback/gstplaybin.c: (add_sink):
6249 * gst/playback/test.c: (main):
6250 * gst/playback/test5.c: (dump_element_stats):
6251 * gst/playback/test6.c: (main):
6252 free caps using gst_caps_unref, don't leak caps-strings
6254 2006-05-01 Tim-Philipp Müller <tim at centricular dot net>
6256 * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
6258 Refine musepack typefinding a bit. Return MAXIMUM
6259 probability when we detect stream version 7 to make
6260 sure the mpeg audio typefinder doesn't trump us.
6262 2006-04-29 Tim-Philipp Müller <tim at centricular dot net>
6264 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
6265 Protect against unexpected NULL strf_data buffer.
6267 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
6269 * tests/check/elements/audioconvert.c: (verify_convert),
6271 interpret the out[] buffer in the order the bytes are actually
6272 put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
6273 Other tests should use BYTE_ORDER since the array is filled in
6276 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
6278 * tests/check/elements/audioconvert.c: (verify_convert),
6280 when a test fails, give an indication of which it is
6282 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
6284 * gst-libs/gst/cdda/gstcddabasesrc.c:
6285 compile fix; strtol() needs <stdlib.h>
6287 2006-04-28 Stefan Kost <ensonic@users.sf.net>
6289 * ext/alsa/gstalsamixerelement.c:
6290 * ext/alsa/gstalsasrc.c:
6291 * ext/cdparanoia/gstcdparanoiasrc.c:
6292 * ext/gnomevfs/gstgnomevfssink.c:
6293 * ext/gnomevfs/gstgnomevfssrc.c:
6294 * ext/ogg/gstoggdemux.c:
6295 * ext/ogg/gstoggmux.c:
6296 * ext/ogg/gstoggparse.c:
6297 * ext/ogg/gstogmparse.c:
6298 * ext/pango/gstclockoverlay.c:
6299 * ext/pango/gsttextoverlay.c:
6300 * ext/pango/gsttextrender.c:
6301 * ext/pango/gsttimeoverlay.c:
6302 * ext/theora/theoradec.c:
6303 * ext/theora/theoraenc.c:
6304 * ext/vorbis/vorbisdec.c:
6305 * ext/vorbis/vorbisenc.c:
6306 * gst-libs/gst/audio/gstaudiofilter.c:
6307 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
6308 * gst/audioconvert/gstaudioconvert.c:
6309 * gst/audiorate/gstaudiorate.c:
6310 * gst/audioresample/gstaudioresample.c:
6311 * gst/audiotestsrc/gstaudiotestsrc.c:
6312 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6313 * gst/playback/gstdecodebin.c:
6314 * gst/playback/gstplaybin.c:
6315 * gst/playback/gststreamselector.c:
6316 * gst/subparse/gstsubparse.c:
6317 * gst/tcp/gstmultifdsink.c:
6318 * gst/tcp/gsttcpclientsink.c:
6319 * gst/tcp/gsttcpclientsrc.c:
6320 * gst/tcp/gsttcpserversink.c:
6321 * gst/tcp/gsttcpserversrc.c:
6322 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
6323 * gst/videorate/gstvideorate.c:
6324 * gst/videoscale/gstvideoscale.c:
6325 * gst/videotestsrc/gstvideotestsrc.c:
6326 * gst/volume/gstvolume.c:
6327 * sys/v4l/gstv4ljpegsrc.c:
6328 * sys/v4l/gstv4lmjpegsink.c:
6329 * sys/v4l/gstv4lmjpegsrc.c:
6330 * sys/v4l/gstv4lsrc.c:
6331 * sys/ximage/ximagesink.c:
6332 * sys/xvimage/xvimagesink.c:
6333 * tests/check/libs/cddabasesrc.c:
6334 make GstElementDetails const
6336 2006-04-28 Stefan Kost <ensonic@users.sf.net>
6338 * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
6340 send events from src-pad to all sink-pads fixes #338657
6342 2006-04-28 Stefan Kost <ensonic@users.sf.net>
6344 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
6345 (alsasink_parse_spec):
6346 query width capabilities from alsa, fixes #338919
6348 2006-04-28 Wim Taymans <wim@fluendo.com>
6350 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
6351 (gst_multi_fd_sink_remove_client_link):
6352 * gst/tcp/gstmultifdsink.h:
6353 Fix race condition in multifdsink that can lead to spurious
6354 duplicate clients. this patch adds a new signal that is fired when
6355 multifdsink has removed all references to the fd.
6357 Updated documentation.
6358 API: client-fd-removed signal added
6360 2006-04-28 Michael Smith <msmith@fluendo.com>
6362 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
6363 When asking g_value_array_new to prealloc elements, we may as well
6364 ask for the right number of elements.
6366 2006-04-28 Wim Taymans <wim@fluendo.com>
6368 * gst-libs/gst/audio/gstbaseaudiosink.c:
6369 (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
6370 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
6371 patch to make timestamp checking more tollerant to rounding
6372 errors given that real discontinuities are to be marked on
6373 buffers. Fixes some asf files and #338778.
6374 Also avoid some crashers when we receive an event in the
6377 2006-04-28 Michael Smith <msmith@fluendo.com>
6379 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
6380 (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
6381 (gst_gnome_vfs_src_get_property),
6382 (gst_gnome_vfs_src_send_additional_headers_callback),
6383 (gst_gnome_vfs_src_received_headers_callback),
6384 (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
6385 (gst_gnome_vfs_src_stop):
6386 * ext/gnomevfs/gstgnomevfssrc.h:
6387 Remove ICY handling (mostly) from gnomevfssrc, in favour of
6388 proper shared support within icydemux.
6390 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
6392 * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
6393 (gst_video_rate_swap_prev), (gst_video_rate_chain):
6395 fix a leak when no caps negotiated
6396 fix counting of input frames
6397 * tests/check/elements/.cvsignore:
6398 * tests/check/elements/videorate.c: (assert_videorate_stats),
6399 (GST_START_TEST), (videorate_suite):
6402 2006-04-28 Wim Taymans <wim@fluendo.com>
6404 * gst-libs/gst/audio/gstringbuffer.c:
6405 (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
6406 (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
6407 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
6408 (gst_ring_buffer_pause), (gst_ring_buffer_stop),
6409 (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
6410 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
6411 (gst_ring_buffer_commit), (gst_ring_buffer_read),
6412 (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
6413 (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
6414 Check arguments passed to public functions instead of
6417 2006-04-28 Wim Taymans <wim@fluendo.com>
6419 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
6420 (gst_base_audio_src_get_time), (gst_base_audio_src_create):
6421 GstBaseAudioSrc must be live or it does not work.
6423 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
6424 Don't set live to TRUE as this is the default in the parentclass.
6426 2006-04-28 Wim Taymans <wim@fluendo.com>
6428 * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
6429 (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
6430 Videoscale doesn't pass on pixel-aspect ratio. Handle all
6431 fixation cases better. Fixes #338991
6433 2006-04-28 Wim Taymans <wim@fluendo.com>
6435 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
6436 Handle 0/1 framerate correctly Fixes #331901.
6438 2006-04-28 Wim Taymans <wim@fluendo.com>
6440 * tests/check/elements/audioconvert.c: (get_float_caps),
6441 (GST_START_TEST), (audioconvert_suite):
6442 Added check for correct clipping when doing float samples
6445 2006-04-28 Wim Taymans <wim@fluendo.com>
6447 * gst/videorate/gstvideorate.c: (gst_video_rate_event),
6448 (gst_video_rate_chain):
6449 Print more debugging info.
6451 2006-04-28 Wim Taymans <wim@fluendo.com>
6453 * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
6454 (resample_set_state_from_caps):
6455 Add support for other formats audioresample can handle such as
6456 32 bits in and float and 64 bits float. Fixes #301759
6458 2006-04-28 Wim Taymans <wim@fluendo.com>
6460 * gst/audioconvert/audioconvert.c: (float):
6461 correctly clip float samples > 1.0. Fixes #338718
6463 2006-04-28 Tim-Philipp Müller <tim at centricular dot net>
6465 Patch by: Young-Ho Cha <ganadist at chollian net>
6467 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
6468 (gst_text_overlay_render_text):
6469 Don't strip newlines from the text. Also, center lines
6470 within multi-line paragraphs (#339405).
6472 2006-04-28 Tim-Philipp Müller <tim at centricular dot net>
6474 * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
6475 Fix wavpack typefinding to work in more cases (don't peek
6476 for chunks of multiple hundred kBs at once, but process
6477 things step-by-step in smaller units). Fixes #339786.
6479 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
6484 === release 0.10.6 ===
6486 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
6489 releasing 0.10.6, "Chao"
6491 2006-04-26 David Schleef <ds@schleef.org>
6493 * gst/videoscale/gstvideoscale.c: Add call to oil_init().
6496 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
6499 * win32/common/config.h:
6502 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
6504 patch by: Wim Taymans
6506 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
6507 (gst_ogg_demux_perform_seek):
6508 make sure correct newsegments are sent, so that the decoder
6509 and the demuxer agree on timestamps. Fixes playback of a lot
6510 of Ogg files that do not start from 0. Fixes #339833.
6512 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
6514 Patch by: Edward Hervey <edward@fluendo.com>
6516 * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
6517 * tests/check/Makefile.am:
6518 * tests/check/elements/videorate.c: (assert_videorate_stats),
6519 (setup_videorate), (cleanup_videorate), (GST_START_TEST),
6520 (videorate_suite), (main):
6521 Fix an infinite loop if frames are passed in with wrongly ordered
6522 timestamps. Fixes #339013.
6524 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
6526 Patch by: Tim-Philipp Müller <tim at centricular dot net>
6528 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
6529 fix typefinding on some ISO files. Fixes #339212.
6531 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
6533 Patch by: Tim-Philipp Müller <tim at centricular dot net>
6535 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6536 add another H264 fourcc. Fixes #339047.
6538 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
6540 Patch by: Jan Schmidt
6542 * gst/playback/gststreamselector.c:
6543 (gst_stream_selector_bufferalloc):
6544 Restore old StreamSelector behaviour.
6547 2006-04-12 Thomas Vander Stichele <thomas at apestaart dot org>
6550 * win32/common/config.h:
6553 2006-04-11 Tim-Philipp Müller <tim at centricular dot net>
6555 Patch by: Antoine Tremblay <hexa00 at gmail dot com>
6557 * gst-libs/gst/rtp/gstbasertpdepayload.c:
6558 (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
6559 Fix some memory leaks: on finalize, free buffers left in the queue
6560 before destroying the queue; in _push(), unref rtp_buf even if
6561 the process vfunc returned a NULL buffer as output buffer (#337548);
6562 demote some recuring debug messages to LOG level.
6564 2006-04-11 Wim Taymans <wim@fluendo.com>
6566 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6567 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6568 (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
6569 (gst_ogg_demux_loop):
6571 Respect segment stop when emiting EOS or SEGMENT_DONE.
6574 2006-04-11 Tim-Philipp Müller <tim at centricular dot net>
6576 * gst/playback/gststreamselector.c:
6577 (gst_stream_selector_get_property):
6578 Don't leak pad name.
6580 2006-04-10 Michael Smith <msmith@fluendo.com>
6582 * tests/check/Makefile.am:
6583 * tests/check/gst-plugins-base.supp:
6584 Suppress an old libtheora bug (fixed in more recent versions), so
6585 that FC4 buildslaves can pass.
6587 2006-04-10 Wim Taymans <wim@fluendo.com>
6589 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6590 (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
6591 (gst_ogg_demux_init), (gst_ogg_demux_finalize),
6592 (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
6593 (gst_ogg_demux_loop):
6595 Remember what error we got when finding chains, if we
6596 were shutdown, that would not be an error.
6598 2006-04-10 Wim Taymans <wim@fluendo.com>
6600 * gst-libs/gst/audio/gstbaseaudiosink.c:
6601 (gst_base_audio_sink_event):
6602 Starting the ringbuffer when we did not acquire it can cause
6603 a deadlock, is pointless and causes nasty things for
6605 Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
6607 2006-04-10 Wim Taymans <wim@fluendo.com>
6609 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6610 (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
6611 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6612 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
6613 (gst_ogg_demux_deactivate_current_chain),
6614 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
6615 (gst_ogg_demux_bisect_forward_serialno),
6616 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
6617 Add some more debugging.
6619 2006-04-10 Wim Taymans <wim@fluendo.com>
6621 * ext/theora/theoradec.c: (theora_dec_src_event),
6622 (theora_handle_data_packet):
6623 Some more debug info.
6625 * tests/examples/seek/seek.c: (start_seek), (main):
6626 Print element messages too.
6628 2006-04-09 Sebastien Moutte <sebastien@moutte.net>
6630 * gst/audioresample/debug.h:
6631 replace debug macros with variable number of parameters
6632 by a simple alias to gstreamer standard debug macros
6633 (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
6634 supported by MSVC 6.0 and 7.1)
6635 * gst/audioresample/resample.h:
6636 define M_PI and rint for WIN32
6637 * win32/common/libgstaudio.def:
6638 * win32/common/libgstriff.def:
6639 * win32/common/libgsttag.def:
6640 * win32/common/libgstvideo.def:
6641 add new exported functions
6643 update project files
6645 2006-04-08 Stefan Kost <ensonic@users.sf.net>
6647 * ext/alsa/gstalsamixeroptions.c:
6648 (gst_alsa_mixer_options_class_init):
6649 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
6650 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
6651 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
6652 * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
6653 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
6654 * gst-libs/gst/audio/gstaudiofilter.c:
6655 (gst_audio_filter_class_init):
6656 * gst-libs/gst/audio/gstaudiosink.c:
6657 (gst_audioringbuffer_class_init):
6658 * gst-libs/gst/audio/gstaudiosrc.c:
6659 (gst_audioringbuffer_class_init):
6660 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
6661 * gst-libs/gst/interfaces/colorbalancechannel.c:
6662 (gst_color_balance_channel_class_init):
6663 * gst-libs/gst/interfaces/mixeroptions.c:
6664 (gst_mixer_options_class_init):
6665 * gst-libs/gst/interfaces/mixertrack.c:
6666 (gst_mixer_track_class_init):
6667 * gst-libs/gst/interfaces/tunerchannel.c:
6668 (gst_tuner_channel_class_init):
6669 * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
6670 * gst-libs/gst/netbuffer/gstnetbuffer.c:
6671 (gst_netbuffer_class_init):
6672 * gst-libs/gst/rtp/gstbasertppayload.c:
6673 (gst_basertppayload_class_init):
6674 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
6675 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
6676 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
6677 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
6678 * gst/playback/gststreamselector.c:
6679 (gst_stream_selector_class_init):
6680 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
6681 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
6682 * sys/v4l/gstv4lcolorbalance.c:
6683 (gst_v4l_color_balance_channel_class_init):
6684 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
6685 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
6686 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
6687 * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
6688 (gst_v4l_tuner_norm_class_init):
6689 * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
6690 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
6691 * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
6692 Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
6694 2006-04-08 Stefan Kost <ensonic@users.sf.net>
6696 * ext/pango/gsttextrender.h:
6697 * gst-libs/gst/audio/gstaudiosink.h:
6698 * gst-libs/gst/audio/gstaudiosrc.h:
6699 * gst-libs/gst/audio/gstbaseaudiosink.h:
6700 * gst-libs/gst/audio/gstbaseaudiosrc.h:
6701 * gst-libs/gst/audio/gstringbuffer.h:
6702 * gst-libs/gst/rtp/gstbasertpdepayload.h:
6703 * gst-libs/gst/rtp/gstbasertppayload.h:
6704 * gst-libs/gst/video/gstvideofilter.h:
6705 * gst-libs/gst/video/gstvideosink.h:
6706 * gst/playback/gstplaybasebin.h:
6707 * gst/tcp/gstmultifdsink.h:
6708 * sys/v4l/gstv4lelement.h:
6709 Fix broken GObject macros
6711 2006-04-08 Stefan Kost <ensonic@users.sf.net>
6713 * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
6714 More debug to trace why my USB headset is not working with gst
6716 2006-04-07 Jan Schmidt <thaytan@mad.scientist.com>
6718 * gst/playback/gstplaybasebin.c: (group_destroy):
6719 Clean up our group elements properly in the case where it never
6720 got committed - it still got added unconditionally to the bin.
6722 2006-04-07 Wim Taymans <wim@fluendo.com>
6724 * ext/theora/theoradec.c: (theora_dec_sink_event),
6725 (theora_handle_data_packet), (theora_dec_chain):
6726 Unref unhandled events.
6727 Protect against empty buffers.
6728 Perform QoS on running time.
6730 2006-04-07 Michael Smith <msmith@fluendo.com>
6732 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
6733 (gst_vorbis_enc_chain):
6734 Remove leaks from vorbisenc.
6735 Mostly minor changes, the only significant one is that now the
6736 buffers we set as 'streamheader' on the caps are copies of the
6737 original buffers, to avoid circular refcounting problems.
6739 2006-04-07 Jan Schmidt <thaytan@mad.scientist.com>
6741 * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
6742 Don't remove our mute-probe if someone else already did so.
6743 Don't set a 2nd one if there is already one pending on the pad.
6745 * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
6747 When a seek fails, ensure that playbin is still set back to playing.
6749 * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
6750 (mpeg_ts_type_find), (plugin_init):
6751 Add a typefind function for mpeg-ts streams. (Closes: #336617)
6753 2006-04-06 Andy Wingo <wingo@pobox.com>
6755 * gst/videorate/gstvideorate.c (gst_video_rate_reset)
6756 (gst_video_rate_init): Caps-related parameters should not be reset
6757 by a flush -- move their inits to the instance init function.
6758 (gst_video_rate_flush_prev): Don't complain if gst_pad_push
6759 is not OK, just return the result.
6761 * gst/audiotestsrc/gstaudiotestsrc.c
6762 (gst_audio_test_src_class_init)
6763 (gst_audio_test_src_get_times): Re-enable is-live=true, as was
6764 broken by Stefan's commit on 24 March.
6766 * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
6767 buffers being pushed out. Fixes oggmux ! multifdsink.
6769 2006-04-05 Tim-Philipp Müller <tim at centricular dot net>
6771 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
6772 (gst_vorbis_dec_init), (vorbis_dec_finalize):
6773 * ext/vorbis/vorbisdec.h:
6774 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
6775 (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
6776 (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
6777 (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
6778 (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
6779 (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
6780 (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
6781 (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
6782 (gst_vorbis_enc_buffer_from_packet),
6783 (gst_vorbis_enc_buffer_from_header_packet),
6784 (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
6785 (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
6786 (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
6787 (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
6788 (gst_vorbis_enc_change_state):
6789 * ext/vorbis/vorbisenc.h:
6790 Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
6791 vorbisenc adhere to the official nomenclature; use boilerplate
6794 2006-04-04 Andy Wingo <wingo@pobox.com>
6796 * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6797 Whoops, fix bug introduced. Bad hacker!
6799 * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6800 Properly handle the case where you get EOS before any buffers are
6801 received. Use gst_buffer_make_metadata_writable where appropriate.
6803 * ext/theora/theoradec.c (theora_handle_data_packet): This value
6804 is often negative -- make it signed so as not to wrap around.
6805 Fixes segfaults introduced on 9 March.
6807 2006-04-03 Wim Taymans <wim@fluendo.com>
6809 * ext/theora/gsttheoradec.h:
6810 * ext/theora/theoradec.c: (theora_dec_src_event):
6811 Don't try to store a gdouble in a gboolean.
6814 2006-04-03 Michael Smith <msmith@fluendo.com>
6816 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
6818 Make it suck slightly less by writing out the final page.
6819 Still can't encode a vorbis-in-ogg file correctly, though.
6821 2006-04-03 Andy Wingo <wingo@pobox.com>
6823 * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
6826 * ext/theora/theora.c (plugin_init): Register theoraparse.
6828 * ext/theora/gsttheoraparse.h:
6829 * ext/theora/theoraparse.c: New files implementing a theora
6830 parser. Now we can properly remux ogg/theora+vorbis, yay.
6832 * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
6834 2006-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
6836 * gst/audiotestsrc/gstaudiotestsrc.c:
6837 Fixed the sample pipeline (see #323798)
6839 2006-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
6842 * win32/common/config.h:
6843 * win32/common/config.h.in:
6844 use AS_VERSION and AS_NANO
6847 2006-03-31 Andy Wingo <wingo@pobox.com>
6849 * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
6850 uninitialized variable return that would happen.
6852 * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
6853 uninitialized variable return that would never happen.
6855 * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
6856 (vorbis_parse_sink_event): Add an event function to flush our
6857 state on a seek, and to drain buffers on a premature EOS.
6858 (vorbis_parse_push_headers, vorbis_parse_clear_queue)
6859 (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely)
6860 (vorbis_parse_chain, vorbis_parse_queue_buffer)
6861 (vorbis_parse_drain_queue): Queue up buffers until we can set
6862 their timestamps and granulepos values.
6864 * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
6865 and keep track of data needed for deriving granulepos and
6866 timestamps for buffers.
6868 2006-03-29 Wim Taymans <wim@fluendo.com>
6870 Patch by: j^ <j at bootlab dot org>
6872 * ext/alsa/gstalsamixerelement.c:
6873 (gst_alsa_mixer_element_class_init):
6874 * ext/alsa/gstalsasink.c:
6875 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
6876 * ext/ogg/gstoggdemux.c:
6877 * ext/ogg/gstoggmux.c:
6878 * ext/ogg/gstoggparse.c:
6879 * ext/pango/gstclockoverlay.c:
6880 * ext/pango/gsttextoverlay.c:
6881 * ext/pango/gsttextrender.c:
6882 * ext/pango/gsttimeoverlay.c:
6883 * ext/theora/theoradec.c:
6884 * ext/theora/theoraenc.c:
6885 * ext/vorbis/vorbisdec.c:
6886 * ext/vorbis/vorbisenc.c:
6887 * gst/audioconvert/gstaudioconvert.c:
6888 * gst/subparse/gstsubparse.c:
6889 * gst/tcp/gstmultifdsink.c:
6890 * gst/tcp/gsttcpclientsink.c:
6891 * gst/tcp/gsttcpclientsrc.c:
6892 * gst/tcp/gsttcpserversink.c:
6893 * gst/tcp/gsttcpserversrc.c:
6894 better/unified long descriptions
6897 2006-03-29 Wim Taymans <wim@fluendo.com>
6899 * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
6901 Don't let double and triple clicks mess up our state.
6903 2006-03-28 Tim-Philipp Müller <tim at centricular dot net>
6905 * gst/playback/gstplaybin.c: (gen_video_element),
6906 (gen_text_element), (gen_audio_element), (gen_vis_element):
6907 Error out gracefully when we can't create any of the usual
6908 conversion elements for some reason. Also, don't try to
6909 create an audioscale (sic) element that's not used anyway.
6911 2006-03-28 Tim-Philipp Müller <tim at centricular dot net>
6913 * gst/playback/gstplaybasebin.c: (setup_source):
6914 Don't post RESOURCE_NOT_FOUND error when we can't find a source
6915 element for a particular protocol, that's confusing for users.
6916 Instead, post a RESOURCE_FAILED error, so that our own error
6917 message is actually shown in totem etc. (#336303).
6919 2006-03-27 Tim-Philipp Müller <tim at centricular dot net>
6921 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
6923 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
6924 (gst_gnome_vfs_src_get_icy_metadata):
6925 Fix some minor memory leaks (#336194).
6927 2006-03-27 Tim-Philipp Müller <tim at centricular dot net>
6929 * ext/gnomevfs/gstgnomevfs.c:
6930 (gst_gnome_vfs_location_to_uri_string):
6931 * ext/gnomevfs/gstgnomevfs.h:
6932 * ext/gnomevfs/gstgnomevfssink.c:
6933 (gst_gnome_vfs_sink_set_property):
6934 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
6935 Make gnomevfssink accept filenames as well as URIs for the
6936 "location" property, just like gnomevfssrc does (and
6937 filesrc/filesink do) (#336190).
6939 2006-03-24 Thomas Vander Stichele <thomas at apestaart dot org>
6941 * tests/check/generic/clock-selection.c: (GST_START_TEST):
6942 set to NULL before unreffing, fixes a valgrind leak.
6943 Why was this not triggering the error that an object needs to
6944 be NULL before unreffing ?
6945 * win32/common/config.h:
6948 2006-03-24 Tim-Philipp Müller <tim at centricular dot net>
6950 * gst/subparse/gstsubparse.c: (convert_encoding),
6951 (gst_sub_parse_change_state):
6952 * gst/subparse/gstsubparse.h:
6953 Text subtitle files may or may not be UTF-8. If it's not, we
6954 don't really want to see '?' characters in place of non-ASCII
6955 characters like accented characters. So let's assume the input
6956 is UTF-8 until we come across text that is clearly not. If it's
6957 not UTF-8, we don't really know what it is, so try the following:
6958 (a) see whether the GST_SUBTITLE_ENCODING environment variable
6959 is set; if not, check (b) if the current locale encoding is
6960 non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
6961 the current locale encoding is UTF-8 and the environment variable
6962 was not set to any particular encoding. Not perfect, but better
6963 than nothing (and better than before, I think) (fixes #172848).
6965 2006-03-24 Thomas Vander Stichele <thomas at apestaart dot org>
6968 update core requirement to 0.10.4.1 because of async_playback
6969 vmethod on GstBaseSink
6971 2006-03-24 Stefan Kost <ensonic@users.sf.net>
6973 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
6974 * gst/adder/gstadder.c: (gst_adder_init):
6975 use DEBUG_FUNCPTR for collectpads
6977 2006-03-24 Stefan Kost <ensonic@users.sf.net>
6979 * docs/plugins/Makefile.am:
6980 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6981 * docs/plugins/gst-plugins-base-plugins-sections.txt:
6982 * ext/cdparanoia/gstcdparanoiasrc.c:
6983 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
6984 (gst_gnome_vfs_sink_class_init):
6985 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
6986 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
6987 * ext/ogg/gstoggmux.c:
6988 * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
6989 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
6990 (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
6991 * ext/pango/gsttextoverlay.c:
6992 * ext/pango/gsttextrender.c:
6993 * ext/theora/theoradec.c:
6994 * ext/theora/theoraenc.c:
6995 * ext/vorbis/vorbisdec.c:
6996 * ext/vorbis/vorbisenc.c:
6997 * gst-libs/gst/audio/gstaudiofilter.c:
6998 (gst_audio_filter_base_init):
6999 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
7000 (gst_audio_filter_template_base_init):
7001 * gst/adder/gstadder.c: (gst_adder_get_type):
7002 * gst/adder/gstadder.h:
7003 * gst/audioconvert/gstaudioconvert.c:
7004 * gst/audiotestsrc/gstaudiotestsrc.c:
7005 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
7006 (gst_audio_test_src_create):
7007 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7008 * gst/playback/gstdecodebin.c:
7009 * gst/playback/gstplaybin.c:
7010 * gst/playback/gststreamselector.c:
7011 (gst_stream_selector_base_init):
7012 * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
7013 * gst/volume/gstvolume.c:
7014 * sys/v4l/gstv4lmjpegsink.c:
7015 * sys/v4l/gstv4lmjpegsrc.c:
7016 * tests/check/libs/cddabasesrc.c:
7017 * tests/old/examples/gob/gst-identity2.gob:
7018 Add docs for adder, use GST_ELEMENT_DETAILS macro,
7019 define GstElementDetails at the top
7021 2006-03-23 Sebastien Moutte <sebastien@moutte.net>
7023 * win32/common/libgstinterfaces.def:
7024 Add a lot of export functions for gst-python
7025 * win32/vs6/libgstinterfaces.dsp:
7026 Add a missing include folder in the project configuration
7028 2006-03-23 Wim Taymans <wim@fluendo.com>
7030 * gst-libs/gst/audio/gstbaseaudiosrc.c:
7031 (gst_base_audio_src_get_time), (gst_base_audio_src_create),
7032 (gst_base_audio_src_change_state):
7033 Fix audio sources, forgot to make the ringbuffer
7036 2006-03-23 Wim Taymans <wim@fluendo.com>
7038 * gst-libs/gst/audio/gstbaseaudiosrc.c:
7039 (gst_base_audio_src_get_time), (gst_base_audio_src_create),
7040 (gst_base_audio_src_change_state):
7041 unparent instead of unref the ringbuffer.
7043 2006-03-23 Wim Taymans <wim@fluendo.com>
7045 * gst-libs/gst/audio/gstbaseaudiosink.c:
7046 (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
7047 (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
7048 Implement new async_play vmethod to start slaving and allow
7049 playback start in case of async PLAY state changes.
7051 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7052 Enable QoS with new method in base class.
7054 2006-03-23 Wim Taymans <wim@fluendo.com>
7056 Patch by: Julien MOUTTE <julien at moutte dot net>
7058 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
7059 (gst_video_test_src_do_seek), (gst_video_test_src_create):
7060 Partially handle 0 framerate, only EOS after the first frame
7063 2006-03-23 Wim Taymans <wim@fluendo.com>
7065 Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
7067 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7068 (gst_riff_create_video_template_caps):
7069 * gst/ffmpegcolorspace/avcodec.h:
7070 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
7071 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
7072 (gst_ffmpegcsp_avpicture_fill):
7073 * gst/ffmpegcolorspace/imgconvert.c:
7074 Patch for support of YVU9 AVI files (#334822)
7076 2006-03-22 Edward Hervey <edward@fluendo.com>
7078 * docs/design/design-decodebin.txt:
7079 Added design document for new decodebin
7080 (Target Caps): text/x-pango-markup is also a default target caps.
7082 2006-03-22 Wim Taymans <wim@fluendo.com>
7084 * gst-libs/gst/audio/gstbaseaudiosink.c:
7085 (gst_base_audio_sink_dispose):
7086 Since we _parent the ringbuffer, we also need to
7087 _unparent instead of a plain _unref.
7089 2006-03-22 Wim Taymans <wim@fluendo.com>
7091 * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
7092 (stop_seek), (scrub_toggle_cb), (main):
7095 2006-03-21 Tim-Philipp Müller <tim at centricular dot net>
7097 * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
7098 (gst_ogg_parse_chain):
7099 Fix very inefficient usage of linked lists (#335365).
7101 2006-03-21 Edward Hervey <edward@fluendo.com>
7103 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
7104 * gst/playback/gstplaybin.c: (handoff):
7105 * gst/playback/gststreamselector.c:
7106 (gst_stream_selector_set_property):
7107 gcc 4.1 unreferenced pointer fixes.
7108 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
7109 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
7110 gst_buffer_ref() now takes a GstBuffer*.
7112 2006-03-20 Julien MOUTTE <julien@moutte.net>
7114 * sys/xvimage/xvimagesink.c:
7115 (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
7118 2006-03-19 Tim-Philipp Müller <tim at centricular dot net>
7120 * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
7121 (id3v1_type_find), (apetag_type_find), (plugin_init):
7122 Can't do tag preferences via probability, as tags would then
7123 lose against types that are recognised with MAXIMUM probability
7124 (like .wav); so let all tag typefinders return MAXIMUM themselves
7125 and order them via the rank. Split ID3v1 and ID3v2 typefinders so
7126 that we can prefer APE to ID3v1 (fixes #335028).
7128 2006-03-17 Wim Taymans <wim@fluendo.com>
7130 * gst-libs/gst/audio/gstbaseaudiosink.c:
7131 (gst_base_audio_sink_change_state):
7132 * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
7133 (gst_ring_buffer_may_start):
7134 * gst-libs/gst/audio/gstringbuffer.h:
7135 Only start playback if we are playing.
7138 2006-03-17 Jan Schmidt <thaytan@mad.scientist.com>
7140 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
7141 * win32/common/config.h:
7142 Revert accidental commits to these files.
7144 2006-03-16 Tim-Philipp Müller <tim at centricular dot net>
7146 Patch by: Michal Benes <michal dot benes at xeris dot cz>
7148 * tests/Makefile.am:
7149 Don't try to build tests in tests/icles if we
7150 don't have X (#323852)
7152 2006-03-16 Tim-Philipp Müller <tim at centricular dot net>
7154 * gst-libs/gst/tag/gstid3tag.c:
7155 Add TXXX frame identifiers for replaygain stuff as used
7156 by some taggers (see #323721).
7158 2006-03-16 Jan Schmidt <thaytan@mad.scientist.com>
7160 * gst/playback/gststreamselector.c:
7161 (gst_stream_selector_set_property),
7162 (gst_stream_selector_bufferalloc):
7163 Preserve the existing buggy streamselector behaviour by performing
7164 a fallback buffer allocation when downstream isn't linked yet.
7165 This should really be fixed in playbin by blocking pads until it's
7167 Also, use gst_pad_alloc_buffer instead of
7168 gst_pad_alloc_buffer_and_set.
7170 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
7172 * gst-libs/gst/tag/gstid3tag.c:
7173 Don't crash on unknown ID3v2 TXXX frames.
7175 2006-03-15 Jan Schmidt <thaytan@mad.scientist.com>
7177 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
7178 Chain up to the parent finalize method.
7179 Add 32-bit sample size to the template caps.
7181 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7182 (gst_riff_create_video_template_caps):
7183 Add the fourcc that the VMWare codec uses.
7185 * gst/playback/gststreamselector.c:
7186 (gst_stream_selector_set_property),
7187 (gst_stream_selector_bufferalloc),
7188 (gst_stream_selector_request_new_pad):
7189 For the active pad, forward buffer-alloc requests, otherwise
7190 return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
7191 having to memcpy every frame when used by playbin.
7193 * gst/tcp/gstmultifdsink.c:
7194 (gst_multi_fd_sink_handle_client_write):
7195 Get negotiated caps from the sink pad, rather than the sink
7198 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
7200 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
7202 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
7203 Don't forget to set src->callbacks_pushed to FALSE again when
7204 popping them, otherwise re-activation in a different mode won't
7207 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
7209 Patch by: Sebastien Moutte <sebastien moutte net>
7211 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
7212 (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
7213 (gst_ffmpeg_smpfmt_to_caps):
7214 Replace __VA_ARGS__ caps creation macros with varargs functions.
7215 Makes things compile on MSVC (#320765), looks nicer, and we can
7216 tell the compiler to check for the NULL terminator.
7218 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
7220 Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
7222 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7223 Make sure the buffer we copy into is really always big
7224 enough, this time for real (#333488).
7226 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
7228 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7229 Add support for 24bpp DIB (#305279).
7231 2006-03-14 Wim Taymans <wim@fluendo.com>
7233 * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
7234 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7235 * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
7236 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
7237 (gst_video_scale_init), (gst_video_scale_src_event):
7238 Re-enable QoS after the release.
7239 Rework videoscale to use the base class src_event handler.
7241 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
7246 === release 0.10.5 ===
7248 2006-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
7251 releasing 0.10.5, "Net"
7253 2006-03-13 Tim-Philipp Müller <tim at centricular dot net>
7255 * docs/plugins/Makefile.am:
7256 Part of previous cdparanoiasrc docs fixes, forgot to commit.
7258 2006-03-12 Tim-Philipp Müller <tim at centricular dot net>
7260 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7261 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7262 * docs/plugins/gst-plugins-base-plugins.hierarchy:
7263 Add cdparanoiasrc to docs.
7265 * gst-libs/gst/cdda/gstcddabasesrc.c:
7266 More GstCddaBaseSrc docs.
7268 2006-03-12 Tim-Philipp Müller <tim at centricular dot net>
7270 * docs/libs/gst-plugins-base-libs-sections.txt:
7271 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
7272 * gst-libs/gst/tag/tag.h:
7273 API: libgsttag: new method gst_tag_from_id3_user_tag().
7275 2006-03-11 Tim-Philipp Müller <tim at centricular dot net>
7277 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7278 NULL-terminate array of mpeg4 video file extensions.
7279 Fixes crash on PPC (#334226).
7281 2006-03-11 Tim-Philipp Müller <tim at centricular dot net>
7283 * ext/gnomevfs/gstgnomevfssrc.c:
7284 (gst_gnome_vfs_src_check_get_range):
7285 gnome_vfs_uri_is_local() alone is not a good indicator
7286 whether we can operate in pull-mode with a specific URI,
7287 as it returns FALSE for file:// URIs that point to an
7288 NFS-mounted path. Be more conservative here: whitelist
7289 local files, blacklist http URIs and use the old
7290 mechanism for anything else (fixes #334216).
7292 2006-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
7297 === release 0.10.4 ===
7299 2006-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
7302 releasing 0.10.4, "Power"
7304 2006-03-10 Jan Schmidt <thaytan@mad.scientist.com>
7306 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7307 Disable max-lateness by setting it to -1 for now, so that
7308 we can bed QoS stuff in thoroughly between now and the next
7311 2006-03-10 Tim-Philipp Müller <tim at centricular dot net>
7313 Patch by: Fabrizio Gennari
7315 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7316 Make sure we don't read beyond the palette buffer in case of
7317 broken or manipulated files (#333488)
7319 2006-03-10 Edward Hervey <edward@fluendo.com>
7321 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
7322 Fix for variable not initialized.
7324 2006-03-09 Wim Taymans <wim@fluendo.com>
7326 * ext/libvisual/visual.c: (gst_visual_get_type),
7327 (gst_visual_src_setcaps), (gst_vis_src_negotiate),
7331 * ext/theora/gsttheoradec.h:
7332 * ext/theora/theoradec.c: (gst_theora_dec_init),
7333 (gst_theora_dec_reset), (_theora_granule_time),
7334 (theora_dec_src_convert), (theora_dec_sink_convert),
7335 (theora_dec_src_query), (theora_dec_src_event),
7336 (theora_dec_sink_event), (theora_handle_comment_packet),
7337 (theora_handle_header_packet), (theora_dec_push),
7338 (theora_handle_data_packet), (theora_dec_chain),
7339 (theora_dec_change_state):
7342 2006-03-09 Wim Taymans <wim@fluendo.com>
7344 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
7345 (audiocast_register_listener), (gst_gnome_vfs_src_start):
7348 2006-03-09 Wim Taymans <wim@fluendo.com>
7350 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
7351 Don't try to activate NULL chains.
7353 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7355 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
7356 Fix invalid memory access to region before peek'd data (#332964).
7358 2006-03-09 Wim Taymans <wim@fluendo.com>
7360 Patch by: Christophe Fergeau
7362 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
7363 * ext/pango/gsttextrender.c: (gst_text_render_init):
7364 * gst/adder/gstadder.c: (gst_adder_init):
7365 Don't leak padtemplates, closes #333510.
7367 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7369 * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
7370 Fix invalid memory access: make sure string passed to
7371 regexec() is NUL-termianted.
7373 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7375 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
7377 Refactor mpeg/audio typefinding to make it more maintainable
7378 and easier to fine-tune. Make probing into middle of the file
7379 work properly (fixes #333900, also see #152688).
7381 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7383 * gst/typefind/gsttypefindfunctions.c:
7384 (utf8_type_find_have_valid_utf8_at_offset):
7385 Remove part from previous commit that was bogus:
7386 g_utf8_validate() does in fact not accept embedded
7387 zeroes, so we don't need to check for those (thanks
7388 to Mike for the hint).
7390 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
7392 * gst/typefind/gsttypefindfunctions.c:
7393 (utf8_type_find_count_embedded_zeroes),
7394 (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
7395 Make plain/text typefinder more conservative: firstly, check
7396 for embedded zeroes, which are perfectly valid UTF-8 characters,
7397 but also a fairly good sign that something is not a plain text
7398 file; secondly, probe into the middle of the file if possible.
7399 If we can't probe into the middle, limit the probability value
7400 to be returned to TYPE_FIND_POSSIBLE (see #333900).
7402 2006-03-08 Michael Smith <msmith@fluendo.com>
7404 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7405 Make typefind function name for mpeg4 video unique.
7407 2006-03-08 Wim Taymans <wim@fluendo.com>
7409 * ext/libvisual/visual.c: (gst_visual_init),
7410 (gst_visual_clear_actors), (gst_visual_dispose),
7411 (gst_visual_reset), (gst_visual_src_setcaps),
7412 (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
7413 (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
7414 (gst_visual_chain), (gst_visual_change_state):
7415 Cleanups, post nice errors.
7416 Handle sink and src events.
7417 Implement simple QoS.
7419 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7420 Use new basesink methods to configure max-lateness.
7423 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7424 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
7425 Debug statement cleanups.
7427 * gst/volume/gstvolume.c: (gst_volume_class_init):
7430 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
7432 * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
7433 (gst_text_overlay_init), (gst_text_overlay_set_property),
7434 (gst_text_overlay_get_property):
7435 Revert API/ABI break from March 1. Keep 'halign' and 'valign'
7436 as string type properties, but mark them deprecated. Add
7437 'halignment' and 'valignment' properties that use enums
7440 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
7442 Patch by: Fabrizio Gennari
7444 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7445 Allow palettes with less than 256 colours in AVI files
7448 2006-03-07 Julien MOUTTE <julien@moutte.net>
7450 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
7451 (gst_text_overlay_video_event): Fix wrong EOS handling on text
7452 pad. We were releasing the queued text buffer when we should keep
7453 it until video pad gets EOS or discard the text buffer because it's
7454 too old. That was eating the last subtitle buffer. Add some more
7457 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7459 * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
7460 (gst_text_overlay_video_chain):
7461 Fix invalid memory access (we can't access a buffer after it's been
7462 pushed downstream without taking a reference); fix memory leak (if
7463 there's no text to render, bail out before allocating stuff).
7465 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7467 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
7468 (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
7469 * ext/pango/gsttextoverlay.h:
7470 If input is plain text, escape it before passing it to
7471 pango_layout_set_markup().
7473 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7475 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
7476 Don't ignore flow return from gst_pad_push().
7478 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7480 Patch by: Fabrizio Gennari
7482 * ext/libvisual/visual.c: (gst_visual_getcaps),
7483 (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
7484 * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
7485 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
7486 (gst_vorbisenc_convert_sink):
7487 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
7488 (gst_audio_duration_from_pad_buffer):
7489 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
7490 (gst_audio_filter_chain):
7491 * gst-libs/gst/rtp/gstbasertpdepayload.c:
7492 (gst_base_rtp_depayload_setcaps):
7493 * gst-libs/gst/video/video.c: (gst_video_frame_rate),
7494 (gst_video_get_size):
7495 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
7496 Don't leak references returned by gst_pad_get_parent()
7499 2006-03-06 Stefan Kost <ensonic@users.sf.net>
7501 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
7502 change location param details
7503 * gst/volume/gstvolume.c: (plugin_init):
7504 correct plugin description
7506 2006-03-06 Tim-Philipp Müller <tim at centricular dot net>
7508 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
7509 (gst_gnome_vfs_src_check_get_range):
7510 Override GstBaseSrc::check_get_range() in order to avoid opening
7511 the resource just to check whether we can operate in pull-mode or
7512 not - we can predict that pretty well from the URI alone. Should
7513 fix problems with last.fm (#331690). (Requires latest core CVS).
7515 2006-03-06 Wim Taymans <wim@fluendo.com>
7517 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
7518 (gst_video_sink_class_init):
7519 Throw away frames that are later than 20 ms.
7521 2006-03-06 Tim-Philipp Müller <tim at centricular dot net>
7523 Patch by: Fabrizio Gennari
7525 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
7526 Set depth on WMA caps (#333545)
7528 2006-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
7530 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
7531 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
7532 put Theora BOS pages before others. This hardcodes
7533 the Ogg/Theora I profile, but hey.
7535 2006-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
7538 updated with some examples
7539 * ext/theora/theoraenc.c: (granulepos_to_timestamp),
7540 (granulepos_add), (theora_buffer_from_packet):
7541 * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
7542 (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
7543 (gst_vorbisenc_chain):
7544 implement strategy from ext/ogg/README
7545 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
7546 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
7547 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
7548 (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
7549 Fix muxer so that oggz-validate is happy with all streams;
7550 except for no eos mark, and the BOS page ordering
7551 * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
7552 (check_buffer_granulepos):
7553 * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
7554 update tests to check for OFFSET being set as requested
7555 fixed type of granulepos, it's not a ClockTime
7557 2006-03-05 Julien MOUTTE <julien@moutte.net>
7559 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
7560 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
7561 Check that the xvimage we are creating has a correct size
7562 before returning it. (#314897)
7564 2006-03-05 Tim-Philipp Müller <tim at centricular dot net>
7566 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7567 Give id3 and ape tag typefinders a rank slightly higher
7568 than PRIMARY to ensure they're always run before any of
7569 the other typefinders (in particular wav and mp3) (#324186).
7571 2006-03-05 Tim-Philipp Müller <tim at centricular dot net>
7573 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7574 Add support for '3IVD' fourcc (#333403).
7576 2006-03-04 Tim-Philipp Müller <tim at centricular dot net>
7579 Bump requirements to GStreamer CVS for the new error enum.
7581 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
7582 Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
7583 space left on the device (fixes #333352).
7585 2006-03-04 Sebastien Moutte <sebastien@moutte.net>
7588 add a project file for libgstvolume
7589 update the workspace
7591 2006-03-03 Thomas Vander Stichele <thomas at apestaart dot org>
7593 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
7594 * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
7596 Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
7597 Set IN_CAPS on header buffers
7599 2006-03-02 Wim Taymans <wim@fluendo.com>
7601 * docs/plugins/Makefile.am:
7602 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7603 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7604 Add audioresample to docs.
7606 * gst/audioconvert/gstaudioconvert.c:
7609 * gst/audioresample/gstaudioresample.c:
7610 (gst_audioresample_base_init), (gst_audioresample_class_init),
7611 (gst_audioresample_init), (gst_audioresample_dispose),
7612 (audioresample_get_unit_size), (audioresample_transform_caps),
7613 (resample_set_state_from_caps), (audioresample_transform_size),
7614 (audioresample_set_caps), (audioresample_event),
7615 (audioresample_do_output), (audioresample_transform),
7616 (audioresample_pushthrough), (gst_audioresample_set_property),
7617 (gst_audioresample_get_property), (plugin_init):
7618 * gst/audioresample/gstaudioresample.h:
7620 Small code cleanups.
7622 2006-03-02 Wim Taymans <wim@fluendo.com>
7624 * docs/plugins/Makefile.am:
7625 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7626 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7627 Added videoscale to docs.
7629 * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
7630 (gst_video_rate_swap_prev), (gst_video_rate_event),
7631 (gst_video_rate_chain):
7634 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
7635 (gst_video_scale_init), (gst_video_scale_prepare_size),
7636 (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
7637 (gst_video_scale_fixate_caps), (gst_video_scale_transform):
7638 * gst/videoscale/gstvideoscale.h:
7639 Added docs, examples.
7641 Post errors instead of g_warning.
7643 2006-03-02 Wim Taymans <wim@fluendo.com>
7645 * docs/libs/gst-plugins-base-libs-docs.sgml:
7646 * docs/libs/gst-plugins-base-libs-sections.txt:
7647 * docs/libs/gst-plugins-base-libs.types:
7648 * docs/plugins/Makefile.am:
7649 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7650 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7651 Added some more docs to libs and plugins.
7653 * gst-libs/gst/audio/gstringbuffer.c:
7654 (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
7655 * gst-libs/gst/audio/gstringbuffer.h:
7656 Document ringbuffer some more.
7658 * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
7659 (gst_video_rate_setcaps), (gst_video_rate_reset),
7660 (gst_video_rate_init), (gst_video_rate_flush_prev),
7661 (gst_video_rate_swap_prev), (gst_video_rate_event),
7662 (gst_video_rate_chain), (gst_video_rate_change_state):
7663 * gst/videorate/gstvideorate.h:
7664 Fix videorate to use segments.
7665 Make it work with 0/1 framerates (closes #331903)
7666 Handle EOS correctly.
7669 2006-03-02 Tim-Philipp Müller <tim at centricular dot net>
7671 * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
7672 (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
7673 (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
7674 In state change function, first chain up to parent class,
7675 then handle downwards state change stuff. Remove some
7676 commented out cruft from 0.8 code.
7678 2006-03-02 Tim-Philipp Müller <tim at centricular dot net>
7680 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
7681 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
7682 (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
7683 (gst_ogm_parse_chain):
7684 Don't remove/re-add source pad if the new caps are the same as
7685 the old caps anyway (#333042). When removing source pad, don't
7686 unref it afterwards - we didn't ref it when adding. Sprinkle some
7687 GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
7688 after using gst_pad_get_parent(). Return downstream flow return
7689 value in chain function.
7691 2006-03-02 Wim Taymans <wim@fluendo.com>
7693 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7694 * docs/plugins/gst-plugins-base-plugins.args:
7695 * docs/plugins/gst-plugins-base-plugins.hierarchy:
7696 * docs/plugins/gst-plugins-base-plugins.interfaces:
7697 * docs/plugins/gst-plugins-base-plugins.signals:
7698 Fix hierarchy, added some more elements to the docs.
7700 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7701 (gst_ffmpegcsp_get_type):
7702 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7703 Fix docs for ffmpegcolorspace.
7705 2006-03-01 Tim-Philipp Müller <tim at centricular dot net>
7707 * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
7708 (apetag_type_find), (ape_type_find), (plugin_init):
7709 Some typefinding fine-tuning:
7710 - rank ID3/APE tags in order of preference via probabilities, so that
7711 ID3v2 > APEv2 > APEv1 > ID3v1.
7712 - three or four bytes don't really justify MAXIMUM probability,
7713 change those to 'very likely' (musepack and monkeysaudio).
7715 2006-03-01 Wim Taymans <wim@fluendo.com>
7717 * docs/plugins/Makefile.am:
7718 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7719 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7720 * ext/alsa/gstalsamixer.c:
7721 * ext/alsa/gstalsamixer.h:
7722 * ext/alsa/gstalsamixerelement.c:
7723 (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
7724 * ext/alsa/gstalsamixerelement.h:
7725 * ext/alsa/gstalsasink.c:
7726 * ext/alsa/gstalsasink.h:
7727 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
7729 * ext/alsa/gstalsasrc.h:
7731 Small code cleanups.
7733 2006-03-01 Wim Taymans <wim@fluendo.com>
7735 * ext/theora/Makefile.am:
7736 Dist new header too,
7738 2006-03-01 Wim Taymans <wim@fluendo.com>
7740 * docs/plugins/Makefile.am:
7741 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7742 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7743 * ext/gnomevfs/gstgnomevfssink.h:
7744 * ext/gnomevfs/gstgnomevfssrc.h:
7745 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
7746 * ext/vorbis/vorbisdec.h:
7747 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
7748 * ext/vorbis/vorbisenc.h:
7749 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
7750 (vorbis_parse_chain), (vorbis_parse_change_state):
7751 * ext/vorbis/vorbisparse.h:
7752 * gst/audioconvert/gstaudioconvert.h:
7753 * gst/tcp/gsttcpserversink.h:
7754 * gst/videotestsrc/gstvideotestsrc.c:
7755 * gst/videotestsrc/gstvideotestsrc.h:
7756 * gst/volume/gstvolume.c:
7757 * gst/volume/gstvolume.h:
7759 Added docs for vorbisdec and vorbisparse.
7762 2006-03-01 Wim Taymans <wim@fluendo.com>
7764 * docs/plugins/Makefile.am:
7765 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7766 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7767 * ext/pango/gstclockoverlay.h:
7768 * ext/pango/gsttextoverlay.h:
7769 * ext/pango/gsttextrender.h:
7770 * ext/pango/gsttimeoverlay.h:
7771 * ext/theora/gsttheoradec.h:
7772 * ext/theora/gsttheoraenc.h:
7773 * ext/theora/theoradec.c:
7774 * ext/theora/theoraenc.c:
7775 * gst/audioconvert/gstaudioconvert.h:
7776 * gst/audiotestsrc/gstaudiotestsrc.h:
7777 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7778 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
7779 * gst/tcp/gstmultifdsink.h:
7780 Updated/added documentation.
7782 * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
7783 (gst_text_overlay_halign_get_type),
7784 (gst_text_overlay_wrap_mode_get_type),
7785 (gst_text_overlay_base_init), (gst_text_overlay_class_init),
7786 (gst_text_overlay_init), (gst_text_overlay_set_property),
7787 (gst_text_overlay_get_property):
7788 Fix up properties to be enums instead of string to make bindings,
7789 introspection and automatic GUI creation possible.
7790 Add getters for the properties.
7792 2006-02-28 Sebastien Moutte <sebastien@moutte.net>
7794 * gst/audiotestsrc/gstaudiotestsrc.c:
7795 added defines of M_PI and M_PI_2
7796 * gst/ffmpegcolorspace/avcodec.h:
7797 removed #include "stdint.h" for win32 as _stdint.h is
7798 autogenerated to win32/common
7799 * win32/common/libgstaudio.def:
7800 * win32/common/libgsttag.def:
7803 some project files bugs corrected
7805 project files are reset to the default vs7 configuration
7806 (they link to msvcr71.dll using default optimizations)
7808 2006-02-28 Wim Taymans <wim@fluendo.com>
7810 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
7813 2006-02-28 Edward Hervey <edward@fluendo.com>
7815 * ext/alsa/gstalsasrc.c:
7816 Set proper class on the ElementDetails:
7817 Source/Audio instead of Src/Audio/
7819 2006-02-28 Edward Hervey <edward@fluendo.com>
7821 * gst/videoscale/vs_scanline.c:
7822 (vs_scanline_resample_nearest_RGBA):
7823 Revert optimization in videoscale. It should go in liboil and have
7824 an appropriate liboil function.
7826 2006-02-28 Wim Taymans <wim@fluendo.com>
7828 * gst-libs/gst/audio/gstbaseaudiosink.c:
7829 (gst_base_audio_sink_provide_clock):
7830 Don't try to provide a clock in the NULL state.
7832 2006-02-28 Wim Taymans <wim@fluendo.com>
7834 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
7835 (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
7836 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7837 (gst_ogg_demux_deactivate_current_chain),
7838 (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
7839 (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
7840 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
7841 (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
7842 Use GstSegment infrastructure to remove duplicated code
7843 and handle more seek cases correctly.
7845 2006-02-28 Wim Taymans <wim@fluendo.com>
7847 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7848 (gst_ffmpegcsp_transform):
7849 Don't ignore return code from ffmpeg convert function.
7851 * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
7852 Split out some long statements to ease debugging.
7854 2006-02-27 Jan Schmidt <thaytan@mad.scientist.com>
7856 * ext/libvisual/visual.c: (gst_visual_init),
7857 (gst_vis_src_negotiate), (get_buffer), (plugin_init):
7858 Don't use gst_pad_use_fixed_caps, because it prevents downstream from
7859 being able to renegotiate the size. Instead, use the negotiation
7860 algorithm from the goom plugin to pick an initial output caps.
7862 Also, allow theoretical libvisual plugins that might support non-GL
7863 output even if they also do GL.
7865 2006-02-26 Julien MOUTTE <julien@moutte.net>
7867 * ext/libvisual/visual.c: (gst_visual_init),
7868 (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
7869 (plugin_init): Load only non GL plugins. Fix some memleaks and
7870 possible negotiation issues.
7872 2006-02-25 Julien MOUTTE <julien@moutte.net>
7874 * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
7876 2006-02-24 Michael Smith <msmith@fluendo.com>
7878 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
7879 (cmml_type_find), (plugin_init):
7880 Fix CMML type find function to not require a specific minor version
7883 Add an MPEG4 video elementary stream typefind function.
7885 2006-02-04 Michael Smith <msmith@fluendo.com>
7887 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
7888 (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
7889 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7890 (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
7891 (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
7892 (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
7893 Annodex support in ogg demuxer. Doesn't do very much without the
7894 other annodex patches (to come).
7896 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7898 Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
7900 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7901 Pick up palette for MS video v1 (#327028)
7903 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7905 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7906 (gst_ffmpegcsp_caps_remove_format_info),
7907 (gst_ffmpegcsp_get_unit_size):
7908 The 'palette_data' field from incoming RGB caps shouldn't be
7909 proxied on outgoing YUV caps; also, restrict unit size
7910 adjustment in case of paletted data only to the unit that
7911 actually has a palette. Fixes #330711.
7913 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7915 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7916 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
7917 (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
7918 (gst_ffmpegcsp_get_unit_size):
7919 Plug some memory leaks.
7921 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7923 * sys/ximage/Makefile.am:
7924 * sys/xvimage/Makefile.am:
7925 Add some _CFLAGS and _LIBS that seem to be missing
7926 and/or required for Cygwin (see #317048).
7928 2006-02-22 Wim Taymans <wim@fluendo.com>
7930 * ext/alsa/gstalsasrc.c:
7931 Fix description as pointed out by caugier.
7933 2006-02-22 Tommi Myöhänen <ext-tommi do myohanen at nokia dot com>
7935 Reviewed by : Edward Hervey <edward@fluendo.com>
7937 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
7939 Better 3gp typefinding (#331526).
7941 2006-02-21 Tim-Philipp Müller <tim at centricular dot net>
7943 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
7944 Don't send EOS event here, the base class will send one for us.
7946 * gst/playback/gstplaybasebin.c: (prepare_output):
7947 Subpictures without video stream aren't allowed either.
7949 * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
7950 Fix debug statement copy'n'paste-o.
7952 2006-02-21 Tim-Philipp Müller <tim at centricular dot net>
7954 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
7955 Fix issues with mixer keeping state when muting/unmuting
7956 and when changing the volume whilst muted (see #331763
7959 2006-02-20 Tim-Philipp Müller <tim at centricular dot net>
7961 * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
7962 (parse_subrip), (gst_sub_parse_format_autodetect):
7963 Set right caps given that we send escaped text. Also,
7964 honour <i></i>, <b></b> and <u></u> markers that can be found
7965 in .srt files (fixes #310202).
7967 2006-02-20 Tim-Philipp Müller <tim at centricular dot net>
7969 * gst-libs/gst/audio/mixerutils.c:
7970 (element_factory_rank_compare_func):
7971 Make order in which elements are tried more determinable.
7973 2006-02-20 Julien MOUTTE <julien@moutte.net>
7975 * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
7976 (remove_element_chain), (cleanup_decodebin),
7977 (gst_decode_bin_change_state): Make decodebin reusable by
7978 fixing remove_element_chain first and then introduce a
7979 cleaner in state change to ->NULL. (Closes #331678)
7981 2006-02-19 Wim Taymans <wim@fluendo.com>
7983 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
7984 use 0666 mask when creating files so umask gets applied
7985 correctly. Fixes #331295.
7987 2006-02-19 Tim-Philipp Müller <tim at centricular dot net>
7989 * gst/subparse/Makefile.am:
7990 * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
7991 (gst_ssa_parse_dispose), (gst_ssa_parse_init),
7992 (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
7993 (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
7994 (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
7995 (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
7996 * gst/subparse/gstssaparse.h:
7997 * gst/subparse/gstsubparse.c: (plugin_init):
7998 Add very basic parser for SSA subtitle streams (as often
7999 found in matroska files).
8001 2006-02-19 Tim-Philipp Müller <tim at centricular dot net>
8003 * gst/playback/gstdecodebin.c: (mimetype_is_raw):
8004 That should be text/x-pango-markup, not text/x-pango-layout.
8006 2006-02-19 Julien MOUTTE <julien@moutte.net>
8008 * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
8011 2006-02-19 Julien MOUTTE <julien@moutte.net>
8013 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
8014 (gst_text_overlay_finalize), (gst_text_overlay_init),
8015 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
8016 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
8017 (gst_text_overlay_text_event), (gst_text_overlay_video_event),
8018 (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
8019 (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
8020 Fix state change deadlock.
8022 2006-02-19 Julien MOUTTE <julien@moutte.net>
8024 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
8025 (gst_text_overlay_finalize), (gst_text_overlay_init),
8026 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
8027 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
8028 (gst_text_overlay_text_event), (gst_text_overlay_video_event),
8029 (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
8030 (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
8031 * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
8032 and subtitles files.
8034 2006-02-19 Julien MOUTTE <julien@moutte.net>
8036 * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
8037 should be considered as raw.
8039 2006-02-19 Julien MOUTTE <julien@moutte.net>
8041 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
8043 * gst/playback/gststreaminfo.h: Introduce language informations.
8045 2006-02-18 Jan Schmidt <thaytan@mad.scientist.com>
8047 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
8048 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
8049 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
8050 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
8051 Set shared memory segments to be deleted as soon as we have attached,
8052 that way they get cleaned up automatically if we crash.
8054 2006-02-18 Julien MOUTTE <julien@moutte.net>
8056 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text):
8057 * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
8058 functions are called with lock held.
8060 2006-02-18 Julien MOUTTE <julien@moutte.net>
8062 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
8063 (gst_text_overlay_finalize), (gst_text_overlay_init),
8064 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
8065 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
8066 (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
8067 (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
8068 (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
8069 (gst_text_overlay_change_state): Refactoring of textoverlay
8070 without collectpads. This now supports sparse subtitles coming
8071 from a demuxer instead of a sub file. Seeking is still broken
8072 though. Need to discuss with wtay some more on how to handle
8074 * ext/pango/gsttextoverlay.h:
8075 * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
8076 subtitles coming from the demuxer.
8078 2006-02-17 Wim Taymans <wim@fluendo.com>
8080 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
8081 (gst_vorbisenc_convert_sink):
8082 Use some more scaling functions.
8084 2006-02-17 Tim-Philipp Müller <tim at centricular dot net>
8086 * ext/cdparanoia/gstcdparanoiasrc.c:
8087 (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
8088 (gst_cd_paranoia_paranoia_callback),
8089 (gst_cd_paranoia_src_signal_is_being_watched),
8090 (gst_cd_paranoia_src_read_sector):
8091 * ext/cdparanoia/gstcdparanoiasrc.h:
8092 Add back 'transport-error' and 'uncorrected-error' signals and
8093 make them actually be fired when bad stuff happens (#319340).
8095 2006-02-17 Wim Taymans <wim@fluendo.com>
8097 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
8098 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
8099 (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
8100 (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
8101 (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
8102 (gst_ring_buffer_pause), (gst_ring_buffer_stop),
8103 (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
8104 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
8105 (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
8106 (gst_ring_buffer_clear):
8108 Added some G_LIKELY.
8110 2006-02-17 Wim Taymans <wim@fluendo.com>
8112 * gst-libs/gst/audio/TODO:
8115 * gst-libs/gst/audio/gstbaseaudiosink.c:
8116 (gst_base_audio_sink_get_offset):
8117 When trying to play samples ASAP and we don't have a
8118 previous sample, try to play at position 0 instead of
8119 an invalid position.
8121 2006-02-17 Wim Taymans <wim@fluendo.com>
8123 * ext/alsa/gstalsasink.c: (gst_alsasink_open),
8124 (gst_alsasink_reset):
8125 Also release lock when we get an error in _reset();
8126 fix an error message.
8128 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8130 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
8131 (gst_alsasink_init), (get_channel_free_structure),
8132 (caps_add_channel_configuration), (gst_alsasink_getcaps),
8133 (gst_alsasink_close):
8134 * ext/alsa/gstalsasink.h:
8135 Add support for more than 2 channels (#326720).
8137 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8139 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8140 Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
8141 with 4 or 6 channels, assume a default channel layout to make things
8142 work (not sure there's anything else we can do in those cases).
8144 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8146 * gst-libs/gst/audio/multichannel.c:
8149 * gst-libs/gst/riff/Makefile.am:
8150 * gst-libs/gst/riff/riff-ids.h:
8151 * gst-libs/gst/riff/riff-media.c:
8152 (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
8153 Add support for WAVEFORMATEX, eg. PCM audio with more than two
8154 channels and a channel layout map.
8156 2006-02-16 Mathieu Garcia <b0nk at free dot fr>
8158 Reviewed by Edward Hervey <edward@fluendo.com>
8160 * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA):
8161 C-level optimization of the RGBA nearest neighbour function.
8162 Eventually this might end up in liboil with vectorized versions.
8164 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8166 * gst-libs/gst/audio/multichannel.c:
8167 (gst_audio_get_channel_positions):
8168 When we have more than 2 channels, but no channel layout is
8169 specified in the caps, return some default channel layout
8170 to the caller and warn about about a possibly buggy element
8171 (could be buggy filtercaps as well of course) (#317038).
8173 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8175 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
8176 Add gst-libs/gst/cdda to list of lib search paths.
8178 2006-02-15 Andy Wingo <wingo@pobox.com>
8180 * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
8181 timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
8182 to the Lord Jesus that I do not have to touch the ogg muxer ever
8185 2006-02-15 Edward Hervey <edward@fluendo.com>
8187 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
8188 quicktime movie files can also contain 'uuid' atoms.
8190 2006-02-14 Tim-Philipp Müller <tim at centricular dot net>
8192 * gst/audioconvert/plugin.c: (plugin_init):
8193 Register the GstAudioChannelPosition enum type with the type
8194 system in the plugin_init function, so that it is known before
8195 any element actually makes use of multi-channel stuff. This is
8196 required for example if one wants to be able to deserialise/use
8197 a caps string with channel positions before any pipeline has
8198 been setup and started, like with gst-launch.
8200 2006-02-14 Wim Taymans <wim@fluendo.com>
8202 * gst-libs/gst/audio/gstringbuffer.c:
8203 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
8204 (gst_ring_buffer_samples_done), (wait_segment),
8205 (gst_ring_buffer_commit), (gst_ring_buffer_clear):
8206 Add some compiler G_(UN_)LIKELY help.
8207 SIGNAL the ringbuffer waiters when going to PAUSED as well to
8208 make sure they can exit their functions. Should fix #330748
8210 2006-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
8215 * win32/common/_stdint.h:
8216 Windows does not have long long; copy the generated _stdint.h
8217 * win32/common/interfaces-enumtypes.c:
8218 (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
8219 (gst_mixer_track_flags_get_type),
8220 (gst_tuner_channel_flags_get_type):
8221 * win32/common/multichannel-enumtypes.c:
8222 (gst_audio_channel_position_get_type):
8225 2006-02-13 Wim Taymans <wim@fluendo.com>
8227 * gst-libs/gst/audio/gstbaseaudiosink.c:
8228 (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
8229 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8230 Always sync on first sample we receive when starting.
8232 2006-02-13 Wim Taymans <wim@fluendo.com>
8234 * gst/playback/gstplaybin.c: (gen_vis_element):
8235 Update vis bin docs.
8236 Move queue after tee so we don't queue video buffers but
8237 audio samples instead. Fixes problems where the video queue
8238 is filled and the audio queue empty.
8240 2006-02-13 Tim-Philipp Müller <tim at centricular dot net>
8242 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
8243 No need to push an EOS event here, GstBaseSrc will do that for us
8244 when we return FLOW_UNEXPECTED.
8246 2006-02-12 Wim Taymans <wim@fluendo.com>
8248 * gst-libs/gst/audio/gstbaseaudiosink.c:
8249 (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
8250 (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
8251 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8252 Use scale functions when possible.
8254 Free clockid when after waiting for EOS.
8255 Use G_(UN_)LIKLY when it makes sense.
8256 Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
8258 2006-02-12 Edward Hervey <edward@fluendo.com>
8260 * gst/playback/gstplaybasebin.c: (prepare_output):
8261 Remove stray semi-colon (fixes #330888).
8263 2006-02-12 Jan Schmidt <thaytan@mad.scientist.com>
8265 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
8266 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
8267 Fix up the XShm call testing so that we catch errors, and don't
8268 cause new ones by attempting to detach from a segment we failed
8269 to attach to. Fixes #312439.
8271 2006-02-10 Edward Hervey <edward@fluendo.com>
8273 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
8274 Added flv file typefind (video/x-flv).
8276 2006-02-10 Edward Hervey <edward@fluendo.com>
8278 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
8279 (gst_riff_create_video_template_caps):
8280 Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
8281 Also added the caps to the default set of riff video caps.
8283 2006-02-09 Andy Wingo <wingo@pobox.com>
8285 * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
8286 time and the end time of the last packet in the page.
8287 (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
8288 on the pages in our queue, set the duration as well. Reflow a
8290 (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
8291 Fixes bad muxing order.
8293 2006-02-09 Thomas Vander Stichele <thomas at apestaart dot org>
8295 * gst-libs/gst/rtp/gstbasertppayload.c:
8296 (gst_basertppayload_setcaps), (gst_basertppayload_push):
8297 update seqnum before setting it on the packet; this makes sure
8298 that the timestamp and seqnum properties match after pushing
8301 2006-02-09 Andy Wingo <wingo@pobox.com>
8303 * gst-libs/gst/audio/gstringbuffer.c
8304 (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
8305 overflow after 13.5 hours of recording. Kapow!
8307 * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
8308 the buffer size -- we don't care about underrun/overrun reporting
8309 right now, just need to return a useful value.
8311 2006-02-09 Jan Schmidt <thaytan@mad.scientist.com>
8316 === release 0.10.3 ===
8318 2006-02-09 Jan Schmidt <thaytan@mad.scientist.com>
8321 releasing 0.10.3, "Under Pressure"
8323 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
8326 Drat. Bump libtool version number for new API.
8327 Prelease 0.10.2.3 (of 0.10.3)
8329 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
8332 * win32/common/config.h:
8333 0.10.2.2 prerelease (of 0.10.3).
8335 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
8337 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
8338 Revert Andy's newsegment change pending a more correct
8341 2006-02-08 Thomas Vander Stichele <thomas at apestaart dot org>
8343 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
8344 (qt_type_find), (plugin_init):
8345 detect more files as 3gp
8346 group and reorder the iso file formats
8348 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8350 * ext/vorbis/vorbis.c: (plugin_init):
8351 Register musicbrainz tags, so apps don't have to.
8353 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8355 * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
8356 (gst_tag_to_vorbis_tag):
8357 Make sure we called gst_tag_register_musicbrainz_tags()
8358 before possibly mapping a vorbiscomment string from/to a
8361 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8363 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
8364 In case we can't find the required number of consecutive
8365 mpeg audio frames to positively identify an MPEG audio
8366 stream, check if there's at least a valid mpeg audio
8367 frame right at offset 0 and if so suggest mpeg/audio
8368 caps with a very low probability (#153004).
8370 2006-02-07 Andy Wingo <wingo@pobox.com>
8372 * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
8373 a TIME segment if we get timestamped buffers. Requires recent
8374 fixes in core to work properly.
8376 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8378 * gst/playback/gstplaybasebin.c: (prepare_output):
8379 Don't print the URI as part of the error message, it
8380 makes error dialogs look rather ugly, especially if
8381 the URI is very long or has characters in it that
8384 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8386 * gst/playback/gstplaybasebin.c: (prepare_output):
8387 Error out if we have only text or subtitles, but nothing
8388 else. Also error out if we have subtitles but no video
8391 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8393 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
8394 Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
8395 Post an error message on the bus when we encounter an
8396 error, which will hopefully be more meaningful than the
8397 'Internal Flow Error' message users get to see if we
8398 just return GST_FLOW_ERROR.
8400 2006-02-07 Andy Wingo <wingo@pobox.com>
8402 * configure.ac (GST_MAJORMINOR): Update core version req to
8403 0.10.2.2, for the collectpads API addition (#330244).
8405 2006-02-06 Tim-Philipp Müller <tim at centricular dot net>
8407 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8408 Return FALSE from plugin_init() when GnomeVFS can't
8409 be initialised for some reason (#328423).
8411 2006-02-06 Julien MOUTTE <julien@moutte.net>
8413 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event):
8414 Stick to seeking theory until i find the bug.
8415 * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
8417 2006-02-06 Jan Schmidt <thaytan@mad.scientist.com>
8419 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8420 (theora_enc_finalize), (theora_enc_sink_setcaps),
8421 (theora_set_header_on_caps), (theora_enc_chain),
8422 (theora_enc_change_state):
8423 * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
8424 Make theoraenc and the tests leak free. Like, really.
8426 2006-02-06 Jan Schmidt <thaytan@mad.scientist.com>
8428 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8429 (theora_enc_finalize), (theora_enc_sink_setcaps):
8430 Add a finalize method to ensure we clean up state even if
8431 someone omitted the state change back to NULL.
8433 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
8434 (gst_vorbisenc_chain):
8435 Free some more leaked bits.
8437 * tests/check/pipelines/theoraenc.c: (start_pipeline),
8439 Wait for state changes to happen if they're ASYNC.
8441 This ought to teach those fancy pants buildbots a lesson.
8443 2006-02-05 Jan Schmidt <thaytan@mad.scientist.com>
8445 * gst-libs/gst/tag/gstid3tag.c:
8446 Add mapping for ID3 International Standard Recording Code
8449 2006-02-05 Jan Schmidt <thaytan@mad.scientist.com>
8451 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
8452 Don't leak tag names.
8454 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8456 * docs/libs/gst-plugins-base-libs-docs.sgml:
8457 * docs/libs/gst-plugins-base-libs-sections.txt:
8458 * gst-libs/gst/tag/gstid3tag.c:
8459 * gst-libs/gst/tag/gstvorbistag.c:
8460 * gst-libs/gst/tag/tags.c:
8461 Split libgsttag docs into multiple sections.
8463 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8465 * docs/libs/Makefile.am:
8466 * docs/libs/gst-plugins-base-libs-docs.sgml:
8467 * docs/libs/gst-plugins-base-libs-sections.txt:
8468 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
8469 * gst-libs/gst/tag/gstvorbistag.c:
8470 * gst-libs/gst/tag/tag.h:
8471 * gst-libs/gst/tag/tags.c:
8472 Add libgsttag to the docs.
8474 2006-02-05 Julien MOUTTE <julien@moutte.net>
8476 * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
8477 (gst_text_overlay_init), (gst_text_overlay_src_event),
8478 (gst_text_overlay_collected): Fix clockoverlay.
8480 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8482 * docs/libs/compiling.sgml:
8483 Fix typo: it's pkg-config, not pkg-gconfig
8485 * docs/libs/gst-plugins-base-libs-docs.sgml:
8486 * docs/libs/gst-plugins-base-libs-sections.txt:
8487 * docs/libs/tmpl/gstgconf.sgml:
8488 There is no libgstgconf in 0.10, remove it
8491 2006-02-05 Julien MOUTTE <julien@moutte.net>
8493 * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
8494 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
8495 (gst_text_overlay_src_event), (gst_text_overlay_collected):
8496 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
8497 (gst_sub_parse_class_init), (gst_sub_parse_init),
8498 (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
8499 (parse_mpsub), (parser_state_init), (handle_buffer),
8500 (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
8501 * gst/subparse/gstsubparse.h: Introduce seeking code.
8503 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8505 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
8506 Add comment about LANGUAGE tag inconsistency (we want
8507 ISO-639-1, but extract three-letter identifiers?)
8510 Add two translatable files.
8512 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8514 * gst-libs/gst/tag/Makefile.am:
8515 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
8516 * gst-libs/gst/tag/tag.h:
8517 * gst-libs/gst/tag/tags.c:
8518 (gst_tag_register_musicbrainz_tags_internal),
8519 (gst_tag_register_musicbrainz_tags):
8520 Forward-port some tags stuff from the 0.8 branch. This is
8521 mostly the addition of musicbrainz tags and their mapping
8522 to vorbistags, and a vorbistag mapping of the language tag.
8524 2006-02-05 Julien MOUTTE <julien@moutte.net>
8526 * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
8529 2006-02-04 David Schleef <ds@schleef.org>
8531 * ext/ogg/gstoggmux.c:
8532 * gst/typefind/gsttypefindfunctions.c:
8533 Add Dirac typefinding and add dirac format to oggmux.
8535 2006-02-03 Tim-Philipp Müller <tim at centricular dot net>
8537 * gst/playback/gstdecodebin.c: (try_to_link_1):
8538 Don't put essential function call into
8539 g_return_*() macro, otherwise it'll all be
8540 replaced by NOOPs when compiling with
8541 G_DISABLE_CHECKS defined.
8543 2006-02-03 Edgard Lima <edgard.lima@indt.org.br>
8545 * ext/ogg/gstoggdemux.c:
8546 * ext/ogg/gstoggparse.c:
8547 * gst/tcp/gsttcpserversink.c:
8548 * sys/v4l/v4lsrc_calls.c:
8549 * sys/v4l/v4lsrc_calls.h:
8550 Just make it compile with --disable-gst-debug.
8552 2006-02-03 Wim Taymans <wim@fluendo.com>
8554 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
8555 (gst_alsasink_class_init), (gst_alsasink_init),
8556 (gst_alsasink_write), (gst_alsasink_reset):
8557 * ext/alsa/gstalsasink.h:
8558 Add lock to protect alsa calls.
8559 Implement reset to flush samples ASAP, does not work
8562 2006-02-02 Wim Taymans <wim@fluendo.com>
8564 * gst-libs/gst/audio/gstbaseaudiosink.c:
8565 (gst_base_audio_sink_provide_clock):
8566 Ugh.. getting late I guess...
8568 2006-02-02 Wim Taymans <wim@fluendo.com>
8570 * gst-libs/gst/audio/gstbaseaudiosink.c:
8571 (gst_base_audio_sink_provide_clock),
8572 (gst_base_audio_sink_set_property),
8573 (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
8574 Don't try to provide a clock when we are not negotiated since
8575 we might not be able to make it run.
8577 2006-02-02 Tim-Philipp Müller <tim at centricular dot net>
8579 * gst/playback/gstdecodebin.c: (try_to_link_1):
8580 Unlinking two source pads is ... hard.
8582 2006-02-02 Wim Taymans <wim@fluendo.com>
8584 * gst-libs/gst/audio/TODO:
8587 * gst-libs/gst/audio/gstbaseaudiosink.c:
8588 (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
8589 On EOS, wait till the last sample is played before posting EOS.
8591 2006-02-01 Philippe Kalaf <burger at speedy dot org>
8593 * gst-libs/gst/rtp/gstbasertpdepayload.c:
8594 Patch by Kai Vehmanen : Adds ability to enable newsegment bypass by
8595 setting queue_delay to zero. Also avoid thread being started if
8596 queue_delay is zero.
8598 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8600 * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
8601 Make test work again by connecting fakesinks to each decoded pad,
8602 which makes the pipeline wait until each fakesink has a buffer
8603 queued before going to PAUSED state. At that point we know the
8604 decodebin pads are negotiated.
8606 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8608 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
8609 (gst_cdda_base_src_handle_event):
8610 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
8611 Pass unhandled queries to the parent class's query function.
8613 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8615 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
8616 (gst_ogg_pad_src_query):
8617 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
8618 * ext/theora/theoradec.c: (theora_dec_src_query),
8619 (theora_dec_sink_query):
8620 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
8621 (vorbis_dec_sink_query):
8622 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
8623 (gst_vorbisenc_sink_query):
8624 * gst/adder/gstadder.c: (gst_adder_query):
8625 Pass unhandled queries upstream instead of just
8626 dropping them (#326447). Also, fix supported
8627 query types list for some elements.
8629 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8631 * gst/typefind/gsttypefindfunctions.c: (au_type_find),
8632 (paris_type_find), (ilbc_type_find), (plugin_init):
8633 Fix typefinding for audio/x-au, audio/x-paris and
8634 audio/iLBC-sh. We cannot use the START_WITH macros
8635 here, because there can only be one typefind factory
8636 with the same name (caps), so the second one would
8637 replace the first one and the first one would never
8638 be called when doing typefinding (see #161712).
8641 2006-01-31 Wim Taymans <wim@fluendo.com>
8643 * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
8644 (vorbis_handle_header_packet), (vorbis_dec_push),
8645 (vorbis_handle_data_packet):
8646 Use scale_int when we can, add some more scaling.
8647 Check packettype before parsing it.
8649 2006-01-31 Wim Taymans <wim@fluendo.com>
8651 * ext/theora/theoradec.c: (_theora_granule_time),
8652 (theora_dec_src_convert), (theora_dec_sink_convert):
8653 Call right _scale functions.
8654 Use parameter instead of some other random value.
8656 2006-01-31 Wim Taymans <wim@fluendo.com>
8658 * ext/theora/theoradec.c: (_theora_granule_frame),
8659 (_theora_granule_time), (_inc_granulepos),
8660 (theora_dec_src_convert), (theora_dec_sink_convert),
8661 (theora_handle_type_packet), (theora_handle_data_packet),
8663 Use higher precision timestamps calculation.
8664 Convert some other conversions to _scale.
8666 2006-01-31 Stefan Kost <ensonic@users.sf.net>
8668 * gst/audiotestsrc/gstaudiotestsrc.c:
8669 (gst_audio_test_src_create_sine_table), (plugin_init):
8670 * gst/volume/gstvolume.c: (plugin_init):
8671 initialize gst_controller before using
8673 2006-01-31 Jan Schmidt <thaytan@mad.scientist.com>
8675 * tests/check/pipelines/theoraenc.c:
8676 * tests/check/pipelines/vorbisenc.c:
8677 Define constant using G_GINT64_CONSTANT to avoid errors when
8678 passing it around - otherwise it gets truncated to 32 bits.
8680 Fixes failing tests.
8682 2006-01-31 Andy Wingo <wingo@pobox.com>
8684 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
8685 caps being set doesn't have a framerate value. Basically a stopgap
8688 * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
8689 technically correct enough to put into core though.
8690 (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
8691 DURATION. Fixes theoraenc ! oggmux.
8693 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
8694 fraction, not double.
8696 2006-01-31 Sebastien Moutte <sebastien@moutte.net>
8699 add vs7 project files created by Sergey Scobich
8701 2006-01-30 Sebastien Moutte <sebastien@moutte.net>
8704 add vs8 project files created by Sergey Scobich
8706 2006-01-30 Andy Wingo <wingo@pobox.com>
8708 * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
8709 timestamp + duration, not just timestamp -- ogg pages should be
8710 ordered by stop time. Necessary fix given the change in vorbis
8713 * ext/theora/theoraenc.c (theora_enc_sink_setcaps)
8714 (gst_theora_enc_init): Pull the granule shift out of the encoder.
8715 (granulepos_add): New function, handles the messiness of adjusting
8717 (theora_buffer_from_packet):
8719 (theora_enc_sink_event): Use granulepos_add, not +.
8721 * tests/check/pipelines/theoraenc.c
8722 (check_buffer_granulepos_from_starttime): Just check the frame
8723 count, not the actual granulepos -- we can't dictate to the
8724 encoder when it should be placing keyframes.
8726 2006-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
8728 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
8729 SERVICE_NOT_AVAILABLE happens for example when you're trying to
8730 play an http:// stream from a server that's not serving
8732 2006-01-30 Andy Wingo <wingo@pobox.com>
8734 * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET):
8735 * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
8736 remove the UINT64_CONSTANT macro, doesn't appear to be needed or
8739 * ext/theora/gsttheoraenc.h:
8740 * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
8741 although theoraenc was timestamping correctly. Added handling of
8742 streams that start with nonzero timestamps.
8744 * tests/check/Makefile.am:
8745 * tests/check/pipelines/theoraenc.c: New file, basically does same
8748 * tests/check/pipelines/vorbisenc.c: I claim these bugs.
8750 2006-01-30 Wim Taymans <wim@fluendo.com>
8752 * gst-libs/gst/audio/gstaudiosink.c:
8753 (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
8754 (gst_audioringbuffer_pause):
8755 Implement pause that does not wait for completion.
8757 * gst-libs/gst/audio/gstbaseaudiosink.c:
8758 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8759 Don't drop buffers when going to PAUSED but perform preroll on
8760 remaining samples now that core base class supports this.
8762 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
8763 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
8764 (gst_ring_buffer_commit):
8765 Pause should not signal waiters.
8766 Implement return value of _commit correctly.
8768 2006-01-30 Andy Wingo <wingo@pobox.com>
8770 * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
8772 * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
8773 updated to timestamp from the first sample, not the last.
8774 (gst_vorbisenc_buffer_from_header_packet): New function, takes
8775 special care of granulepos and timestamp for header packets.
8776 (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
8777 when the first buffer has a nonzero timestamp.
8779 * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
8780 (GstVorbisEnc.subgranule_offset): New members. Take care of the
8781 case when the first audio buffer we get has a nonzero timestamp.
8782 (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
8783 properly timestamp vorbis buffers with the time of the first
8784 sample, not the last.
8786 * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
8787 vorbis_granule_time_copy -- now it takes the granule/subgranule
8788 offset into account.
8790 * tests/check/pipelines/vorbisenc.c: New test for correctness of
8791 timestamps, durations, and granulepos on buffers produced by
8794 2006-01-30 Jan Schmidt <thaytan@mad.scientist.com>
8796 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8797 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
8798 Patch from Eric Jonas to support conversions to/from UYVY
8801 2006-01-30 Julien MOUTTE <julien@moutte.net>
8803 * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
8804 (setup_subtitle), (setup_source), (set_active_source):
8805 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
8806 (gen_text_element), (gen_audio_element), (gen_vis_element),
8807 (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
8809 2006-01-29 Sebastien Moutte <sebastien@moutte.net>
8811 * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
8812 * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
8813 use gst_guint64_to_gdouble to be compliant with vs6
8814 * gst/playback/gstdecodebin.c: (try_to_link_1)
8815 * gst/videorate/videorate.c: (gst_video_rate_blank_data)
8816 use G_GINT64_CONSTANT for int64 constants
8817 * win32/common/libgstinterfaces.def:
8818 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
8820 update and add new project files
8822 2006-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
8826 * win32/common/interfaces-enumtypes.c:
8827 (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
8828 (gst_mixer_track_flags_get_type),
8829 (gst_tuner_channel_flags_get_type):
8830 * win32/common/interfaces-enumtypes.h:
8831 * win32/common/multichannel-enumtypes.c:
8832 (gst_audio_channel_position_get_type):
8833 * win32/common/multichannel-enumtypes.h:
8834 add a win32-update rule like in core, and copy over enumtypes files
8836 2006-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
8839 * win32/common/config.h:
8840 * win32/common/config.h.in:
8841 add config files just like in core
8843 2006-01-28 Tim-Philipp Müller <tim at centricular dot net>
8845 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
8846 Make gcc-4.1 happy (part of #327357).
8848 2006-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
8850 * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
8851 (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
8852 (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
8853 * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
8854 (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
8855 (gst_alsasrc_unprepare), (gst_alsasrc_read):
8856 Update all error messages. All of them should either use
8857 the default translated message, or actually provide a
8858 translatable string.
8859 Make the string for channel count problems meaningful.
8861 2006-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
8863 * sys/v4l/v4l_calls.c: (gst_v4l_open):
8864 check for and throw RESOURCE_BUSY
8866 2006-01-27 David Schleef <ds@schleef.org>
8868 * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
8869 checked in this change -- it requires liboil features not
8870 in 0.3.6. Revert parts.
8872 2006-01-27 David Schleef <ds@schleef.org>
8875 * configure.ac: update liboil requirement to 0.3.6
8876 * gst/videoscale/Makefile.am:
8877 * gst/videoscale/vs_scanline.c: liboilify
8879 2006-01-27 Jan Schmidt <thaytan@mad.scientist.com>
8881 * ext/libvisual/visual.c: (get_buffer):
8882 When pad_alloc returns a GstFlowReturn other
8883 than GST_FLOW_OK, make sure it is passed upstream.
8885 2006-01-27 Jan Schmidt <thaytan@mad.scientist.com>
8887 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
8888 (gst_alsasink_class_init):
8889 Free the device name string.
8891 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
8892 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
8893 (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
8894 Don't remove a pad from the collectpads structure until it
8895 is released - it's a request pad, and may receive data again
8896 if the element gets moved back to PLAYING state.
8898 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
8899 Ensure we turn on double buffering on the Xv port, and
8900 set the colour key to something dark and mysterious that
8903 2006-01-27 Thomas Vander Stichele <thomas at apestaart dot org>
8905 * ext/alsa/gstalsaplugin.c: (plugin_init):
8906 * ext/cdparanoia/gstcdparanoiasrc.c:
8907 (gst_cd_paranoia_src_base_init), (plugin_init):
8908 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8909 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
8910 - a library should not call setlocale. see "Libraries" node in
8912 - make sure all plugins that use translation do bindtextdomain
8913 to point to the localedir
8914 * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
8915 (setup_sinks), (plugin_init):
8916 all this, and check for NULL when creating sinks
8918 2006-01-27 Julien MOUTTE <julien@moutte.net>
8920 * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
8921 (plugin_init): Make typefinding of subtitles work again.
8923 2006-01-26 Tim-Philipp Müller <tim at centricular dot net>
8925 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
8926 (mp3_type_frame_length_from_header), (mp3_type_find),
8927 (wavpack_type_find), (m4a_type_find), (ircam_type_find),
8929 Backport a bunch of typefinding fixes from the 0.8 branch.
8930 Also, improve wavpack typefinding: if we can't peek the
8931 entire wavpack block, try to parse the bits we can get and
8932 see if we find what we're looking for in those.
8934 2006-01-26 Julien MOUTTE <julien@moutte.net>
8936 * sys/ximage/ximagesink.c:
8937 (gst_ximagesink_calculate_pixel_aspect_ratio):
8938 * sys/xvimage/xvimagesink.c:
8939 (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
8940 more cases of pixel aspect ratio.
8942 2006-01-26 Edward Hervey <edward@fluendo.com>
8944 * gst/playback/gstdecodebin.c: (pad_probe):
8945 Also consider the flush-start and tag events as unblockers
8948 2006-01-26 Julien MOUTTE <julien@moutte.net>
8950 * gst/playback/gstplaybin.c: (gst_play_bin_init),
8951 (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
8952 (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
8953 On the fly visualisation switch, works disabling, enabling as
8954 well but it won't be able to enable vis in a playbin that was
8955 created with no visualisation.
8957 2006-01-25 Wim Taymans <wim@fluendo.com>
8959 * gst-libs/gst/audio/gstbaseaudiosink.c:
8960 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8961 Undo previous commit that returned WRONG_STATE sooner, it breaks
8964 2006-01-25 Wim Taymans <wim@fluendo.com>
8966 * gst-libs/gst/audio/gstbaseaudiosink.c:
8967 (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
8968 (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
8970 Post error when caps cannot be parsed.
8971 Resync on discontinuity in the stream.
8972 Clip samples to segment boundaries.
8973 return WRONG_STATE sooner when we are flushing.
8975 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
8976 (gst_base_audio_src_get_time), (gst_base_audio_src_create):
8977 Make audiosrc operate in TIME.
8978 Set TIMESTAMP and DURATION on buffers.
8980 2006-01-24 Tim-Philipp Müller <tim at centricular dot net>
8982 * tests/examples/seek/seek.c: (main):
8983 Output tag messages as well.
8985 2006-01-23 Edward Hervey <edward@fluendo.com>
8987 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
8988 (free_pad_probes), (remove_fakesink), (pad_probe),
8989 (close_pad_link), (gst_decode_bin_change_state):
8990 Replace GstPadBlockCallback with pad probes that detect
8991 first buffer AND eos before removing fakesink.
8992 Fixes hang with demuxers doing EOS while pre-rolling.
8995 2006-01-23 Andy Wingo <wingo@pobox.com>
8997 * ext/alsa/gstalsasink.c:
8998 * gst-libs/gst/rtp/gstbasertpdepayload.c:
8999 (gst_base_rtp_depayload_setcaps),
9000 (gst_base_rtp_depayload_add_to_queue),
9001 (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
9003 Patch by: Jens Granseuer <jensgr at gmx dot net>
9005 2006-01-22 Julien MOUTTE <julien@moutte.net>
9007 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
9008 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
9009 (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some
9010 frames. We might get a frame destroyed after changing state to
9011 NULL, adding a safety check on xcontext.
9013 2006-01-22 Tim-Philipp Müller <tim at centricular dot net>
9015 * gst-libs/gst/interfaces/xoverlay.c:
9016 Fix prepare-xwindow-id code example in the docs - we need to
9017 ignore all messages that aren't element messages as well.
9019 2006-01-21 Julien MOUTTE <julien@moutte.net>
9021 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
9022 I think one day i'll completely undestand how caps negotiation
9023 is supposed to work. This refactoring handles buffer_alloc
9024 called with caps we can't handle. We definitely don't want a
9025 set_caps with those caps, so we define and allocate a buffer
9026 we would like to receive.
9028 2006-01-19 Tim-Philipp Müller <tim at centricular dot net>
9030 * gst/playback/gstplaybasebin.c: (setup_source):
9031 Free iterator when done.
9033 2006-01-17 Jan Schmidt <thaytan@mad.scientist.com>
9035 * gst-libs/gst/audio/gstbaseaudiosink.c:
9036 (gst_base_audio_sink_render):
9037 Fix playback of non-synchronised streams by assuming a rate
9038 of 1.0 instead of a random one.
9040 Makes this work again:
9042 gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
9043 endianness=(int)4321, signed=(boolean)true, width=(int)16,
9044 depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
9045 audioresample ! alsasink
9047 === release 0.10.2 ===
9049 2006-01-16 Thomas Vander Stichele <thomas at apestaart dot org>
9052 releasing 0.10.2, "Then the devil is six"
9054 2006-01-16 Jan Schmidt <thaytan@mad.scientist.com>
9056 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
9057 * gst/playback/gststreamselector.c:
9058 (gst_stream_selector_set_property):
9059 Comment out broken code that connects to the state-changed signal.
9060 At this point, changing current stream selection is broken, but
9061 stuff like gst-launch playbin current-audio=1 works and filters
9062 to the chosen stream.
9064 2006-01-16 Thomas Vander Stichele <thomas at apestaart dot org>
9066 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
9067 Fix #327216 (null dereference in vorbisdec)
9069 2006-01-16 Tim-Philipp Müller <tim at centricular dot net>
9071 * ext/theora/theoradec.c: (theora_handle_comment_packet):
9072 Post taglist actually on bus instead of just freeing it
9073 (fixes #327114 and totem bug #327080).
9075 * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
9076 Use gst_element_found_tags_for_pad(), so that the tags
9077 are sent downstream as an event as well.
9079 2006-01-15 Thomas Vander Stichele <thomas at apestaart dot org>
9081 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
9082 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
9083 (gst_ximagesink_buffer_alloc):
9084 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
9085 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
9086 (gst_xvimagesink_buffer_alloc):
9087 move all regularly occurring messages to GST_LOG level
9088 add some more object logs
9090 2006-01-14 Thomas Vander Stichele <thomas at apestaart dot org>
9092 * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
9093 fix a silly segfault
9095 2006-01-14 Tim-Philipp Müller <tim at centricular dot net>
9097 * docs/libs/gst-plugins-base-libs-docs.sgml:
9098 * docs/libs/gst-plugins-base-libs-sections.txt:
9099 * gst-libs/gst/audio/mixerutils.c:
9100 * gst-libs/gst/audio/mixerutils.h:
9101 Add docs for mixerutils stuff.
9103 2006-01-13 Tim-Philipp Müller <tim at centricular dot net>
9105 * gst/playback/gstplaybasebin.c: (setup_source):
9106 Fix playback for sources that emit raw audio or
9107 raw video streams (e.g.: cd audio sources) (#325984).
9109 2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
9111 * gst-libs/gst/audio/mixerutils.c:
9112 (gst_audio_mixer_filter_do_filter):
9113 actually save the element we create
9115 2006-01-12 Tim-Philipp Müller <tim at centricular dot net>
9117 * gst-libs/gst/cdda/gstcddabasesrc.c:
9118 (gst_cdda_base_src_handle_track_seek):
9119 No need to post a tag message on the bus when seeking
9120 within the same track, only post it when the current
9123 2006-01-11 Jan Schmidt <thaytan@mad.scientist.com>
9125 * gst/playback/gstplaybasebin.c: (group_destroy),
9126 (probe_triggered), (new_decoded_pad), (mute_group_type),
9127 (set_active_source):
9128 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
9129 * gst/playback/gststreamselector.c:
9130 (gst_stream_selector_base_init),
9131 (gst_stream_selector_set_property),
9132 (gst_stream_selector_request_new_pad):
9133 Reenable stream selection. These mechanisms need a complete overhaul
9134 in the face of 0.8->0.10 changes though.
9136 2006-01-11 Jan Schmidt <thaytan@mad.scientist.com>
9138 * ext/ogg/gstoggdemux.c:
9139 Change the pad template to src_%d to match the pads that
9140 are created from it. decodebin needs this information in order
9141 to decide that oggdemux is capable of producing multiple pads
9142 (and hence needs queues inserted).
9144 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
9145 (gst_ogg_mux_collected):
9146 Make debug output more useful by using GST_PTR_FORMAT.
9148 2006-01-11 Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
9150 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
9152 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
9153 Set depth and width for alaw/mulaw (fixes #326601).
9155 2006-01-11 Thomas Vander Stichele <thomas at apestaart dot org>
9157 * tests/icles/Makefile.am:
9158 don't build the tests if we don't have the libs
9160 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
9162 * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
9163 (gst_cd_paranoia_paranoia_callback):
9164 Don't try to free NULL pointers.
9166 2006-01-10 Edward Hervey <edward@fluendo.com>
9168 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
9169 (gst_audio_rate_change_state), (plugin_init):
9170 Add debugging category.
9172 Add case for incoming buffers without valid offset/offset_end.
9174 2006-01-10 Michael Smith <msmith@fluendo.com>
9176 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
9177 Don't leak GCond in audio sources.
9179 2006-01-10 Jan Schmidt <thaytan@mad.scientist.com>
9181 * gst/playback/gstplaybin.c: (gen_audio_element):
9182 Don't leak an autoaudiosink/alsasink when we generate
9183 a new audio element. (old code, I guess)
9185 2006-01-10 Michael Smith <msmith@fluendo.com>
9187 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
9188 Support float audio in audiorate.
9189 Use width rather than depth for selecting sample width.
9191 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
9193 * gst/videotestsrc/videotestsrc.h:
9194 Use GLib types here (that way we don't have to include the
9195 generated _stdint.h header, which makes life easier for win32
9196 folks that don't use autotools for the build) (#325990, patch
9197 by: Sergey Scobich).
9199 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
9201 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
9202 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
9203 (gst_ring_buffer_pause), (wait_segment):
9204 * gst-libs/gst/audio/gstringbuffer.h:
9205 Name (private) union, makes Forte compiler happy (this time
9206 for real) (#324900).
9208 2006-01-09 Tim-Philipp Müller <tim at centricular dot net>
9210 * gst-libs/gst/audio/Makefile.am:
9211 Link against libgstinterfaces, needed for mixer
9212 and property probe stuff.
9214 2006-01-09 Edward Hervey <edward@fluendo.com>
9216 * gst-libs/gst/Makefile.am:
9218 2006-01-09 Tim-Philipp Müller <tim at centricular dot net>
9220 * gst-libs/gst/audio/Makefile.am:
9221 * gst-libs/gst/audio/mixerutils.c:
9222 (gst_audio_mixer_filter_do_filter),
9223 (gst_audio_mixer_filter_check_element),
9224 (gst_audio_mixer_filter_probe_feature),
9225 (element_factory_rank_compare_func),
9226 (gst_audio_default_registry_mixer_filter):
9227 * gst-libs/gst/audio/mixerutils.h:
9228 Add gst_audio_default_registry_mixer_filter() utility
9231 2006-01-03 Michael Smith <msmith@fluendo.com>
9233 * gst/audioresample/resample.h:
9234 As before, but for o_buf
9236 2006-01-03 Michael Smith <msmith@fluendo.com>
9238 * gst/audioresample/resample.h:
9239 Declare struct _ResampleState.buffer as unsigned char *, not void *,
9240 since we do arithmetic on it.
9242 2006-01-02 Tim-Philipp Müller <tim at centricular dot net>
9244 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
9245 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
9246 (gst_ring_buffer_pause), (wait_segment):
9247 * gst-libs/gst/audio/gstringbuffer.h:
9248 Sun's Forte compiler doesn't seem to like anonymous structs,
9249 so use same setup as in GstBaseSrc (fixes #324900).
9251 2005-12-30 Stefan Kost <ensonic@users.sf.net>
9254 * gst/volume/Makefile.am:
9255 * gst/volume/demo.c:
9256 move old example to tests/examples/volume/volune.c
9257 * tests/examples/Makefile.am:
9258 * tests/examples/seek/seek.c: (main):
9259 change window-close event from "delete-event" to "destroy"
9260 * tests/examples/volume/Makefile.am:
9261 * tests/examples/volume/volume.c: (value_changed_callback),
9262 (setup_gui), (message_received), (eos_message_received), (main):
9263 fix event handling and bus usage
9265 2005-12-29 Stefan Kost <ensonic@users.sf.net>
9267 * gst/audiotestsrc/gstaudiotestsrc.c:
9268 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
9269 (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
9270 (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
9271 (gst_audio_test_src_create_square),
9272 (gst_audio_test_src_create_saw),
9273 (gst_audio_test_src_create_triangle),
9274 (gst_audio_test_src_create_silence),
9275 (gst_audio_test_src_create_white_noise),
9276 (gst_audio_test_src_create_pink_noise),
9277 (gst_audio_test_src_init_sine_table),
9278 (gst_audio_test_src_create_sine_table),
9279 (gst_audio_test_src_change_wave),
9280 (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
9281 (gst_audio_test_src_create), (gst_audio_test_src_set_property):
9282 * gst/audiotestsrc/gstaudiotestsrc.h:
9283 update to basesrc changes, implement segmented seeking and eos
9284 handling, add a 'sine-tab' waveform for performance critical playback
9286 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9289 ... and this time the other modified file that I missed last time.
9291 2005-12-29 Michael Smith <msmith@fluendo.com>
9293 * gst/playback/gstdecodebin.c: (new_pad):
9294 Fix non-C89 variable declaration not at the start of a block. Should
9295 help some compilers.
9297 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9299 * tests/check/Makefile.am:
9300 And now fix 'make distcheck' (builddir != srcdir)
9302 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9305 * ext/cdparanoia/Makefile.am:
9306 * ext/cdparanoia/gstcdparanoia.c:
9307 * ext/cdparanoia/gstcdparanoia.h:
9308 * ext/cdparanoia/gstcdparanoiasrc.c:
9309 (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
9310 (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
9311 (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
9312 (gst_cd_paranoia_paranoia_callback),
9313 (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
9314 (gst_cd_paranoia_src_set_property),
9315 (gst_cd_paranoia_src_get_property), (plugin_init):
9316 * ext/cdparanoia/gstcdparanoiasrc.h:
9317 New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
9318 plugin again (there are still fixes required to playbin to make
9319 cdda:// uris work there).
9321 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9323 * tests/check/Makefile.am:
9324 Fix test case compilation.
9326 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9328 * gst-libs/gst/cdda/gstcddabasesrc.c:
9329 (gst_cdda_base_src_update_duration),
9330 (gst_cdda_base_src_calculate_cddb_id):
9331 An integer is not a string. Fix access to uninitialised variable.
9333 * tests/check/Makefile.am:
9334 Add cddabasesrc unit test; also actually enable the vorbis test.
9336 * tests/check/generic/states.c:
9337 Blacklist new cd audio elements as well.
9339 * tests/check/libs/cddabasesrc.c:
9340 Unit test for GstCddaBaseSrc (discid calculation mostly).
9342 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
9344 * docs/libs/Makefile.am:
9345 * docs/libs/gst-plugins-base-libs-docs.sgml:
9346 * docs/libs/gst-plugins-base-libs-sections.txt:
9347 * docs/libs/gst-plugins-base-libs.types:
9348 Add docs for libgstcdda/GstCddaBaseSrc.
9350 * gst-libs/gst/interfaces/mixertrack.h:
9351 Do one struct member per line with a semicolon at the end, that way
9352 even gtk-doc might parse it without complaining.
9354 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
9357 * gst-libs/gst/Makefile.am:
9358 * gst-libs/gst/cdda/Makefile.am:
9359 * gst-libs/gst/cdda/base64.c:
9360 * gst-libs/gst/cdda/base64.h:
9361 * gst-libs/gst/cdda/gstcddabasesrc.c:
9362 (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
9363 (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
9364 (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
9365 (gst_cdda_base_src_get_property),
9366 (gst_cdda_base_src_get_track_from_sector),
9367 (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
9368 (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
9369 (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
9370 (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
9371 (gst_cdda_base_src_uri_get_protocols),
9372 (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
9373 (gst_cdda_base_src_uri_handler_init),
9374 (gst_cdda_base_src_setup_interfaces),
9375 (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
9376 (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
9377 (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
9378 (gst_cdda_base_src_add_tags),
9379 (gst_cdda_base_src_add_index_associations),
9380 (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
9381 (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
9382 (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
9383 (gst_cdda_base_src_create):
9384 * gst-libs/gst/cdda/gstcddabasesrc.h:
9385 * gst-libs/gst/cdda/sha1.c:
9386 * gst-libs/gst/cdda/sha1.h:
9387 Add new libgstcdda with GstCddaBaseSrc class.
9389 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
9391 * ext/gnomevfs/gstgnomevfssink.h:
9392 Use GstBaseSinkClass as parent_class member for class struct, not
9395 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
9397 Patch by: Michael Benes
9399 * gst/videotestsrc/gstvideotestsrc.c:
9400 (gst_video_test_src_class_init), (gst_video_test_src_start):
9401 Add start method to reset running time and number of frames sent
9402 when starting up (fixes #324696)
9404 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
9406 * docs/plugins/Makefile.am:
9407 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9408 * docs/plugins/gst-plugins-base-plugins-sections.txt:
9409 * docs/plugins/gst-plugins-base-plugins.args:
9410 * docs/plugins/gst-plugins-base-plugins.hierarchy:
9411 * docs/plugins/gst-plugins-base-plugins.signals:
9412 Add docs stuff for gnomevfssrc and gnomevfssink.
9414 * ext/gnomevfs/gstgnomevfssrc.c:
9415 Fix example pipeline in gtk-doc blurb.
9417 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
9419 * ext/gnomevfs/Makefile.am:
9420 * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
9421 (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
9422 (gst_gnome_vfs_handle_get_type), (plugin_init):
9423 * ext/gnomevfs/gstgnomevfs.h:
9424 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
9425 (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
9426 (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
9427 (gst_gnome_vfs_sink_set_property),
9428 (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
9429 (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
9430 (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
9431 (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
9432 (gst_gnome_vfs_sink_uri_get_type),
9433 (gst_gnome_vfs_sink_uri_get_protocols),
9434 (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
9435 (gst_gnome_vfs_sink_uri_handler_init):
9436 * ext/gnomevfs/gstgnomevfssink.h:
9437 Port gnomevfssink; add gtk-doc blurb.
9439 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
9440 (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
9441 (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
9442 (gst_gnome_vfs_src_uri_get_type),
9443 (gst_gnome_vfs_src_uri_get_protocols),
9444 (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
9445 (gst_gnome_vfs_src_uri_handler_init),
9446 (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
9447 (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
9448 (gst_gnome_vfs_src_send_additional_headers_callback),
9449 (gst_gnome_vfs_src_received_headers_callback),
9450 (gst_gnome_vfs_src_push_callbacks),
9451 (gst_gnome_vfs_src_pop_callbacks),
9452 (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
9453 (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
9454 (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
9455 * ext/gnomevfs/gstgnomevfssrc.h:
9456 s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
9457 file; add gtk-doc blurb with example pipelines.
9459 === release 0.10.1 ===
9461 2005-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
9464 releasing 0.10.1, "Dobro Dedek"
9466 2005-12-21 Edgard Lima <edgard.lima@indt.org.br>
9468 * gst/typefind/gsttypefindfunctions.c:
9469 iLBC30 and iLBC20 added to typefind.
9471 2005-12-20 Thomas Vander Stichele <thomas at apestaart dot org>
9473 * gst-libs/gst/audio/gstbaseaudiosink.c:
9474 (gst_base_audio_sink_class_init):
9475 * gst-libs/gst/audio/gstbaseaudiosrc.c:
9476 (gst_base_audio_src_class_init):
9477 update strings, values are in microseconds
9478 change the default sink buffer time to something that is smaller
9479 (to help software volume mixing have a slightly lower delay) but
9480 still be acceptable on Wim's laptop
9482 2005-12-20 Edward Hervey <edward@fluendo.com>
9484 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
9485 Made a quack, forgot to add DUCK to the riff video template.
9487 2005-12-19 Edward Hervey <edward@fluendo.com>
9489 * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
9490 (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
9491 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
9492 (gst_ogm_parse_chain):
9493 Make sure pads are initialized correctly.
9494 * gst-libs/gst/riff/riff-ids.h:
9495 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
9496 (gst_riff_create_video_template_caps):
9497 Add a whole bunch of FOURCC <=> MimeType.
9498 Extend the riff video pad template to support the newly added fourcc.
9500 2005-12-18 Jan Schmidt <thaytan@mad.scientist.com>
9502 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
9503 (gst_ogg_demux_activate_chain):
9504 Extra debug output when activating/deactivating chains.
9506 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
9507 (is_demuxer_element), (try_to_link_1), (remove_element_chain),
9509 Remove a queue from our list when it becomes unlinked.
9510 Don't add queues to elements in class 'Demux' if they
9511 can only produce one pad
9513 2005-12-18 Julien MOUTTE <julien@moutte.net>
9515 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
9516 (gst_video_sink_get_type): Add a debug category.
9518 2005-12-17 Philippe Khalaf <burger@speedy.org>
9520 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9521 (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
9522 Handle downstream newsegment by sending our own newsegment before the
9523 next buffer to be released. (#323900)
9525 2005-12-17 Philippe Khalaf <burger@speedy.org>
9527 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9528 (gst_base_rtp_depayload_set_gst_timestamp):
9529 add queue delay to new segment as well (as opposed to just the first
9530 buffer). (bug #322347)
9532 2005-12-16 Stefan Kost <ensonic@users.sf.net>
9534 * ext/libvisual/visual.c: (make_valid_name):
9535 change some char* into char[]
9536 * gst/audiotestsrc/gstaudiotestsrc.c:
9537 (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
9538 (gst_audio_test_src_create):
9539 * gst/audiotestsrc/gstaudiotestsrc.h:
9540 prepare to handle EOS and SEGMENT_DONE
9542 2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
9544 * tests/check/generic/states.c: (GST_START_TEST):
9545 Blacklist cdparanoia element in state test.
9547 2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
9549 Patch by: Benjamin Pineau
9552 * gst/tcp/gsttcpclientsink.c:
9553 * gst/tcp/gsttcpserversink.c:
9554 * gst/tcp/gsttcpserversrc.c:
9555 Add <string.h> includes for memset and FD_ZERO (fixes #323878)
9557 2005-12-15 Michael Smith <msmith@fluendo.com>
9559 * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
9560 (gst_video_rate_chain):
9561 Fix timestamping for videorate when the first buffer it sees has a
9562 non-zero timestamp. Fix some misleading debug output.
9564 2005-12-15 Michael Smith <msmith@fluendo.com>
9566 * gst/audioresample/gstaudioresample.c:
9567 Don't leak all input buffers to audioresample.
9569 2005-12-15 Tim-Philipp Müller <tim at centricular dot net>
9571 * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
9572 Don't operate on empty text buffers. Strip newlines and
9573 tabs only from the end of the text, but leave them intact
9574 in the middle. Fix typo in gtk-doc description.
9576 2005-12-15 Tim-Philipp Müller <tim at centricular dot net>
9578 * gst/playback/gstplaybasebin.c:
9579 * gst/playback/gstplaybin.c: (handoff):
9580 Make sure the video frame buffer we return to apps via the
9581 "frame" property always has caps set on it. Modify
9582 _gst_gvalue_set_object() macro to handle NULL objects
9585 2005-12-14 Stefan Kost <ensonic@users.sf.net>
9587 * gst/audiotestsrc/gstaudiotestsrc.c:
9588 (gst_audio_test_src_class_init), (gst_audio_test_src_init),
9589 (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
9590 (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
9591 (gst_audio_test_src_create):
9592 * gst/audiotestsrc/gstaudiotestsrc.h:
9593 Adjust to some recent api changes and add wtays new cool seeking
9596 2005-12-14 Tim-Philipp Müller <tim at centricular dot net>
9598 * ext/alsa/Makefile.am:
9599 * ext/alsa/gstalsadeviceprobe.c:
9600 * ext/alsa/gstalsadeviceprobe.h:
9601 Helper functions to add device probing via the GstPropertyProbe
9602 interface to a class.
9604 * ext/alsa/gstalsamixer.h:
9605 Comment out GST_ALSA_MIXER, it returns a struct that's not
9608 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
9609 Add some debug info.
9611 * ext/alsa/gstalsamixerelement.c:
9612 (gst_alsa_mixer_element_interface_supported),
9613 (gst_implements_interface_init),
9614 (gst_alsa_mixer_element_init_interfaces),
9615 (gst_alsa_mixer_element_class_init),
9616 (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
9617 (gst_alsa_mixer_element_set_property),
9618 (gst_alsa_mixer_element_get_property),
9619 (gst_alsa_mixer_element_change_state):
9620 * ext/alsa/gstalsamixerelement.h:
9621 Add 'device' and 'device-name' properties. Add GstPropertyProbe
9622 for device handling (gnome-volume-control will need that).
9624 2005-12-12 Christian Schaller <uraeus@gnome.org>
9626 * ext/Makefile.am: fix cdparanoia entry
9627 * gst-plugins-base.spec.in: add cdparanoia
9629 2005-12-12 Michael Smith <msmith@fluendo.com>
9631 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
9632 Use the correct function to free list of typefind factories.
9634 2005-12-12 Wim Taymans <wim@fluendo.com>
9636 * gst/videotestsrc/gstvideotestsrc.c:
9637 (gst_video_test_src_class_init), (gst_video_test_src_init),
9638 (gst_video_test_src_parse_caps), (gst_video_test_src_query),
9639 (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
9640 (gst_video_test_src_create):
9641 * gst/videotestsrc/gstvideotestsrc.h:
9642 Implement seeking in videotestsrc.
9645 2005-12-12 Wim Taymans <wim@fluendo.com>
9647 * ext/cdparanoia/Makefile.am:
9648 * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
9649 (gst_paranoia_endian_get_type), (_do_init),
9650 (cdparanoia_class_init), (cdparanoia_init),
9651 (cdparanoia_set_property), (cdparanoia_get_property),
9652 (cdparanoia_do_seek), (cdparanoia_is_seekable),
9653 (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
9654 (cdparanoia_convert), (cdparanoia_get_query_types),
9655 (cdparanoia_query), (cdparanoia_set_index),
9656 (cdparanoia_uri_set_uri):
9657 * ext/cdparanoia/gstcdparanoia.h:
9658 Partially ported cdparanoia now that basesrc can support a
9661 2005-12-12 Wim Taymans <wim@fluendo.com>
9663 * tests/examples/seek/scrubby.c: (main):
9664 Set higher priority for bus events so they don't get reordered with
9667 * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
9668 (flush_toggle_cb), (main):
9669 Added checkbox to disable flushing seeks.
9670 Disable scrubbing when doing non flushing seeks.
9672 2005-12-12 Tim-Philipp Müller <tim at centricular dot net>
9674 * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
9675 (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
9676 (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
9677 (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
9678 Implement some sort of event handling that doesn't rely on
9679 g_return_if_fail; make sure we always push the last chunk of an
9680 .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
9681 state change function; remove some old cruft. Seeking is still
9682 rather unlikely to work though.
9687 2005-12-11 Julien MOUTTE <julien@moutte.net>
9689 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
9690 Fixed a leak of the current image reference when cleaning up.
9691 Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
9693 2005-12-09 Michael Smith <msmith@fluendo.com>
9695 * tools/Makefile.am:
9696 * tools/gst-launch-ext-m.m:
9697 Remove gst-launch-ext. It doesn't work, and is no longer
9698 particularly useful.
9700 2005-12-08 Luca Ognibene <luogni@tin.it>
9702 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
9703 don't pass random values to ogmparse convert function.
9704 Make seeking possible in the exile1.ogm file.
9706 2005-12-07 Tim-Philipp Müller <tim at centricular dot net>
9708 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
9709 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
9710 Work around refcount problem with g_value_set_object() that occur
9711 if the core has been compiled against GLib-2.6 (g_value_set_object()
9712 will only g_object_ref() the element, but the caller will
9713 gst_object_unref() it and bad things will happen due to the way
9714 GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
9715 totem for people on FC4 using Thomas's 0.10 RPMs.
9717 2005-12-07 Edward Hervey <edward@fluendo.com>
9719 Time to welcome ogm to 0.10 :)
9721 * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
9722 (gst_ogg_pad_typefind):
9723 Oggdemux can now properly typefind elements with dynamic pads.
9724 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
9725 Properly set caps on src pad, and set caps on outgoing buffers.
9727 2005-12-06 Thomas Vander Stichele <thomas at apestaart dot org>
9729 * ext/alsa/gstalsamixer.h:
9730 * ext/alsa/gstalsamixerelement.h:
9731 * ext/alsa/gstalsamixeroptions.h:
9732 * ext/alsa/gstalsamixertrack.h:
9733 * ext/alsa/gstalsasink.c:
9734 * ext/alsa/gstalsasink.h:
9735 * ext/alsa/gstalsasrc.c:
9736 * ext/alsa/gstalsasrc.h:
9737 * ext/cdparanoia/gstcdparanoia.h:
9738 * ext/gnomevfs/gstgnomevfsuri.h:
9739 * ext/ogg/gstoggdemux.c:
9740 * ext/ogg/gstoggmux.c:
9741 * ext/pango/gsttextoverlay.h:
9742 * ext/theora/theoradec.c:
9743 * ext/theora/theoraenc.c:
9744 * ext/vorbis/vorbisdec.h:
9745 * ext/vorbis/vorbisenc.c:
9746 * ext/vorbis/vorbisenc.h:
9747 * ext/vorbis/vorbisparse.h:
9748 * gst-libs/gst/audio/gstaudioclock.h:
9749 * gst-libs/gst/audio/gstaudiosink.c:
9750 * gst-libs/gst/audio/gstaudiosink.h:
9751 * gst-libs/gst/audio/gstaudiosrc.c:
9752 * gst-libs/gst/audio/gstaudiosrc.h:
9753 * gst-libs/gst/audio/gstbaseaudiosink.c:
9754 * gst-libs/gst/audio/gstbaseaudiosink.h:
9755 * gst-libs/gst/audio/gstbaseaudiosrc.c:
9756 * gst-libs/gst/audio/gstbaseaudiosrc.h:
9757 * gst-libs/gst/audio/gstringbuffer.h:
9758 * gst-libs/gst/audio/multichannel.h:
9759 * gst-libs/gst/floatcast/floatcast.h:
9760 * gst-libs/gst/interfaces/colorbalance.c:
9761 * gst-libs/gst/interfaces/colorbalance.h:
9762 * gst-libs/gst/interfaces/colorbalancechannel.h:
9763 * gst-libs/gst/interfaces/mixer.h:
9764 * gst-libs/gst/interfaces/mixeroptions.h:
9765 * gst-libs/gst/interfaces/mixertrack.h:
9766 * gst-libs/gst/interfaces/navigation.h:
9767 * gst-libs/gst/interfaces/propertyprobe.h:
9768 * gst-libs/gst/interfaces/tuner.h:
9769 * gst-libs/gst/interfaces/tunerchannel.h:
9770 * gst-libs/gst/interfaces/tunernorm.h:
9771 * gst-libs/gst/interfaces/xoverlay.h:
9772 * gst-libs/gst/netbuffer/gstnetbuffer.h:
9773 * gst-libs/gst/riff/riff-ids.h:
9774 * gst-libs/gst/riff/riff-media.h:
9775 * gst-libs/gst/riff/riff-read.h:
9776 * gst-libs/gst/rtp/gstbasertpdepayload.h:
9777 * gst-libs/gst/rtp/gstbasertppayload.c:
9778 * gst-libs/gst/rtp/gstbasertppayload.h:
9779 * gst-libs/gst/rtp/gstrtpbuffer.c:
9780 * gst-libs/gst/rtp/gstrtpbuffer.h:
9781 * gst-libs/gst/tag/gsttageditingprivate.h:
9782 * gst-libs/gst/tag/gstvorbistag.c:
9783 (gst_tag_list_from_vorbiscomment_buffer):
9784 * gst-libs/gst/tag/tag.h:
9785 * gst-libs/gst/video/video.h:
9786 * gst/adder/gstadder.c:
9787 * gst/adder/gstadder.h:
9788 * gst/audioconvert/audioconvert.c:
9789 * gst/audioconvert/audioconvert.h:
9790 * gst/audioconvert/gstaudioconvert.c:
9791 * gst/audioconvert/gstchannelmix.c:
9792 * gst/audioconvert/gstchannelmix.h:
9793 * gst/audiorate/gstaudiorate.c:
9794 * gst/audioresample/buffer.h:
9795 * gst/audioresample/functable.h:
9796 * gst/audioresample/gstaudioresample.c:
9797 * gst/audioresample/resample.h:
9798 * gst/ffmpegcolorspace/avcodec.h:
9799 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9800 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
9801 * gst/ffmpegcolorspace/imgconvert.c:
9802 * gst/ffmpegcolorspace/imgconvert_template.h:
9803 * gst/playback/gstdecodebin.c:
9804 * gst/playback/gstplaybasebin.h:
9805 * gst/playback/gstplaybin.c:
9806 * gst/playback/gststreaminfo.h:
9807 * gst/tcp/gstfdset.c:
9808 * gst/tcp/gstfdset.h:
9809 * gst/tcp/gstmultifdsink.c:
9810 * gst/tcp/gstmultifdsink.h:
9812 * gst/tcp/gsttcpclientsrc.c:
9813 * gst/tcp/gsttcpclientsrc.h:
9814 * gst/tcp/gsttcpplugin.h:
9815 * gst/tcp/gsttcpserversink.c:
9816 * gst/tcp/gsttcpserversrc.c:
9817 * gst/typefind/gsttypefindfunctions.c:
9818 * gst/videorate/gstvideorate.c:
9819 * gst/videotestsrc/gstvideotestsrc.h:
9820 * gst/videotestsrc/videotestsrc.h:
9821 * sys/v4l/gstv4lcolorbalance.h:
9822 * sys/v4l/gstv4ltuner.h:
9823 * sys/v4l/gstv4lxoverlay.h:
9824 * sys/v4l/v4l_calls.h:
9825 * sys/v4l/videodev_mjpeg.h:
9826 * tests/check/elements/audioconvert.c:
9827 * tests/check/elements/audioresample.c:
9828 * tests/check/elements/audiotestsrc.c:
9829 * tests/check/elements/videotestsrc.c:
9830 * tests/check/elements/volume.c:
9831 * tests/examples/seek/scrubby.c:
9832 * tests/examples/seek/seek.c:
9835 === release 0.10.0 ===
9837 2005-12-05 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9840 releasing 0.10.0, "Mont-d'or"
9842 2005-12-05 Jan Schmidt <thaytan@mad.scientist.com>
9844 * tests/examples/seek/Makefile.am:
9845 Build fix for when gtk is not available.
9847 2005-12-05 Andy Wingo <wingo@pobox.com>
9849 * ext/libvisual/visual.c: (get_buffer):
9850 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
9851 * ext/pango/gsttextrender.c: (gst_text_render_chain):
9852 * ext/theora/theoradec.c: (theora_handle_data_packet):
9853 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
9855 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9856 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
9857 Update for alloc_buffer changes.
9859 2005-12-05 Andy Wingo <wingo@pobox.com>
9861 patch by: Kai Vehmanen <kv2004 eca cx>
9863 * gst-libs/gst/rtp/gstbasertpdepayload.c
9864 (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
9866 2005-12-04 Andy Wingo <wingo@pobox.com>
9868 patch by: Sebastien Cote <sebas642 yahoo ca>
9870 * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
9873 2005-12-02 Tim-Philipp Müller <tim at centricular dot net>
9875 * docs/plugins/Makefile.am:
9876 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9877 * docs/plugins/gst-plugins-base-plugins-sections.txt:
9878 * docs/plugins/gst-plugins-base-plugins.hierarchy:
9879 * ext/pango/gstclockoverlay.c:
9880 * ext/pango/gsttextoverlay.c:
9881 * ext/pango/gsttextrender.c:
9882 * ext/pango/gsttimeoverlay.c:
9883 Add gtk-doc blurbs to pango elements.
9885 2005-12-02 Wim Taymans <wim@fluendo.com>
9887 * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
9888 * gst/audioresample/buffer.h:
9889 * gst/audioresample/gstaudioresample.c:
9890 * gst/audioresample/gstaudioresample.h:
9891 * gst/audioresample/resample.c: (resample_input_flush),
9892 (resample_input_pushthrough), (resample_input_eos),
9893 (resample_get_output_size_for_input),
9894 (resample_get_input_size_for_output), (resample_get_output_size),
9895 (resample_get_output_data):
9896 * gst/audioresample/resample.h:
9897 * gst/audioresample/resample_ref.c: (resample_scale_ref):
9898 Fix audioresample, seek torture, new segments, reverse negotiation
9901 2005-12-02 Wim Taymans <wim@fluendo.com>
9903 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9906 2005-12-02 Wim Taymans <wim@fluendo.com>
9908 * gst/audioconvert/gstaudioconvert.c:
9909 (gst_audio_convert_transform):
9912 === release 0.9.7 ===
9914 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9917 releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
9919 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9925 add win32 MANIFEST file
9926 do something to the hungarian translation
9928 2005-12-01 Tim-Philipp Müller <tim at centricular dot net>
9931 Add $(PANGO_DIR) to SUBDIRS
9933 * ext/pango/gstclockoverlay.c:
9934 * ext/pango/gsttimeoverlay.c:
9935 Fix and improve element descriptions.
9937 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9939 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9940 * docs/plugins/inspect/plugin-libvisual.xml:
9941 * docs/plugins/inspect/plugin-pango.xml:
9942 add pango plugin to docs
9944 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9950 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9953 * tests/Makefile.am:
9954 * tests/icles/.cvsignore:
9955 * tests/icles/Makefile.am:
9956 * tests/icles/stress-xoverlay.c: (myclock), (open_display),
9957 (close_display), (resize_window), (move_window), (create_window),
9958 (terminate_playback), (pause_playback), (start_playback), (main):
9959 add stress test for xoverlay from Julien
9961 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9963 * docs/libs/tmpl/gstcolorbalance.sgml:
9964 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9965 * gst-libs/gst/rtp/gstbasertppayload.c:
9966 * gst-libs/gst/rtp/gstrtpbuffer.c:
9967 * gst-libs/gst/rtp/gstrtpbuffer.h:
9968 Do burger's rename for rtp payloaders and depayloaders
9970 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9973 add Visual Studio 6 build files
9975 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9977 * docs/libs/gst-plugins-base-libs-docs.sgml:
9978 * docs/libs/gst-plugins-base-libs-sections.txt:
9979 * docs/libs/tmpl/gstaudio.sgml:
9980 * docs/libs/tmpl/gstringbuffer.sgml:
9981 * gst-libs/gst/interfaces/xoverlay.c:
9982 * gst-libs/gst/video/gstvideofilter.c:
9983 * gst-libs/gst/video/gstvideosink.c:
9984 update documentation
9986 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9988 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
9989 (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
9990 (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
9991 (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
9992 (gst_multi_fd_sink_get_stats),
9993 (gst_multi_fd_sink_remove_client_link),
9994 (gst_multi_fd_sink_handle_client_read),
9995 (gst_multi_fd_sink_client_queue_data),
9996 (gst_multi_fd_sink_client_queue_caps),
9997 (gst_multi_fd_sink_client_queue_buffer),
9998 (gst_multi_fd_sink_new_client),
9999 (gst_multi_fd_sink_handle_client_write),
10000 (gst_multi_fd_sink_recover_client),
10001 (gst_multi_fd_sink_queue_buffer),
10002 (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
10003 (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
10004 (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
10005 (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
10006 * gst/tcp/gstmultifdsink.h:
10007 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
10008 (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
10009 (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
10010 (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
10011 (gst_tcp_client_sink_set_property),
10012 (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
10013 (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
10014 * gst/tcp/gsttcpclientsink.h:
10015 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
10016 (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
10017 (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
10018 (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
10019 (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
10020 (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
10021 * gst/tcp/gsttcpclientsrc.h:
10022 * gst/tcp/gsttcpplugin.c: (plugin_init):
10023 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
10024 (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
10025 (gst_tcp_server_sink_finalize),
10026 (gst_tcp_server_sink_handle_server_read),
10027 (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
10028 (gst_tcp_server_sink_set_property),
10029 (gst_tcp_server_sink_get_property),
10030 (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
10031 * gst/tcp/gsttcpserversink.h:
10032 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
10033 (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
10034 (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
10035 (gst_tcp_server_src_set_property),
10036 (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
10037 (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
10038 * gst/tcp/gsttcpserversrc.h:
10041 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
10043 * docs/plugins/Makefile.am:
10044 * docs/plugins/gst-plugins-base-plugins.args:
10045 * docs/plugins/inspect/plugin-libvisual.xml:
10046 * gst/audioconvert/plugin.h:
10047 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
10048 (gst_audio_rate_base_init), (gst_audio_rate_class_init),
10049 (gst_audio_rate_setcaps), (gst_audio_rate_init),
10050 (gst_audio_rate_chain), (gst_audio_rate_set_property),
10051 (gst_audio_rate_get_property), (gst_audio_rate_change_state),
10053 * gst/audiotestsrc/gstaudiotestsrc.c:
10054 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
10055 (gst_audio_test_src_class_init), (gst_audio_test_src_init),
10056 (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
10057 (gst_audio_test_src_get_query_types),
10058 (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
10059 (gst_audio_test_src_create_square),
10060 (gst_audio_test_src_create_saw),
10061 (gst_audio_test_src_create_triangle),
10062 (gst_audio_test_src_create_silence),
10063 (gst_audio_test_src_create_white_noise),
10064 (gst_audio_test_src_init_pink_noise),
10065 (gst_audio_test_src_generate_pink_noise_value),
10066 (gst_audio_test_src_create_pink_noise),
10067 (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
10068 (gst_audio_test_src_create), (gst_audio_test_src_set_property),
10069 (gst_audio_test_src_get_property), (gst_audio_test_src_start),
10071 * gst/audiotestsrc/gstaudiotestsrc.h:
10072 * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
10073 (gst_sub_parse_base_init), (gst_sub_parse_class_init),
10074 (gst_sub_parse_init), (gst_sub_parse_formats),
10075 (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
10076 (convert_encoding), (get_next_line),
10077 (gst_sub_parse_data_format_autodetect),
10078 (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
10079 (gst_sub_parse_loop), (gst_sub_parse_chain),
10080 (gst_sub_parse_change_state), (gst_sub_parse_type_find),
10082 * gst/subparse/gstsubparse.h:
10083 * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
10084 (gst_video_rate_base_init), (gst_video_rate_class_init),
10085 (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
10086 (gst_video_rate_setcaps), (gst_video_rate_blank_data),
10087 (gst_video_rate_init), (gst_video_rate_event),
10088 (gst_video_rate_chain), (gst_video_rate_set_property),
10089 (gst_video_rate_get_property), (gst_video_rate_change_state),
10091 * gst/videoscale/gstvideoscale.c:
10092 (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
10093 (gst_video_scale_src_template_factory),
10094 (gst_video_scale_sink_template_factory),
10095 (gst_video_scale_get_type), (gst_video_scale_base_init),
10096 (gst_video_scale_class_init), (gst_video_scale_init),
10097 (gst_video_scale_set_property), (gst_video_scale_get_property),
10098 (gst_video_scale_transform_caps), (gst_video_scale_get_format),
10099 (gst_video_scale_prepare_size), (parse_caps),
10100 (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
10101 (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
10102 (gst_video_scale_transform), (gst_video_scale_handle_src_event),
10104 * gst/videoscale/gstvideoscale.h:
10105 * gst/videotestsrc/gstvideotestsrc.c:
10106 (gst_video_test_src_pattern_get_type),
10107 (gst_video_test_src_base_init), (gst_video_test_src_class_init),
10108 (gst_video_test_src_init), (gst_video_test_src_src_fixate),
10109 (gst_video_test_src_set_pattern),
10110 (gst_video_test_src_set_property),
10111 (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
10112 (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
10113 (gst_video_test_src_event), (gst_video_test_src_get_times),
10114 (gst_video_test_src_create), (plugin_init):
10115 * gst/videotestsrc/gstvideotestsrc.h:
10116 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
10117 (gst_video_test_src_smpte), (gst_video_test_src_snow),
10118 (gst_video_test_src_black):
10119 * gst/videotestsrc/videotestsrc.h:
10121 clean up docs a little
10123 2005-11-30 Wim Taymans <wim@fluendo.com>
10125 * gst-libs/gst/rtp/gstbasertpdepayload.h:
10126 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
10127 (gst_basertppayload_event), (gst_basertppayload_push),
10128 (gst_basertppayload_change_state):
10129 * gst-libs/gst/rtp/gstbasertppayload.h:
10132 2005-11-30 Julien MOUTTE <julien@moutte.net>
10134 * docs/libs/gst-plugins-base-libs-docs.sgml:
10135 * docs/libs/gst-plugins-base-libs-sections.txt:
10136 * gst-libs/gst/video/gstvideofilter.c:
10137 * gst-libs/gst/video/gstvideosink.c:
10138 * gst-libs/gst/video/gstvideosink.h: Adding docs.
10140 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
10160 * scripts/autoplugins.sh:
10163 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
10167 * examples/Makefile.am:
10168 * examples/capsfilter/Makefile.am:
10169 * examples/capsfilter/capsfilter1.c:
10170 * examples/gob/Makefile.am:
10171 * examples/gob/gst-identity2.gob:
10172 * examples/indexing/.cvsignore:
10173 * examples/indexing/Makefile.am:
10174 * examples/indexing/indexmpeg.c:
10175 * examples/seeking/.cvsignore:
10176 * examples/seeking/Makefile.am:
10177 * examples/seeking/cdparanoia.c:
10178 * examples/seeking/cdplayer.c:
10179 * examples/seeking/chained.c:
10180 * examples/seeking/scrubby.c:
10181 * examples/seeking/seek.c:
10182 * examples/stats/Makefile.am:
10183 * examples/stats/mp2ogg.c:
10184 * examples/switch/.cvsignore:
10185 * examples/switch/Makefile.am:
10186 * examples/switch/switcher.c:
10187 * tests/Makefile.am:
10188 * tests/check/generic/.cvsignore:
10189 * tests/check/pipelines/.cvsignore:
10190 * tests/examples/Makefile.am:
10191 * tests/examples/seek/Makefile.am:
10192 reorganize stuff under tests/
10194 2005-11-30 Edward Hervey <edward@fluendo.com>
10196 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
10197 Go away you stupid GstStaticPadTemplate memleak.
10199 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
10201 * gst-libs/gst/net/Makefile.am:
10202 * gst-libs/gst/net/README:
10203 * gst-libs/gst/net/gstnetbuffer.c:
10204 * gst-libs/gst/net/gstnetbuffer.h:
10205 this was moved to "netbuffer"
10207 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
10209 * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
10210 (gst_video_filter_class_init), (gst_video_filter_init):
10211 * gst-libs/gst/video/gstvideofilter.h:
10212 borgify name to bring in line with other classes
10214 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
10216 * gst/audioscale/.cvsignore:
10217 * gst/audioscale/Makefile.am:
10218 * gst/audioscale/README:
10219 * gst/audioscale/audioscale.vcproj:
10220 * gst/audioscale/dtof.c:
10221 * gst/audioscale/dtos.c:
10222 * gst/audioscale/functable.c:
10223 * gst/audioscale/gstaudioscale.c:
10224 * gst/audioscale/gstaudioscale.h:
10225 * gst/audioscale/private.h:
10226 * gst/audioscale/resample.c:
10227 * gst/audioscale/resample.h:
10228 * gst/audioscale/test.c:
10231 2005-11-30 Edward Hervey <edward@fluendo.com>
10233 * gst-libs/gst/netbuffer/Makefile.am:
10234 really, really tired
10236 2005-11-30 Edward Hervey <edward@fluendo.com>
10238 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
10239 Update for new GstTypeFindFactory _register()
10241 2005-11-30 Edward Hervey <edward@fluendo.com>
10243 * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir):
10244 Let's not override libgstnet from core for no reason...
10245 (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
10246 Ok, maybe not so quick next time.
10248 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
10251 * gst-libs/gst/Makefile.am:
10252 moved gst-libs/gst/net to netbuffer through CVS surgery
10253 remove old directory
10254 updating build to accomodate
10257 2005-11-29 Andy Wingo <wingo@pobox.com>
10259 * pkgconfig/gstreamer-plugins-base.pc.in:
10260 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
10261 * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
10264 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
10266 * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
10267 3rd time's the charm. Correct ref-counting for discarded buffers.
10269 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
10271 * gst/playback/gststreamselector.c:
10272 (gst_stream_selector_class_init),
10273 (gst_stream_selector_set_property),
10274 (gst_stream_selector_get_property),
10275 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
10278 2005-11-29 Tim-Philipp Müller <tim at centricular dot net>
10280 * gst/subparse/gstsubparse.c: (feed_textbuf):
10281 Don't access already unref'ed buffer.
10283 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
10285 * gst/playback/gststreamselector.c:
10286 (gst_stream_selector_class_init), (gst_stream_selector_init),
10287 (gst_stream_selector_dispose), (gst_stream_selector_set_property),
10288 (gst_stream_selector_get_property),
10289 (gst_stream_selector_get_linked_pad),
10290 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
10291 * gst/playback/gststreamselector.h:
10292 Add the active-pad property for playbin to use shortly. Ignore buffers
10293 from any other pad, returning GST_FLOW_NOT_LINKED
10295 2005-11-29 Julien MOUTTE <julien@moutte.net>
10297 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
10298 patch from bug #322704 (Alessandro Decina).
10300 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
10302 * gst-libs/gst/audio/Makefile.am:
10303 folded audiofilter into the audio library
10305 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
10307 * gst/videoscale/gstvideoscale.h:
10308 * gst/videoscale/gstvideoscale.c:
10309 remove unimplemented scale methods
10311 2005-11-28 Tim-Philipp Müller <tim at centricular dot net>
10313 * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
10316 2005-11-28 Julien MOUTTE <julien@moutte.net>
10318 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
10319 (gst_ximagesink_setcaps):
10320 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
10321 (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
10322 happens (only visible on ximagesink but bug is in xv too) set_caps was
10323 destroying the internal x[v]image used to memcpy non locally alloced
10324 buffers so that it got renewed on next _chain. The issue is that
10325 _expose will try to put that image as it reffed it in _put.
10326 Using gst_buffer_unref instead of destroy fixes it !
10328 2005-11-28 Edward Hervey <edward@fluendo.com>
10330 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
10331 (try_to_link_1), (queue_filled_cb):
10332 Better use of the queues. Start with a small size queue and only increase
10333 the size of the queues when the other queues are empty.
10335 2005-11-28 Thomas Vander Stichele <thomas at apestaart dot org>
10337 * gst-libs/gst/video/Makefile.am:
10338 compile in copied-over videofilter into the video library
10339 * gst-libs/gst/video/videosink.h:
10340 rename the header to gstvideosink.h since it's a base GstObject class
10341 * sys/ximage/ximagesink.h:
10342 * sys/xvimage/xvimagesink.h:
10345 2005-11-28 Wim Taymans <wim@fluendo.com>
10347 * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
10348 * gst/playback/gstplaybasebin.h:
10349 Prepare to handle errors betters.
10351 * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
10352 Set sinks to PAUSED first before adding and linking them so that
10353 we don't interrupt dataflow.
10355 2005-11-28 Wim Taymans <wim@fluendo.com>
10357 * gst-libs/gst/audio/TODO:
10360 * gst-libs/gst/audio/gstaudiosink.c:
10361 (gst_audioringbuffer_open_device),
10362 (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
10363 (gst_audioringbuffer_release):
10366 * gst-libs/gst/audio/gstbaseaudiosink.c:
10367 (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
10368 (gst_base_audio_sink_change_state):
10369 Slave to the master clock when going to PLAYING and unslave when
10372 * gst-libs/gst/audio/gstringbuffer.c:
10373 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
10374 (gst_ring_buffer_acquire), (gst_ring_buffer_release),
10375 (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
10376 (gst_ring_buffer_clear_all), (wait_segment),
10377 (gst_ring_buffer_commit), (gst_ring_buffer_read),
10378 (gst_ring_buffer_advance):
10379 * gst-libs/gst/audio/gstringbuffer.h:
10380 Add some docs and cleanups.
10382 2005-11-28 Julien MOUTTE <julien@moutte.net>
10384 * sys/xvimage/xvimagesink.c:
10385 (gst_xvimagesink_navigation_send_event): Fix navigation events
10386 coordinates translation with pixel aspect ratios.
10388 2005-11-28 Julien MOUTTE <julien@moutte.net>
10390 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
10391 Use calculated video geometry from _setcaps instead of buffer
10392 caps to respect pixel aspect ratio. (fixes #322388)
10394 2005-11-28 Julien MOUTTE <julien@moutte.net>
10396 * docs/libs/tmpl/gstcolorbalance.sgml:
10397 * docs/libs/tmpl/gstmixer.sgml:
10398 * docs/libs/tmpl/gstxoverlay.sgml:
10399 * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
10402 2005-11-28 Julien MOUTTE <julien@moutte.net>
10404 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
10405 Refuse to create an XvImage if we can't find the format.
10407 2005-11-28 Edward Hervey <edward@fluendo.com>
10409 * gst-libs/gst/riff/riff-media.c:
10410 (gst_riff_create_audio_template_caps):
10411 Add ATRAC3 to the list of riff-possible audio caps.
10412 I know we still don't have a plugin for atrac3, but it's saner to output
10413 that than a cryptic mimetype.
10415 2005-11-27 Edward Hervey <edward@fluendo.com>
10417 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
10418 Don't try to create a zero-sized subbuffer.
10420 2005-11-27 Julien MOUTTE <julien@moutte.net>
10422 * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
10423 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
10424 (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
10425 (gst_ximagesink_expose): Fixed a tricky race.
10426 * sys/ximage/ximagesink.h:
10427 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
10428 (gst_xvimagesink_expose): Fixed a tricky race.
10429 * sys/xvimage/xvimagesink.h:
10431 2005-11-27 Edward Hervey <edward@fluendo.com>
10433 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
10434 (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
10435 Remove unused properties, and add queues between demuxers and decoders
10436 so that a lot more files can preroll properly.
10438 2005-11-27 Thomas Vander Stichele <thomas at apestaart dot org>
10440 * gst-libs/gst/net/Makefile.am:
10441 * gst-libs/gst/rtp/Makefile.am:
10442 * gst-libs/gst/tag/Makefile.am:
10443 remove silly include
10444 * gst/tags/Makefile.am:
10445 * gst/tags/gsttagediting.c:
10446 * gst/tags/gsttageditingprivate.h:
10447 * gst/tags/tagedit.vcproj:
10448 remove directory, is as good as empty
10450 2005-11-27 Thomas Vander Stichele <thomas at apestaart dot org>
10453 added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
10454 * gst-libs/Makefile.am:
10455 * gst-libs/gst/audio/Makefile.am:
10456 * gst-libs/gst/interfaces/Makefile.am:
10457 * gst-libs/gst/net/Makefile.am:
10458 * gst-libs/gst/riff/Makefile.am:
10459 * gst-libs/gst/rtp/Makefile.am:
10460 * gst-libs/gst/tag/Makefile.am:
10461 * gst-libs/gst/video/Makefile.am:
10464 2005-11-27 Julien MOUTTE <julien@moutte.net>
10466 * docs/libs/tmpl/gstcolorbalance.sgml:
10467 * docs/libs/tmpl/gstmixer.sgml:
10468 * docs/libs/tmpl/gstxoverlay.sgml:
10469 * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
10470 * sys/ximage/ximagesink.h:
10471 * sys/xvimage/xvimagesink.h: More and more documentation.
10473 2005-11-26 Julien MOUTTE <julien@moutte.net>
10475 * docs/libs/gst-plugins-base-libs-docs.sgml:
10476 * docs/libs/gst-plugins-base-libs-sections.txt:
10477 * docs/libs/tmpl/gstcolorbalance.sgml:
10478 * docs/libs/tmpl/gstmixer.sgml:
10479 * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
10482 2005-11-26 Julien MOUTTE <julien@moutte.net>
10484 * docs/plugins/Makefile.am:
10485 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10486 * docs/plugins/gst-plugins-base-plugins-sections.txt:
10487 * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
10489 2005-11-26 Julien MOUTTE <julien@moutte.net>
10491 * docs/plugins/Makefile.am:
10492 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10493 * docs/plugins/gst-plugins-base-plugins-sections.txt:
10494 * docs/plugins/inspect/plugin-adder.xml:
10495 * docs/plugins/inspect/plugin-alsa.xml:
10496 * docs/plugins/inspect/plugin-audioconvert.xml:
10497 * docs/plugins/inspect/plugin-audiorate.xml:
10498 * docs/plugins/inspect/plugin-audioresample.xml:
10499 * docs/plugins/inspect/plugin-audiotestsrc.xml:
10500 * docs/plugins/inspect/plugin-decodebin.xml:
10501 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
10502 * docs/plugins/inspect/plugin-gnomevfs.xml:
10503 * docs/plugins/inspect/plugin-ogg.xml:
10504 * docs/plugins/inspect/plugin-playbin.xml:
10505 * docs/plugins/inspect/plugin-subparse.xml:
10506 * docs/plugins/inspect/plugin-tcp.xml:
10507 * docs/plugins/inspect/plugin-theora.xml:
10508 * docs/plugins/inspect/plugin-typefindfunctions.xml:
10509 * docs/plugins/inspect/plugin-video4linux.xml:
10510 * docs/plugins/inspect/plugin-videorate.xml:
10511 * docs/plugins/inspect/plugin-videoscale.xml:
10512 * docs/plugins/inspect/plugin-videotestsrc.xml:
10513 * docs/plugins/inspect/plugin-volume.xml:
10514 * docs/plugins/inspect/plugin-vorbis.xml:
10515 * docs/plugins/inspect/plugin-ximagesink.xml:
10516 * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
10517 * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
10519 2005-11-26 Edward Hervey <edward@fluendo.com>
10521 * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
10522 Properly return GstFlowReturn from gst_pad_push in chain functions.
10524 2005-11-25 Michael Smith <msmith@fluendo.com>
10526 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
10527 (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
10528 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
10529 (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
10530 Handle various conditions better when we don't understand a stream.
10531 Removes a heap of CRITICALs on ogg streams containing unknown data.
10533 2005-11-24 Andy Wingo <wingo@pobox.com>
10535 * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
10538 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10540 * configure.ac: back to HEAD
10542 === release 0.9.6 ===
10544 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10547 releasing 0.9.6, "White Eight"
10549 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10551 * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
10552 * docs/plugins/inspect/plugin-sine.xml:
10553 remove sinesrc some more
10555 2005-11-23 Wim Taymans <wim@fluendo.com>
10557 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
10558 If we are reading too slowly, jump forward in the ringbuffer
10559 instead of blocking.
10561 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
10563 * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
10564 (gst_visual_chain):
10565 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
10566 * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
10567 (gst_videorate_chain):
10568 * gst/videotestsrc/gstvideotestsrc.c:
10569 (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
10570 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
10571 (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
10572 (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
10573 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10574 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10575 Updates for API changes
10577 2005-11-23 Wim Taymans <wim@fluendo.com>
10579 * gst-libs/gst/audio/gstbaseaudiosink.c:
10580 (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
10581 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10582 Fix for calibration API change.
10584 2005-11-23 Michael Smith <msmith@fluendo.com>
10586 * gst-libs/gst/audio/multichannel.c:
10587 (gst_audio_get_channel_positions),
10588 (gst_audio_set_channel_positions),
10589 (gst_audio_set_structure_channel_positions_list),
10590 (gst_audio_fixate_channel_positions):
10591 Use gst_value_array_*() functions on value arrays, not
10592 gst_value_list_*().
10594 2005-11-23 Edward Hervey <edward@fluendo.com>
10597 eheh, sinesrc is gone. Replacing sample srcfile by existing one.
10600 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10602 * check/Makefile.am:
10603 * check/elements/videotestsrc.c: (setup_videotestsrc),
10604 (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
10606 add a test for videotestsrc
10608 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10610 * gst/sine/.cvsignore:
10611 * gst/sine/Makefile.am:
10612 * gst/sine/gstsinesrc.c:
10613 * gst/sine/gstsinesrc.h:
10614 * gst/sine/sinesrc.vcproj:
10615 and remove sinesrc from the repository. Closes #321446
10617 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10620 * gst-plugins-base.spec.in:
10621 remove sinesrc from the build
10623 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10625 * check/Makefile.am:
10626 * check/elements/audiotestsrc.c: (setup_audiotestsrc),
10627 (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
10629 add a test for audiotestsrc, testing all waves. Even seems
10630 leak-free at first glance, nice job Stefan
10632 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
10648 Translation string updates
10650 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10651 (gst_v4lsrc_set_caps):
10652 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10653 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10654 * sys/v4l/v4lsrc_calls.h:
10655 Improve v4lsrc, by making it work again.
10657 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
10659 * ext/libvisual/visual.c: (gst_visual_chain):
10660 Fix the fps calculations.
10662 * gst/ffmpegcolorspace/avcodec.h:
10663 Move structure element for clarity
10665 * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
10666 * gst-libs/gst/interfaces/tunernorm.h:
10667 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
10668 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
10669 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
10670 (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
10671 (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
10672 (gst_v4lmjpegsrc_getcaps):
10673 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10674 (gst_v4lsrc_set_caps):
10675 * sys/v4l/gstv4lsrc.h:
10676 * sys/v4l/v4l_calls.c: (gst_v4l_open):
10677 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10678 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10679 * sys/v4l/v4lsrc_calls.h:
10680 Fractional framerates...
10682 2005-11-22 Wim Taymans <wim@fluendo.com>
10684 * gst-libs/gst/audio/gstbaseaudiosink.c:
10685 (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
10686 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10687 And we provide a clock by default, of course...
10689 2005-11-22 Wim Taymans <wim@fluendo.com>
10691 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
10692 This clock can be slaved to a master clock now.
10694 * gst-libs/gst/audio/gstbaseaudiosink.c:
10695 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10696 (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
10697 (gst_base_audio_sink_set_clock),
10698 (gst_base_audio_sink_set_property),
10699 (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
10700 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10701 * gst-libs/gst/audio/gstbaseaudiosink.h:
10702 Handle slaving the internal clock to the clock selected in the
10704 Add property to make the basesink not provide a clock.
10706 * gst-libs/gst/rtp/gstbasertpdepayload.c:
10707 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
10708 (gst_base_rtp_depayload_wait):
10709 * gst-libs/gst/rtp/gstbasertpdepayload.h:
10710 We can use the clock in GstElement, no need to store it ourselves.
10712 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
10714 * docs/libs/tmpl/gstaudio.sgml:
10716 * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
10717 (gst_paranoia_endian_get_type):
10718 * ext/theora/theoraenc.c: (gst_border_mode_get_type):
10719 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
10720 * gst/audiotestsrc/gstaudiotestsrc.c:
10721 (gst_audiostestsrc_wave_get_type):
10722 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
10723 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
10724 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
10725 (gst_sync_method_get_type), (gst_unit_type_get_type),
10726 (gst_client_status_get_type), (gst_multifdsink_class_init),
10727 (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
10728 (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
10729 (gst_multifdsink_get_property):
10730 * gst/tcp/gstmultifdsink.h:
10731 * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
10732 * gst/videotestsrc/gstvideotestsrc.c:
10733 (gst_videotestsrc_pattern_get_type):
10734 remove deprecated properties
10735 fix up enums to correctly have short lowercase dashed nicks
10737 2005-11-22 Michael Smith <msmith@fluendo.com>
10739 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10740 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10743 2005-11-22 Michael Smith <msmith@fluendo.com>
10745 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10746 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10747 Use utility method for scaling clocktime for fractional framerates.
10749 2005-11-22 Jan Schmidt <thaytan@mad.scientist.com>
10751 * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
10752 (gst_visual_chain):
10753 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
10754 * ext/theora/theoradec.c: (theora_handle_type_packet):
10755 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
10756 (theora_enc_chain):
10757 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10758 * gst-libs/gst/video/video.c: (gst_video_frame_rate):
10759 * gst-libs/gst/video/video.h:
10760 * gst/ffmpegcolorspace/avcodec.h:
10761 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10762 (gst_ffmpeg_caps_to_pixfmt):
10763 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10764 (gst_ffmpegcsp_set_caps):
10765 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
10766 (gst_videorate_setcaps), (gst_videorate_blank_data),
10767 (gst_videorate_chain):
10768 * gst/videotestsrc/gstvideotestsrc.c:
10769 (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
10770 (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
10771 (gst_videotestsrc_event), (gst_videotestsrc_create):
10772 * gst/videotestsrc/gstvideotestsrc.h:
10773 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
10774 (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
10775 (gst_ximagesink_get_times), (gst_ximagesink_init):
10776 * sys/ximage/ximagesink.h:
10777 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
10778 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
10779 (gst_xvimagesink_get_times), (gst_xvimagesink_init):
10780 * sys/xvimage/xvimagesink.h:
10781 Convert elements to use fractions for their framerate.
10782 V4L elements to come later tonight.
10784 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
10786 * gst-libs/gst/audio/audio.c:
10787 * gst-libs/gst/audio/audio.h:
10788 remove some deprecated functions
10790 2005-11-22 Andy Wingo <wingo@pobox.com>
10792 * Update for gst_tag_setter API changes.
10794 2005-11-22 Andy Wingo <wingo@pobox.com>
10796 * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
10797 (gst_ogg_demux_perform_seek):
10798 * ext/theora/theoradec.c (theora_dec_sink_event):
10799 * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
10802 2005-11-22 Wim Taymans <wim@fluendo.com>
10804 * examples/seeking/seek.c: (main):
10805 Give higher priority to bus signals than the gtk events
10806 to fix a race condition in the segment looping.
10808 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
10810 * ext/theora/Makefile.am:
10811 * ext/vorbis/Makefile.am:
10812 * gst-libs/gst/tag/Makefile.am:
10813 * gst-plugins-base.spec.in:
10814 Rename libgsttagedit to libgsttag (#322117).
10816 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
10818 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
10819 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10820 Call gst_x_overlay_prepare_xwindow_id() to give applications
10821 a final chance to set their own xwindow id before the video
10822 sink creates its own window.
10824 2005-11-22 Julien MOUTTE <julien@moutte.net>
10826 * sys/xvimage/xvimagesink.c:
10827 (gst_xvimagesink_navigation_send_event): Handle navigation
10828 events correcly with borders if applicable.
10830 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
10832 Patch by: Luca Ognibene
10834 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10835 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
10836 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10837 (gst_ffmpegcsp_caps_remove_format_info):
10838 * gst/ffmpegcolorspace/imgconvert.c:
10839 * gst/ffmpegcolorspace/imgconvert_template.h:
10840 Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
10841 #318353); use gst_structure_has_name().
10843 2005-11-22 Julien MOUTTE <julien@moutte.net>
10845 * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
10846 (gst_ximagesink_class_init): Add debug macros on functions.
10847 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
10848 (gst_xvimagesink_xwindow_draw_borders),
10849 (gst_xvimagesink_xvimage_put),
10850 (gst_xvimagesink_xwindow_update_geometry),
10851 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
10852 (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
10853 (gst_xvimagesink_xcontext_clear),
10854 (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
10855 (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
10856 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
10857 (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
10858 (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
10859 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
10860 * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
10861 expose while being PAUSED, out of data flow navigation events, etc..
10863 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
10865 * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10866 * gst-libs/gst/audio/audio.h:
10867 fix prototype - wondering why the test worked regardless
10869 2005-11-21 Thomas Vander Stichele <thomas at apestaart dot org>
10871 * check/Makefile.am:
10872 * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10873 * gst-libs/gst/audio/audio.h:
10874 add a method that returns a proper GstClockTime
10876 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10878 * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
10879 (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
10880 * gst-libs/gst/interfaces/xoverlay.h:
10881 Remove everything having to do with the desired size; add
10882 gst_x_overlay_prepare_xwindow_id() function; remove the
10883 'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
10884 post a message on the bus instead (#321816).
10886 * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
10887 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
10888 (gst_xvimagesink_xoverlay_init):
10889 Remove desired size stuff (#321816).
10891 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10893 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
10894 (mpeg2_sys_type_find), (mpeg1_sys_type_find),
10895 (mpeg_video_type_find), (mpeg_video_stream_type_find):
10896 Terminate vararg functions with NULL instead of 0 to
10899 2005-11-21 Andy Wingo <wingo@pobox.com>
10901 patch by: Sebastien Cote <sebas642@yahoo.ca>
10903 * gst-libs/gst/rtp/gstrtpbuffer.h:
10904 * gst-libs/gst/rtp/gstrtpbuffer.c
10905 (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
10907 2005-11-21 Andy Wingo <wingo@pobox.com>
10909 * gst/playback/gstplaybin.c (gen_audio_element)
10910 (gen_video_element): Use the new MISSING_PLUGIN core error
10911 category. Closes #320060.
10913 * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event):
10914 * gst/videorate/gstvideorate.c (gst_videorate_event):
10915 * ext/theora/theoradec.c (theora_dec_sink_event):
10916 * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
10919 * gst/subparse/gstsubparse.c (gst_subparse_src_event):
10920 * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
10921 stream lock changes.
10923 2005-11-21 Wim Taymans <wim@fluendo.com>
10925 * gst-libs/gst/audio/gstbaseaudiosink.c:
10926 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10927 (gst_base_audio_sink_provide_clock),
10928 (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
10929 (gst_base_audio_sink_change_state):
10930 * gst/audioresample/gstaudioresample.c:
10931 Segment update fix.
10933 2005-11-21 Andy Wingo <wingo@pobox.com>
10936 * *.c: Ran scripts/update-macros. Oh yes.
10938 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10940 * sys/ximage/Makefile.am:
10941 * sys/ximage/ximage.c:
10942 Rename ximage plugin to ximagesink (#321426) (Don't forget to
10943 remove your old libgstximage.* manually if necessary).
10945 2005-11-21 Michael Smith <msmith@fluendo.com>
10947 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
10948 Minimal fix for bug #320200: set the min/max bitrate in the correct
10949 units. A better fix would be to upgrade to the RATEMANAGE2
10950 interface, rather than using the deprecated interface used here, but
10951 that would require an update in our libvorbis dependency (to 1.1),
10952 which is probably undesirable.
10954 2005-11-21 Jan Schmidt <thaytan@mad.scientist.com>
10956 * ext/libvisual/visual.c: (get_buffer):
10957 * gst-libs/gst/audio/gstbaseaudiosrc.c:
10958 (gst_base_audio_src_fixate):
10959 * gst/audioconvert/gstaudioconvert.c:
10960 (gst_audio_convert_fixate_caps):
10961 * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
10962 * gst/audiotestsrc/gstaudiotestsrc.c:
10963 (gst_audiotestsrc_src_fixate):
10964 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
10965 * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
10966 * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
10967 * gst/videotestsrc/gstvideotestsrc.c:
10968 (gst_videotestsrc_src_fixate):
10969 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
10970 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
10971 Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
10975 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10977 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
10978 (gst_riff_create_iavs_caps):
10979 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
10980 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
10981 (gst_riff_parse_info):
10982 * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
10983 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
10984 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10985 Fixes for GST_FOURCC_FORMAT API change.
10987 2005-11-21 Andy Wingo <wingo@pobox.com>
10989 patch by: Alessandro Dessina <alessandro nnva org>
10991 * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
10992 * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
10993 (gst_ogg_parse_chain):
10994 * ext/theora/theoraenc.c (theora_set_header_on_caps):
10995 * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
10996 * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
10997 gst_value_list calls on arrays. Fixes #321962.
10999 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
11001 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
11002 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
11003 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
11004 * gst/adder/gstadder.c: (gst_adder_init),
11005 (gst_adder_request_new_pad), (gst_adder_collected),
11006 (gst_adder_change_state):
11007 Update for gst_collectpads_foo() to gst_collect_pads_foo()
11010 2005-11-21 Michael Smith <msmith@fluendo.com>
11012 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
11013 (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
11014 Properly handle pad_push return values.
11016 2005-11-20 Jan Schmidt <thaytan@mad.scientist.com>
11018 * gst-libs/gst/tag/Makefile.am:
11019 * gst-libs/gst/tag/gstvorbistag.c:
11020 (gst_tag_list_to_vorbiscomment_buffer):
11021 Remove obsolete vorbistag element and debug category.
11023 * gst/playback/gstplaybasebin.c: (check_queue):
11024 Don't divide by 0 when queue-threshold is 0.
11026 * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
11027 Don't modify an existing pixel-aspect-ratio if we fail to read
11030 2005-11-20 Wim Taymans <wim@fluendo.com>
11032 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
11033 (gst_vorbisenc_push_packet):
11034 GST_PAD_IS_USABLE is gone, use the return value of
11035 the push or pad_alloc_buffer instead.
11037 2005-11-18 Julien MOUTTE <julien@moutte.net>
11039 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
11040 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
11041 (gst_ximagesink_ximage_destroy),
11042 (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
11043 (gst_ximagesink_xwindow_new),
11044 (gst_ximagesink_xwindow_update_geometry),
11045 (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
11046 (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
11047 (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
11048 (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
11049 (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
11050 (gst_ximagesink_navigation_send_event),
11051 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
11052 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
11053 (gst_ximagesink_finalize), (gst_ximagesink_init),
11054 (gst_ximagesink_class_init):
11055 * sys/ximage/ximagesink.h: Refactoring of ximagesink.
11056 This new version brings correct software scaling, non flickering
11057 window while resizing, pixel aspect ratio handling, usage of
11058 hardware buffer pools, out of data flow event thread for
11059 navigation and handling of expose events even when being PAUSED,
11060 a new property to keep video aspect ratio when resizing, etc...
11062 2005-11-18 Julien MOUTTE <julien@moutte.net>
11064 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
11065 (gst_videoscale_fixate_caps): Introduce back caps fixate with
11068 2005-11-18 Edward Hervey <bilboed@dvdsrc.fluendo.com>
11070 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
11071 Unsetting IS_SINK flag from the fakesink, so decodebin
11072 never behaves as a sink.
11074 2005-11-17 Wim Taymans <wim@fluendo.com>
11076 * gst-libs/gst/audio/gstbaseaudiosrc.c:
11077 (gst_base_audio_src_change_state):
11078 Fix the audiosrc base class again, we did not unflush.
11080 2005-11-17 Julien MOUTTE <julien@moutte.net>
11082 * examples/seeking/seek.c: (make_dv_pipeline),
11083 (make_vorbis_theora_pipeline), (make_avi_pipeline),
11084 (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
11085 to ogg/vorbis/theora pipeline.
11087 2005-11-17 Wim Taymans <wim@fluendo.com>
11089 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
11090 (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
11091 (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
11092 Fix EOS on multiple streams.
11095 2005-11-16 Wim Taymans <wim@fluendo.com>
11097 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
11098 (gst_ogg_demux_perform_seek):
11099 Segment done must include stream time.
11101 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
11102 (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
11103 (gst_ogg_mux_change_state):
11104 Fix ogg muxer again.
11106 2005-11-16 Wim Taymans <wim@fluendo.com>
11108 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
11111 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
11113 * ext/libvisual/visual.c: (gst_visual_init):
11114 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
11115 * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
11116 (gst_ogg_parse_chain):
11117 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
11118 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
11119 * ext/theora/theoradec.c: (gst_theora_dec_init):
11120 * ext/theora/theoraenc.c: (gst_theora_enc_init):
11121 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
11122 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
11123 * gst/adder/gstadder.c: (gst_adder_class_init),
11124 (gst_adder_dispose):
11125 * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
11126 * gst/subparse/gstsubparse.c: (gst_subparse_init):
11127 * gst/videorate/gstvideorate.c: (gst_videorate_init):
11128 Fix a whole set of pad template leaks
11130 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
11132 * check/generic/states.c: (GST_START_TEST):
11133 fix the test so that it only checks for elements that are part of
11136 2005-11-16 Michael Smith <msmith@fluendo.com>
11138 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
11139 (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
11140 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11141 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11142 (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
11143 (gst_ogg_mux_change_state):
11144 Fix leaking collectpads.
11146 2005-11-16 Edward Hervey <edward@fluendo.com>
11148 * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
11149 (gst_videorate_event), (gst_videorate_chain):
11150 Handle segment seeks
11152 2005-11-16 Wim Taymans <wim@fluendo.com>
11154 * gst-libs/gst/audio/gstbaseaudiosink.c:
11155 (gst_base_audio_sink_provide_clock),
11156 (gst_base_audio_sink_change_state):
11157 Set ringbuffer to non-flushing when going to PAUSED, set to
11158 flushing again when going to READY.
11160 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
11161 (gst_ring_buffer_stop):
11162 Start in flushing mode by default.
11163 Don't set flushing in the _stop method, let the app call
11166 2005-11-16 Julien MOUTTE <julien@moutte.net>
11168 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
11169 * gst-libs/gst/video/videosink.h: Add helper function needed
11172 2005-11-16 Tim-Philipp Müller <tim at centricular dot net>
11174 * gst/videoscale/gstvideoscale.c:
11175 (gst_videoscale_handle_src_event):
11176 Don't leak reference to pad parent.
11178 2005-11-16 Wim Taymans <wim@fluendo.com>
11180 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
11181 Set ringbuffer to flushing when stopping so that we don't
11182 block on wait_segment anymore and livelock.
11184 2005-11-16 Wim Taymans <wim@fluendo.com>
11186 * examples/seeking/seek.c: (send_event), (do_seek),
11187 (loop_toggle_cb), (segment_done), (main):
11188 Added looping checkbox.
11190 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
11192 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
11193 (gst_ogg_demux_init):
11194 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
11195 (gst_vorbis_dec_init):
11196 revert unrefs, they don't pass make check
11198 2005-11-15 Johan Dahlin <johan@gnome.org>
11200 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
11201 (gst_ogg_demux_init), (gst_ogg_demux_finalize):
11202 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
11203 (gst_vorbis_dec_init):
11204 Fix pad template leaks.
11206 2005-11-15 Tim-Philipp Müller <tim at centricular dot net>
11208 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
11209 Make state change function thread safe.
11211 2005-11-15 Edward Hervey <edward@fluendo.com>
11213 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
11214 (gst_ogg_demux_class_init):
11215 Implement GstElement::send_event, so we can send seek events
11218 2005-11-14 Julien MOUTTE <julien@moutte.net>
11220 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
11221 Discovered how to take away flickering while resizing the
11222 window. Please don't put that in ximagesink, refactoring in
11225 2005-11-14 Michael Smith <msmith@fluendo.com>
11227 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
11228 (gst_multifdsink_render):
11229 Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
11231 2005-11-14 Tim-Philipp Müller <tim at centricular dot net>
11233 * gst/playback/gstplaybin.c: (gen_audio_element):
11234 Use autoaudiosink, it tends to be more widely available than
11237 2005-11-14 Andy Wingo <wingo@pobox.com>
11239 * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
11240 as well if it is available. Fixes #316442.
11242 2005-11-14 Michael Smith <msmith@fluendo.com>
11244 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
11245 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
11246 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11247 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11248 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
11249 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
11250 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
11251 (gst_vorbisenc_change_state):
11252 Fix a small memory leak in vorbisenc.
11253 Fix large memory leaks in oggmux, also fix lots of state change
11256 2005-11-14 Thomas Vander Stichele <thomas at apestaart dot org>
11258 * gst/videotestsrc/gstvideotestsrc.c:
11259 (gst_videotestsrc_class_init), (gst_videotestsrc_init),
11260 (gst_videotestsrc_src_fixate):
11261 move fixation to a fixate function
11262 remove negotiate function, basesrc's is good enough
11263 fixes a bug for check when using the element alone
11265 2005-11-13 Edward Hervey <edward@fluendo.com>
11267 * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
11268 (key_toggle_cb), (main):
11269 Added checkboxes for adding/removing the accurate and key_unit seek
11272 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
11274 * configure.ac: back to HEAD
11276 === release 0.9.5 ===
11278 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
11281 releasing 0.9.5, "No No Kia"
11283 2005-11-11 Edward Hervey <edward@fluendo.com>
11285 * examples/seeking/seek.c: (make_parselaunch_pipeline):
11286 Added parse-launch syntax seeking mode for the seeking example.
11287 This should help stress-test even more cases.
11288 Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
11290 2005-11-11 Tim-Philipp Müller <tim at centricular dot net>
11292 * sys/xvimage/xvimagesink.c:
11293 (gst_xvimagesink_navigation_send_event):
11294 Check whether peer pad exists before sending navigation events
11297 2005-11-11 Michael Smith <msmith@fluendo.com>
11299 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
11300 (gst_vorbisenc_buffer_from_packet):
11301 * ext/vorbis/vorbisenc.h:
11302 Set duration on encoded buffers. This allows oggmux's
11303 max_page_delay parameter to actually work.
11305 2005-11-11 Tim-Philipp Müller <tim at centricular dot net>
11307 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11308 (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
11309 (gst_ffmpegcsp_avpicture_fill):
11310 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11311 (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
11312 Make palettes work again (see #132341). Use our own macros
11315 2005-11-10 Andy Wingo <wingo@pobox.com>
11317 * gst/playback/gstplaybasebin.c (prepare_output): Fix format
11320 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
11322 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11323 (gst_ffmpegcsp_transform_caps):
11324 Prefer passthrough in transform_caps
11326 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
11328 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
11329 check for ALSA errors properly, instead of relying on ALSA's
11330 error strings to serve to the user.
11332 2005-11-10 Wim Taymans <wim@fluendo.com>
11334 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
11335 (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
11336 (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
11337 Modernise the seek code.
11339 2005-11-10 Michael Smith <msmith@fluendo.com>
11341 * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
11342 (setup_substreams), (set_active_source):
11343 Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
11344 trying to go to NULL if we failed to read a file.
11346 2005-11-10 Wim Taymans <wim@fluendo.com>
11348 * gst/audiotestsrc/gstaudiotestsrc.c:
11349 (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
11350 (gst_audiotestsrc_create):
11351 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
11352 (gst_sinesrc_get_times), (gst_sinesrc_create):
11353 * gst/videotestsrc/gstvideotestsrc.c:
11354 (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
11355 (gst_videotestsrc_create):
11356 The base class can now sync for us.
11358 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
11360 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
11361 a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
11362 name=source autoprobe=false autoprobe-fps=false copy-mode=1
11363 device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
11364 format=(fourcc)I420" ! xvimagesink
11366 2005-11-10 Tim-Philipp Müller <tim at centricular dot net>
11368 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
11369 (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
11370 (gst_sinesrc_newsegment):
11371 Send newsegment event in TIME format, set duration if
11372 num-buffers is set, fix duration querying.
11374 2005-11-10 Michael Smith <msmith@fluendo.com>
11376 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
11377 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11378 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11379 (gst_ogg_mux_collected):
11380 Fix EOS handling, partially. Now forwarding an EOS event once we have
11381 EOS on all pads works correctly. However, we still don't properly set
11382 EOS on the actual ogg stream pages.
11384 2005-11-09 Tim-Philipp Müller <tim at centricular dot net>
11386 * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
11387 Set elements to NULL state before disposing of them.
11389 2005-11-08 Sebastien Cote <sebas642 at yahoo dot ca>
11391 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
11393 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11394 (gst_base_rtp_depayload_init),
11395 (gst_base_rtp_depayload_set_gst_timestamp):
11396 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11397 We need to send a newsegment event for each instance, not
11398 just for the first instance of this class (get rid of
11399 static variable in function). (#321011).
11401 2005-11-08 Michael Smith <msmith@fluendo.com>
11403 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
11404 (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
11405 (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
11406 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
11407 Forward port rewrite of muxing strategy to 0.9 version of oggmux.
11408 This makes us mux things correctly according to the ogg muxing
11409 rules. Still not handling EOS correctly right now, though.
11411 2005-11-08 Tim-Philipp Müller <tim at centricular dot net>
11413 * gst/audioconvert/gstaudioconvert.c:
11416 2005-11-08 Tim-Philipp Müller <tim at centricular dot net>
11418 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
11419 (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
11420 Initialise segment_stop to GST_CLOCK_TIME_NONE when
11421 creating a new chain; should fix live streaming. Also
11422 add more debug output and fix a typo.
11424 2005-11-08 Brian Cameron <brian dot cameron at sun dot com>
11426 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
11428 * gst/volume/gstvolume.c: (volume_set_caps):
11429 Fix compilation on Solaris with Forte. (#320923)
11431 2005-11-08 Wim Taymans <wim@fluendo.com>
11433 * gst-libs/gst/audio/gstbaseaudiosink.c:
11434 (gst_base_audio_sink_render):
11435 No need to do a typecheck.
11437 2005-11-07 Tim-Philipp Müller <tim at centricular dot net>
11439 * ext/alsa/gstalsa.h:
11440 We register a debug category, so let's use it.
11442 2005-11-04 Zeeshan Ali <zeenix@gmail.com>
11444 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11445 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
11446 Fixed a small problem.
11448 2005-11-04 Wim Taymans <wim@fluendo.com>
11450 * examples/seeking/Makefile.am:
11451 * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
11452 (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
11453 (make_playerbin_pipeline), (format_value), (update_scale),
11454 (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
11455 (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
11456 (print_usage), (main):
11457 Added app for playback speed testing.
11459 * examples/seeking/seek.c: (dynamic_link),
11460 (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
11461 (make_mpeg_pipeline), (do_seek), (set_update_scale),
11462 (message_received), (main):
11463 Updated seek example.
11465 2005-11-04 Zeeshan Ali <zeenix@gmail.com>
11467 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11468 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
11469 (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
11470 (gst_base_rtp_depayload_set_clock):
11471 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11472 Don't sleep on the bench (system clock) when you have a nice
11473 comfortable bed (Gstreamer clock) to sleep on.
11475 2005-11-03 Wim Taymans <wim@fluendo.com>
11477 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11478 (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
11479 (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
11480 Handle the case where a pad_block failed.
11482 2005-11-02 Sebastien Cote <sebas642@yahoo.ca>
11484 reviewed by: Zeeshan Ali <zeenix@gmail.com>
11486 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11487 (gst_base_rtp_depayload_add_to_queue),
11488 (gst_base_rtp_depayload_push),
11489 (gst_base_rtp_depayload_set_gst_timestamp),
11490 (gst_base_rtp_depayload_queue_release):
11491 Fixes some bugs in the depayloader's queuing/de-queueing code.
11493 2005-10-31 Michael Smith <msmith@fluendo.com>
11495 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
11496 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
11497 (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
11498 Patch from Alessandro Decina <alessandro@nnva.org>.
11499 Make oggdemux only find the final time in a chain, not per-pad,
11500 since the per-pad information can be very expensive to locate, and
11501 it isn't used anywhere. This makes reading a file containing
11502 OggSkeleton reasonably fast.
11503 Also, make chain finding work when there are logical bitstreams that
11504 can't be decoded. Fixes #319110.
11506 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
11508 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11509 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
11510 (gst_base_rtp_depayload_chain),
11511 (gst_base_rtp_depayload_add_to_queue),
11512 (gst_base_rtp_depayload_push),
11513 (gst_base_rtp_depayload_set_gst_timestamp),
11514 (gst_base_rtp_depayload_queue_release),
11515 (gst_base_rtp_depayload_start_thread),
11516 (gst_base_rtp_depayload_set_property),
11517 (gst_base_rtp_depayload_get_property):
11518 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11519 Some random fixes, to fullfill the desires of thomas.
11521 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
11523 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11524 (gst_base_rtp_depayload_add_to_queue),
11525 (gst_base_rtp_depayload_push):
11526 Fixed the queueing algorithm.
11528 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
11530 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11531 (gst_base_rtp_depayload_push):
11534 2005-10-31 Wim Taymans <wim@fluendo.com>
11536 * gst-libs/gst/audio/gstringbuffer.h:
11539 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11540 (gst_ffmpeg_caps_to_pixfmt):
11541 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11542 (gst_ffmpegcsp_set_caps):
11543 Some more comments.
11544 Handle missing required caps fields better.
11546 2005-10-31 Wim Taymans <wim@fluendo.com>
11548 * gst-libs/gst/audio/gstbaseaudiosink.c:
11549 (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
11550 (gst_base_audio_sink_render):
11551 * gst-libs/gst/audio/gstringbuffer.c:
11552 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
11553 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
11554 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
11555 (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
11556 (gst_ring_buffer_read):
11557 * gst-libs/gst/audio/gstringbuffer.h:
11558 Add flushing mode to the ringbuffer so that it in all cases does
11559 not try to handle more audio. This makes sure it does not try to
11560 block anymore when flushing and fixes a livelock.
11562 2005-10-29 Tim-Philipp Müller <tim at centricular dot net>
11564 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
11565 (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
11566 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
11567 Explicitly check for -1 values before doing a conversion
11568 and always map them to -1. (#315545)
11570 2005-10-28 Thomas Vander Stichele <thomas at apestaart dot org>
11572 * gst/playback/gstplaybin.c: (gen_video_element):
11573 first try autovideosink, then xvimagesink, then error out
11575 add translatable file
11590 update translations
11592 2005-10-27 Philippe Khalaf <burger at speedy dot org>
11594 * gst-libs/gst/rtp/gstbasedepayload.c:
11595 * gst-libs/gst/rtp/gstbasedepayload.h:
11598 2005-10-27 Tim-Philipp Müller <tim at centricular dot net>
11600 * gst/playback/.cvsignore:
11601 * gst/playback/decodetest.c:
11602 * gst/playback/test3.c:
11603 Port these two tests as well.
11605 2005-10-27 Wim Taymans <wim@fluendo.com>
11607 * ext/theora/theoradec.c: (theora_dec_src_query),
11608 (theora_dec_sink_event):
11609 * ext/theora/theoraenc.c: (theora_enc_sink_event),
11610 (theora_enc_change_state):
11611 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
11612 (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
11613 Take proper locks when handling events.
11615 2005-10-27 Wim Taymans <wim@fluendo.com>
11617 * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
11618 (gst_adder_change_state):
11619 Fix timestamps and fix deadlock when stopping the collectpads.
11621 2005-10-27 Zeeshan Ali <zeenix@gmail.com>
11623 * gst-libs/gst/rtp/gstrtpbuffer.h:
11624 Declaring the payload types as strings too so that they can be used
11625 in the padtemplate inialization.
11627 2005-10-26 Andre Magalhaes <andrunko@gmail.com>
11629 reviewed by: Zeeshan Ali <zeenix@gmail.com>
11631 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11632 (gst_base_rtp_depayload_class_init):
11633 Fixes a small but nasty bug. The derived elements no longer segfaults
11636 2005-10-26 Michael Smith <msmith@fluendo.com>
11638 * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
11639 When clearing an audioconvert context, set tmpbufsize to zero, so
11640 we'll allocate it again later if required.
11641 This fixes audioconvert re-negotiating formats, which previously
11642 segfaulted with a NULL destination buffer.
11644 2005-10-26 Zeeshan Ali <zeenix@gmail.com>
11646 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11647 (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
11648 (gst_base_rtp_depayload_set_gst_timestamp),
11649 (gst_base_rtp_depayload_queue_release):
11650 Fixed a smalll memleak.
11652 2005-10-26 Zeeshan Ali <zeenix@gmail.com>
11653 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11654 (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
11655 (gst_base_rtp_depayload_finalize),
11656 (gst_base_rtp_depayload_setcaps),
11657 (gst_base_rtp_depayload_add_to_queue),
11658 (gst_base_rtp_depayload_push),
11659 (gst_base_rtp_depayload_set_gst_timestamp),
11660 (gst_base_rtp_depayload_queue_release),
11661 (gst_base_rtp_depayload_thread),
11662 (gst_base_rtp_depayload_change_state):
11663 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11664 Changed the C++ comments to C comments
11666 2005-10-26 Tim-Philipp Müller <tim at centricular dot net>
11668 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
11669 * gst/tcp/gsttcpclientsrc.h:
11670 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
11671 * gst/tcp/gsttcpserversrc.h:
11672 Remove unused 'curoffset' structure member.
11674 2005-10-25 Zeeshan Ali <zeenix@gmail.com>
11676 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11677 (gst_base_rtp_depayload_base_init),
11678 (gst_base_rtp_depayload_finalize):
11679 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11680 * gst-libs/gst/rtp/gstbasertppayload.h:
11681 The pad-template on the sinkpad should be set by the derived classes.
11682 Also added some useful macros.
11684 2005-10-24 Wim Taymans <wim@fluendo.com>
11686 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
11687 Correctly flush decoder samples even if we could not
11688 copy them to an output buffer. Fixes #319618.
11690 2005-10-24 Julien MOUTTE <julien@moutte.net>
11692 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
11693 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
11694 the caps against our xcontext caps.
11696 2005-10-24 Wim Taymans <wim@fluendo.com>
11698 * gst-libs/gst/audio/gstbaseaudiosink.c:
11699 (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11701 Use sync property from baseclass to disable sync.
11703 2005-10-24 Wim Taymans <wim@fluendo.com>
11705 * gst-libs/gst/audio/gstbaseaudiosink.c:
11706 (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11707 Buffers with no timestamps get aligned with previous buffers or
11708 on underrun, played ASAP.
11710 2005-10-24 Julien MOUTTE <julien@moutte.net>
11712 * gst-libs/gst/video/video.h:
11713 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11714 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
11715 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
11716 here comes my change on caps for framerate and geometry range.
11717 We are now accepting 1 to MAXINT for width and height, and from
11718 0.0 to MAXDOUBLE for framerate. That allows duration less png frames
11719 to be blended correctly in videomixer.
11721 2005-10-24 Thomas Vander Stichele <thomas at apestaart dot org>
11726 === release 0.9.4 ===
11728 2005-10-23 Thomas Vander Stichele <thomas at apestaart dot org>
11733 releasing 0.9.4, "Velociraptor"
11735 2005-10-23 Thomas Vander Stichele <thomas at apestaart dot org>
11737 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
11741 2005-10-21 Wim Taymans <wim@fluendo.com>
11743 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11744 (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
11745 (pad_blocked), (close_pad_link), (new_pad):
11746 Don't try to remove elements twice.
11748 2005-10-21 Wim Taymans <wim@fluendo.com>
11750 * ext/theora/theoradec.c: (theora_dec_src_query),
11751 (theora_dec_sink_event):
11752 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11753 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11754 (vorbis_handle_data_packet):
11755 * ext/vorbis/vorbisdec.h:
11758 * gst-libs/gst/audio/gstbaseaudiosink.c:
11759 (gst_base_audio_sink_render):
11760 Don't try to sync on buffers without a timestamp.
11762 2005-10-21 Wim Taymans <wim@fluendo.com>
11764 * ext/theora/theoradec.c: (theora_dec_src_query),
11765 (theora_dec_sink_event):
11766 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11767 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11768 (vorbis_handle_data_packet):
11769 * ext/vorbis/vorbisdec.h:
11772 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
11774 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
11775 (gst_vorbisenc_src_query):
11776 Implement position and duration queries.
11778 * gst/playback/test3.c: (update_scale), (main):
11779 Fix for async state changes and print nicer output.
11781 2005-10-20 Wim Taymans <wim@fluendo.com>
11783 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11784 (dump_element_stats), (main):
11785 * gst/playback/test6.c: (main):
11788 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
11790 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11791 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11792 Don't use functions for position queries when handling
11795 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
11797 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11798 (vorbis_handle_data_packet), (vorbis_dec_chain),
11799 (vorbis_dec_change_state):
11800 * ext/vorbis/vorbisdec.h:
11801 Vorbis streams can be embedded in other container formats
11802 than ogg, container formats where the demuxer might set
11803 timestamps on encoded vorbis buffers instead of those silly
11804 granulepos thingies. In short: make vorbisdec handle
11805 timestamps on incoming buffers as well.
11807 2005-10-20 Wim Taymans <wim@fluendo.com>
11809 * gst/playback/gstplaybasebin.c: (group_destroy),
11810 (gst_play_base_bin_change_state):
11812 Handle case where playbasebin is now ASYNC because
11815 2005-10-19 Tim-Philipp Müller <tim at centricular dot net>
11817 * gst/audioconvert/Makefile.am:
11818 * gst/audioconvert/bufferframesconvert.c:
11819 * gst/audioconvert/plugin.c: (plugin_init):
11820 * gst/audioconvert/plugin.h:
11821 And bye bye buffer-frames-convert
11823 2005-10-19 Wim Taymans <wim@fluendo.com>
11825 * check/elements/audioconvert.c:
11826 * docs/libs/tmpl/gstaudio.sgml:
11827 * docs/libs/tmpl/gstcolorbalance.sgml:
11828 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11829 (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
11830 * ext/vorbis/vorbisenc.c: (raw_caps_factory):
11831 * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
11832 * gst-libs/gst/audio/audio.h:
11833 * gst/audioconvert/audioconvert.h:
11834 * gst/audioconvert/gstaudioconvert.c:
11835 (gst_audio_convert_parse_caps):
11836 * gst/volume/gstvolume.c:
11837 Bye bye buffer-frames.
11839 2005-10-19 Wim Taymans <wim@fluendo.com>
11841 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
11842 (query_positions_elems), (query_positions_pads), (update_scale),
11843 (do_seek), (set_update_scale), (message_received), (main):
11844 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
11845 (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
11846 (gst_ogg_demux_loop):
11847 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
11848 * ext/theora/theoradec.c: (theora_dec_src_query),
11849 (theora_dec_sink_event):
11850 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11851 (vorbis_dec_sink_event), (vorbis_handle_data_packet):
11852 * gst/adder/gstadder.c: (gst_adder_query):
11853 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11854 * gst/playback/test3.c: (update_scale):
11855 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11856 (dump_element_stats), (main):
11857 * gst/playback/test6.c: (main):
11858 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11861 2005-10-19 Tim-Philipp Müller <tim at centricular dot net>
11863 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
11864 (xml_check_first_element), (xml_type_find), (smil_type_find),
11866 Add typefinding for SMIL and for generic XML. Based on patch by
11867 Akos Maroy (#308663).
11869 2005-10-18 Wim Taymans <wim@fluendo.com>
11871 * gst/playback/Makefile.am:
11872 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11873 (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
11874 (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
11875 (try_to_link_1), (new_pad), (no_more_pads), (type_found),
11876 (gst_decode_bin_change_state):
11877 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
11878 (gst_play_bin_send_event_to_sink):
11879 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11880 (dump_element_stats), (main):
11881 * gst/playback/test6.c: (main):
11882 Make playbin async, it'll commit state to paused when all streams
11885 Added test6.c to show async behaviour.
11887 2005-10-18 Wim Taymans <wim@fluendo.com>
11889 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
11890 (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
11891 Fix for segment-start/stop API change.
11893 2005-10-18 Wim Taymans <wim@fluendo.com>
11895 * check/Makefile.am:
11896 * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
11898 Add future test for clock selection.
11900 2005-10-18 Wim Taymans <wim@fluendo.com>
11902 * ext/alsa/gstalsasink.c: (gst_alsasink_init),
11903 (gst_alsasink_close):
11904 Set handle to NULL.
11906 * gst-libs/gst/audio/gstringbuffer.c:
11907 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
11908 (gst_ring_buffer_acquire), (gst_ring_buffer_release),
11909 (gst_ring_buffer_start), (gst_ring_buffer_pause),
11910 (gst_ring_buffer_stop), (gst_ring_buffer_commit),
11911 (gst_ring_buffer_read):
11914 2005-10-17 Stefan Kost <ensonic@users.sf.net>
11916 * gst/audiotestsrc/Makefile.am:
11917 * gst/sine/Makefile.am:
11918 * gst/volume/Makefile.am:
11919 fix broken build of controllerized plugins
11921 2005-10-17 Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
11923 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
11925 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
11926 (gst_riff_create_video_template_caps):
11927 Add support for Indeo-3 (IV32).
11929 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
11934 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
11936 * gst-libs/gst/video/video.c: (gst_video_get_size):
11937 * gst/audiotestsrc/gstaudiotestsrc.c:
11940 2005-10-17 Andy Wingo <wingo@pobox.com>
11942 * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
11943 with the collectpads change.
11944 (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
11946 * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
11948 * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
11950 * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
11951 alloc_buffer flow return to callers.
11952 (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
11953 change. Fix some memleaks in theoraenc.
11955 * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
11956 in strange circumstance.
11958 2005-10-17 Julien MOUTTE <julien@moutte.net>
11960 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11961 (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
11962 from caps, let's use the caps...
11964 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
11967 put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
11969 2005-10-16 Thomas Vander Stichele <thomas at apestaart dot org>
11971 * gst-libs/gst/interfaces/Makefile.am:
11974 2005-10-16 Andy Wingo <wingo@pobox.com>
11976 * gst/playback/gstdecodebin.c
11977 (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
11979 (try_to_link_1): Increase kraziness level.
11981 2005-10-16 Thomas Vander Stichele <thomas at apestaart dot org>
11984 restructure like the core one
11985 * gst-libs/gst/audio/Makefile.am:
11986 * gst-libs/gst/interfaces/Makefile.am:
11987 * gst-libs/gst/net/Makefile.am:
11988 * gst-libs/gst/riff/Makefile.am:
11989 * gst-libs/gst/rtp/Makefile.am:
11990 * gst-libs/gst/tag/Makefile.am:
11991 * gst-libs/gst/video/Makefile.am:
11992 use correct linker flags, now the libs are properly versioned
11993 * check/elements/audioconvert.c: (verify_convert):
11994 * ext/alsa/gstalsaplugin.c:
11995 * ext/cdparanoia/gstcdparanoia.c:
11996 * ext/gnomevfs/gstgnomevfs.c:
11997 * ext/libvisual/visual.c:
11998 * ext/ogg/gstogg.c:
11999 * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
12000 * ext/theora/theora.c:
12001 * ext/vorbis/vorbis.c:
12002 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
12003 * gst-libs/gst/tag/gsttagediting.c:
12004 * gst-libs/gst/video/video.c:
12005 * gst/adder/gstadder.c:
12006 * gst/audioconvert/plugin.c:
12007 * gst/audiorate/gstaudiorate.c:
12008 * gst/audioresample/gstaudioresample.c:
12009 * gst/audioresample/resample_ref.c: (resample_scale_ref):
12010 * gst/audioscale/gstaudioscale.c:
12011 * gst/audioscale/resample.c:
12012 * gst/audiotestsrc/gstaudiotestsrc.c:
12013 * gst/ffmpegcolorspace/gstffmpeg.c:
12014 * gst/playback/gstdecodebin.c: (close_pad_link):
12015 * gst/playback/gstplaybin.c: (gen_video_element),
12016 (gen_audio_element):
12017 * gst/sine/gstsinesrc.c:
12018 * gst/subparse/gstsubparse.c:
12019 * gst/tags/gsttagediting.c:
12020 * gst/tcp/gsttcpplugin.c:
12021 * gst/typefind/gsttypefindfunctions.c:
12022 * gst/videorate/gstvideorate.c:
12023 * gst/videoscale/gstvideoscale.c:
12024 * gst/videotestsrc/gstvideotestsrc.c:
12025 * gst/volume/gstvolume.c:
12026 * sys/v4l/gstv4l.c:
12027 * sys/ximage/ximage.c:
12028 * sys/xvimage/xvimagesink.c:
12031 2005-10-13 Tim-Philipp Müller <tim at centricular dot net>
12033 * ext/vorbis/vorbisenc.c:
12034 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
12035 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
12036 (gst_tag_to_vorbis_comments):
12037 Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
12039 2005-10-13 Stefan Kost <ensonic@users.sf.net>
12041 * examples/stats/mp2ogg.c:
12042 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12045 2005-10-13 Michael Smith <msmith@fluendo.com>
12047 * ext/ogg/gstoggmux.c:
12048 Use magic glib macros to define constants as 64 bit, to ensure
12049 appropriate vararg passing.
12051 2005-10-13 Michael Smith <msmith@fluendo.com>
12053 * ext/ogg/gstoggmux.c:
12054 * gst/audioconvert/audioconvert.c: (float):
12055 Don't use LL suffix, as it's not portable, and neither of these
12056 uses required it anyway.
12058 2005-10-12 Stefan Kost <ensonic@users.sf.net>
12060 * examples/indexing/indexmpeg.c: (main):
12061 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
12062 (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
12063 (cdparanoia_convert), (cdparanoia_query):
12064 * ext/cdparanoia/gstcdparanoia.h:
12065 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
12066 (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
12067 (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
12068 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
12069 * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
12070 * gst/playback/gststreamselector.c: (gst_stream_selector_init):
12071 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
12072 (gst_multifdsink_render), (gst_multifdsink_start),
12073 (gst_multifdsink_stop):
12074 * gst/tcp/gstmultifdsink.h:
12075 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
12076 (gst_tcpclientsink_render), (gst_tcpclientsink_start),
12077 (gst_tcpclientsink_stop):
12078 * gst/tcp/gsttcpclientsink.h:
12079 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
12080 (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
12081 (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
12082 * gst/tcp/gsttcpclientsrc.h:
12083 * gst/tcp/gsttcpserversink.h:
12084 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
12085 (gst_tcpserversrc_create), (gst_tcpserversrc_start),
12086 (gst_tcpserversrc_stop):
12087 * gst/tcp/gsttcpserversrc.h:
12088 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
12089 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
12090 * sys/ximage/ximagesink.c: (gst_ximagesink_init):
12091 renamed GST_FLAGS macros to GST_OBJECT_FLAGS
12092 moved bitshift from macro to enum definition
12094 2005-10-12 Wim Taymans <wim@fluendo.com>
12096 * examples/seeking/Makefile.am:
12099 2005-10-12 Wim Taymans <wim@fluendo.com>
12101 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12102 (gst_ring_buffer_read), (gst_ring_buffer_clear):
12103 Don't assert on normal stuff.
12105 * gst/playback/gstplaybin.c: (do_playbin_seek):
12108 2005-10-12 Wim Taymans <wim@fluendo.com>
12110 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12111 * examples/seeking/Makefile.am:
12112 * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
12113 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
12114 (do_seek), (set_update_scale), (message_received), (main):
12115 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12116 (gst_ring_buffer_read), (gst_ring_buffer_clear):
12117 Update for _get_state() API change.
12119 2005-10-11 Wim Taymans <wim@fluendo.com>
12121 * gst-libs/gst/audio/gstbaseaudiosink.c:
12122 (gst_base_audio_sink_render):
12123 * gst-libs/gst/audio/gstbaseaudiosrc.c:
12124 (gst_base_audio_src_create):
12125 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12126 (gst_ring_buffer_read):
12128 Commit and read from ringbuffer in samples rather than bytes.
12130 2005-10-11 Wim Taymans <wim@fluendo.com>
12132 * gst-libs/gst/audio/gstbaseaudiosink.c:
12133 (gst_base_audio_sink_render):
12134 Respect segment rate and accum when scheduling samples.
12136 2005-10-11 Julien MOUTTE <julien@moutte.net>
12138 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
12139 (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
12140 EOS correctly, that needs more work.
12142 2005-10-11 Wim Taymans <wim@fluendo.com>
12144 * check/generic/states.c: (GST_START_TEST):
12145 remove old property.
12147 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
12148 (gst_ogg_demux_perform_seek):
12149 * ext/theora/theoradec.c: (theora_dec_sink_event):
12150 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
12151 (vorbis_handle_data_packet):
12152 * gst-libs/gst/rtp/gstbasertpdepayload.c:
12153 (gst_base_rtp_depayload_set_gst_timestamp):
12154 * gst/videorate/gstvideorate.c: (gst_videorate_event):
12155 Update for newsegment API change.
12157 2005-10-11 Michael Smith <msmith@fluendo.com>
12159 * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
12160 (do_playbin_seek), (gst_play_bin_send_event):
12161 Override send_event differently, so that we can takes bits of
12162 functionality from GstPipeline (special handling for seeks,
12163 including pausing/resuming, and resetting stream time) and still get
12164 the appropriate behaviour of only forwarding event to a single sink,
12165 rather than all of them.
12166 Unfortunately requires a lot of code duplication, but the
12167 alternatives are equally ugly in the end.
12169 2005-10-11 Thomas Vander Stichele <thomas at apestaart dot org>
12171 * check/elements/audioconvert.c: (setup_audioconvert),
12172 (cleanup_audioconvert), (get_int_caps), (verify_convert),
12173 (GST_START_TEST), (audioconvert_suite):
12174 clean up tests a little, fix some leaks.
12176 2005-10-10 Wim Taymans <wim@fluendo.com>
12178 * ext/alsa/gstalsasink.c:
12179 Also allow unsigned int.
12181 * gst-libs/gst/audio/gstbaseaudiosrc.c:
12182 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
12185 2005-10-10 Wim Taymans <wim@fluendo.com>
12187 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12188 Small update, use API as stated in design docs.
12190 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
12191 (update_scale), (do_seek), (seek_cb), (set_update_scale),
12192 (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
12193 (message_received), (main):
12194 Updated seek example for GOption. Some usability improvements.
12196 2005-10-10 Wim Taymans <wim@fluendo.com>
12198 * gst/audioconvert/audioconvert.h:
12199 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
12200 (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
12201 Alloc temp storage somewhere else where we can do it more
12204 2005-10-10 Wim Taymans <wim@fluendo.com>
12206 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
12207 (gst_tcpserversrc_start):
12208 Don't block in accept while doing the state change, move
12209 to poll and make cancellable.
12211 2005-10-09 Philippe Khalaf <burger@speedy.org>
12213 * gst-libs/gst/rtp/rtpbasedepayload.c:
12214 Set timestamp and add queue delay to timestamp
12215 * gst-libs/gst/rtp/rtpbuffer.h:
12216 Set correct payload type for h263
12218 2005-10-09 Stefan Kost <ensonic@users.sf.net>
12220 * gst/audiotestsrc/gstaudiotestsrc.c:
12221 (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
12222 (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
12223 (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
12224 (gst_audiotestsrc_create_triangle),
12225 (gst_audiotestsrc_create_silence),
12226 (gst_audiotestsrc_create_white_noise),
12227 (gst_audiotestsrc_init_pink_noise),
12228 (gst_audiotestsrc_generate_pink_noise_value),
12229 (gst_audiotestsrc_create_pink_noise),
12230 (gst_audiotestsrc_change_wave):
12231 * gst/audiotestsrc/gstaudiotestsrc.h:
12232 fixed typo, added pink noise
12234 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
12236 * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
12238 Add wavpack and spc typefind functions from 0.8 branch.
12240 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
12242 * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
12243 (ar_type_find), (msdos_type_find), (plugin_init):
12244 Add typefind functions for tar archives, ar archives,
12245 RAR archives, and msdos-executables (dlls, exe, etc.).
12246 Some of those would be wrongly identified as mpeg
12247 streams of some sort before (#315550).
12249 2005-10-09 Stefan Kost <ensonic@users.sf.net>
12252 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12253 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12254 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
12255 * gst/audiotestsrc/Makefile.am:
12256 * gst/audiotestsrc/gstaudiotestsrc.c:
12257 (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
12258 (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
12259 (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
12260 (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
12261 (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
12262 (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
12263 (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
12264 (gst_audiotestsrc_create_silence),
12265 (gst_audiotestsrc_create_white_noise),
12266 (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
12267 (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
12268 (gst_audiotestsrc_start), (plugin_init):
12269 * gst/audiotestsrc/gstaudiotestsrc.h:
12270 add new plugin and element
12271 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
12274 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
12276 * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
12277 (gst_adder_init), (gst_adder_request_new_pad),
12278 (gst_adder_change_state):
12279 Add query function to source pad, so adder reports the correct
12280 time/sample position when queried (#315457); fix state change
12281 function; use GST_DEBUG_FUNCPTR() for pad functions.
12283 2005-10-08 Thomas Vander Stichele <thomas at apestaart dot org>
12285 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
12286 Fix leaks in typefind registration
12287 Clean up the gratuitous commenting and whitespacing a little
12289 2005-10-08 Wim Taymans <wim@fluendo.com>
12291 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
12292 Only actually wait for the thread to be stopped if it's
12295 2005-10-08 Wim Taymans <wim@fluendo.com>
12297 * gst-libs/gst/audio/gstbaseaudiosink.c:
12298 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
12299 If we receive EOS we can start playback of what we had.
12301 2005-10-08 Wim Taymans <wim@fluendo.com>
12303 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
12304 (gst_multifdsink_finalize), (multifdsink_hash_remove),
12305 (gst_multifdsink_stop):
12306 Fix crasher when going to NULL multiple times.
12308 2005-10-06 Wim Taymans <wim@fluendo.com>
12310 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
12311 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
12312 * gst-libs/gst/audio/gstbaseaudiosrc.h:
12313 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
12314 patch from Edgard Lima <edgard.lima@indt.org.br>
12315 Fixed gstbaseaudiosrc adding ring buffer sync to it.
12317 2005-10-06 Wim Taymans <wim@fluendo.com>
12319 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
12320 Report the FLOW_RETURN as string in the error message.
12322 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
12323 Don't assert when clearing an unnegotiated buffer.
12325 2005-10-04 Michael Smith <msmith@fluendo.com>
12327 * gst/playback/gstplaybasebin.c: (group_destroy),
12328 (gen_preroll_element), (remove_groups), (setup_source):
12329 * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
12330 (setup_sinks), (gst_play_bin_send_event),
12331 (gst_play_bin_change_state):
12332 Set state to NULL before removing from bin. Fix refcounting.
12334 2005-10-04 Michael Smith <msmith@fluendo.com>
12336 * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
12337 Correct refcounting in send_event() function. Previously was wrong
12338 if the first sink was unable to handle the event.
12340 2005-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
12343 back to development
12345 === release 0.9.3 ===
12347 2005-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
12350 Releasing 0.9.3, "De Facto"
12352 2005-10-03 Andy Wingo <wingo@pobox.com>
12354 * gst/playback/gstdecodebin.c (try_to_link_1)
12355 (remove_element_chain): set element to NULL before removing it.
12357 2005-10-02 Johan Dahlin <johan@gnome.org>
12359 * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols):
12360 protect gst_gnomevfs_get_supported_uris by a mutex, to make it
12363 2005-10-02 Andy Wingo <wingo@pobox.com>
12365 * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear)
12366 (gst_ring_buffer_prepare_read):
12367 * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
12370 2005-09-29 Wim Taymans <wim@fluendo.com>
12372 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
12373 * ext/theora/theoradec.c: (theora_handle_data_packet):
12374 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
12375 Propagate error codes from alloc_buffer too.
12377 2005-09-29 Wim Taymans <wim@fluendo.com>
12379 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
12382 * gst/playback/Makefile.am:
12383 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
12384 (dump_element_stats), (main):
12385 Added example stream introspection code.
12387 2005-09-28 Stefan Kost <ensonic@users.sf.net>
12389 * gst/adder/gstadder.c: (gst_adder_collected):
12390 fix adder for float elements
12392 2005-09-28 Wim Taymans <wim@fluendo.com>
12394 * gst-libs/gst/audio/gstbaseaudiosink.c:
12395 (gst_base_audio_sink_class_init),
12396 (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
12397 * gst-libs/gst/audio/gstbaseaudiosrc.c:
12398 (gst_base_audio_src_class_init),
12399 (gst_base_audio_src_provide_clock):
12400 get_clock -> provide_clock
12402 2005-09-28 Andy Wingo <wingo@pobox.com>
12404 * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
12407 * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
12410 * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
12411 Actually add the pad template.
12412 (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
12414 * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
12417 * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
12418 from fdsrc. Get caps in create() instead of start() so it can be
12419 interrupted. Interruption somewhat untested.
12421 * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
12422 Proper EOS handling.
12424 2005-09-27 Andy Wingo <wingo@pobox.com>
12426 * gst/tcp/gsttcpclientsrc.c: Cleaned up.
12428 * gst/tcp/gsttcpserversrc.c: Cleaned up.
12430 * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
12432 * gst/tcp/gsttcp.h:
12433 * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
12434 out of tcpclientsrc.c. Cancellable.
12435 (gst_tcp_socket_read): Made private, cancellable, with better
12436 diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
12437 (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
12438 whole buffer, and better diagnostics.
12439 (gst_tcp_gdp_read_caps): Same.
12441 * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
12443 2005-09-26 Andy Wingo <wingo@pobox.com>
12445 * gst/sine/gstsinesrc.h:
12446 * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
12447 change the 'sync' property to 'is-live' and implement it halfway,
12448 update for controller api change.
12450 * gst/volume/gstvolume.c (volume_transform_ip): Update for
12451 controller api change.
12453 2005-09-24 Wim Taymans <wim@fluendo.com>
12455 * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
12456 * gst-libs/gst/audio/gstaudiosink.c:
12457 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
12458 (gst_audioringbuffer_stop):
12459 * gst-libs/gst/audio/gstbaseaudiosink.c:
12460 (gst_base_audio_sink_event), (gst_base_audio_sink_render),
12461 (gst_base_audio_sink_change_state):
12462 * gst-libs/gst/audio/gstbaseaudiosink.h:
12463 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
12464 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
12465 (gst_ring_buffer_commit), (gst_ring_buffer_read):
12466 * gst-libs/gst/audio/gstringbuffer.h:
12467 Fix sync again. Moved sample alignment to basesink.
12469 2005-09-23 Thomas Vander Stichele <thomas at apestaart dot org>
12471 * docs/plugins/Makefile.am:
12472 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12473 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12474 * gst/volume/gstvolume.c:
12476 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
12477 * gst-libs/gst/audio/audio.h:
12478 add conversion macros for frames <-> clocktime
12480 2005-09-23 David Schleef <ds@schleef.org>
12482 * gst/audioresample/Makefile.am:
12483 * gst/audioresample/debug.h:
12484 * gst/audioresample/gstaudioresample.c:
12485 * gst/audioresample/resample.c: Convert to using gst debugging
12487 2005-09-22 Wim Taymans <wim@fluendo.com>
12489 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
12490 (gst_play_bin_send_event):
12491 Only seek on one sink, the first one that succeeds.
12493 2005-09-22 Michael Smith <msmith@fluendo.com>
12495 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
12496 (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
12497 Don't flush encoder state unless we have an initialised encoder.
12498 Clear out encoder state on PAUSED_TO_READY.
12500 2005-09-22 Wim Taymans <wim@fluendo.com>
12502 * gst-libs/gst/rtp/gstbasertppayload.c:
12503 (gst_basertppayload_class_init), (gst_basertppayload_init),
12504 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12505 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12506 (gst_basertppayload_is_filled), (gst_basertppayload_push),
12507 (gst_basertppayload_set_property),
12508 (gst_basertppayload_get_property),
12509 (gst_basertppayload_change_state):
12510 * gst-libs/gst/rtp/gstbasertppayload.h:
12511 Added max-ptime to control amount of data in the rtp packets.
12513 2005-09-21 Andy Wingo <wingo@pobox.com>
12515 * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
12518 * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
12519 can be called multiple times, dogs.
12521 2005-09-21 Wim Taymans <wim@fluendo.com>
12523 * gst-libs/gst/rtp/gstbasertppayload.c:
12524 (gst_basertppayload_class_init), (gst_basertppayload_init),
12525 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12526 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12527 (gst_basertppayload_push), (gst_basertppayload_get_property),
12528 (gst_basertppayload_change_state):
12531 2005-09-21 Stefan Kost <ensonic@users.sf.net>
12533 * docs/libs/compiling.sgml:
12536 2005-09-20 Wim Taymans <wim@fluendo.com>
12538 * gst-libs/gst/rtp/gstbasertppayload.c:
12539 (gst_basertppayload_class_init), (gst_basertppayload_init),
12540 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12541 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12542 (gst_basertppayload_push), (gst_basertppayload_set_property),
12543 (gst_basertppayload_get_property),
12544 (gst_basertppayload_change_state):
12545 * gst-libs/gst/rtp/gstbasertppayload.h:
12546 Added property to configure sequence number offsets.
12548 2005-09-20 Wim Taymans <wim@fluendo.com>
12550 * gst-libs/gst/rtp/gstbasertppayload.c:
12551 (gst_basertppayload_class_init), (gst_basertppayload_init),
12552 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12553 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12554 (gst_basertppayload_push), (gst_basertppayload_set_property),
12555 (gst_basertppayload_get_property),
12556 (gst_basertppayload_change_state):
12557 * gst-libs/gst/rtp/gstbasertppayload.h:
12558 Make timestamp offset configurable.
12560 2005-09-20 Thomas Vander Stichele <thomas at apestaart dot org>
12562 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12563 fix wrong pop/unref
12565 2005-09-19 Torsten Schoenfeld <kaffeetisch at gmx dot net>
12567 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
12569 * gst-libs/gst/interfaces/propertyprobe.c:
12570 (gst_property_probe_probe_property_name),
12571 (gst_property_probe_needs_probe_name),
12572 (gst_property_probe_get_values_name),
12573 (gst_property_probe_probe_and_get_values_name):
12574 Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
12575 G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
12577 2005-09-19 Thomas Vander Stichele <thomas at apestaart dot org>
12579 * check/Makefile.am:
12580 have some tests be disabled for valgrinding
12581 * check/elements/vorbisdec.c: (cleanup_vorbisdec),
12583 * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
12584 Fix A Leak. Chain To Parent Finalize.
12586 2005-09-19 Wim Taymans <wim@fluendo.com>
12588 * examples/seeking/seek.c: (make_wav_pipeline), (main):
12589 Fixed wav pipeline.
12591 2005-09-19 Wim Taymans <wim@fluendo.com>
12593 * gst-libs/gst/rtp/gstbasertppayload.c:
12594 (gst_basertppayload_class_init), (gst_basertppayload_init),
12595 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12596 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12597 (gst_basertppayload_push), (gst_basertppayload_get_property),
12598 (gst_basertppayload_change_state):
12599 Posting ERROR and WARNING messages is good.
12601 2005-09-19 Wim Taymans <wim@fluendo.com>
12603 * gst-libs/gst/rtp/gstbasertpdepayload.c:
12604 (gst_base_rtp_depayload_add_to_queue),
12605 (gst_base_rtp_depayload_push),
12606 (gst_base_rtp_depayload_set_gst_timestamp),
12607 (gst_base_rtp_depayload_queue_release):
12608 This one was not supposed to go in.
12610 2005-09-19 Wim Taymans <wim@fluendo.com>
12612 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12615 * gst-libs/gst/rtp/gstbasertpdepayload.c:
12616 (gst_base_rtp_depayload_chain),
12617 (gst_base_rtp_depayload_add_to_queue),
12618 (gst_base_rtp_depayload_push),
12619 (gst_base_rtp_depayload_set_gst_timestamp),
12620 (gst_base_rtp_depayload_queue_release):
12623 * gst-libs/gst/rtp/gstbasertppayload.c:
12624 (gst_basertppayload_class_init), (gst_basertppayload_init),
12625 (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
12626 (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12627 (gst_basertppayload_get_property),
12628 (gst_basertppayload_change_state):
12629 Added debugging category.
12631 2005-09-18 David Schleef <ds@schleef.org>
12633 * gst/playback/gstdecodebin.c: free plugin list correctly
12634 * gst/playback/gstplaybin.c: emit warning if autovideosink
12635 and autoaudiosink can't be found (instead of segfaulting)
12637 2005-09-17 Thomas Vander Stichele <thomas at apestaart dot org>
12639 * check/elements/audioconvert.c: (GST_START_TEST):
12640 try out 24 bit conversion
12642 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12644 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
12645 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
12646 (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
12647 * ext/vorbis/vorbisenc.h:
12648 Fix EOS handling. Still needs a fix in the ogg muxer to
12649 mark the last page as eos.
12651 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12653 * common/gtk-doc-plugins.mak:
12654 * docs/plugins/Makefile.am:
12655 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12656 * gst/ffmpegcolorspace/Makefile.am:
12657 * gst/ffmpegcolorspace/avcodec.h:
12658 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12659 * gst/tcp/gstmultifdsink.c:
12660 fix up ffmpegcolorspace docs; extract header
12662 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12664 * common/gtk-doc-plugins.mak:
12665 * docs/plugins/Makefile.am:
12666 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12667 * ext/theora/Makefile.am:
12668 * ext/theora/gsttheoraenc.h:
12669 * ext/theora/theoraenc.c:
12670 * ext/vorbis/vorbisenc.c:
12671 pick up signals and args for vorbis; add some docs for vorbis
12673 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12675 * common/gstdoc-scangobj:
12676 * common/gtk-doc-plugins.mak:
12677 * docs/libs/Makefile.am:
12678 * docs/plugins/gst-plugins-base-plugins.args:
12679 * docs/plugins/gst-plugins-base-plugins.hierarchy:
12680 * docs/plugins/gst-plugins-base-plugins.interfaces:
12681 * docs/plugins/gst-plugins-base-plugins.prerequisites:
12682 * docs/plugins/gst-plugins-base-plugins.signals:
12683 only scanobj stuff from our source module. Not sure yet
12684 if that's correct, given the hierarchy stuff :)
12686 2005-09-15 Wim Taymans <wim@fluendo.com>
12688 * gst/audioconvert/gstaudioconvert.c:
12689 And enable 24 bits mode as well..
12691 2005-09-15 Wim Taymans <wim@fluendo.com>
12693 * gst-libs/gst/rtp/Makefile.am:
12694 * gst-libs/gst/rtp/gstbasertppayload.c:
12695 (gst_basertppayload_get_type), (gst_basertppayload_base_init),
12696 (gst_basertppayload_class_init), (gst_basertppayload_init),
12697 (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
12698 (gst_basertppayload_chain), (gst_basertppayload_set_options),
12699 (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12700 (gst_basertppayload_set_property),
12701 (gst_basertppayload_get_property),
12702 (gst_basertppayload_change_state):
12703 * gst-libs/gst/rtp/gstbasertppayload.h:
12704 Added rtp payloader base class.
12706 2005-09-15 Andy Wingo <wingo@pobox.com>
12708 * configure.ac (plugindir): Remove the EOL matcher from the
12709 regexp, as it causes me problems. Libtool? Make? Who knows?
12711 2005-09-14 David Schleef <ds@schleef.org>
12713 * check/generic/states.c:
12714 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
12715 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
12716 Fixes for changes in registry API.
12718 * configure.ac: Only export gst_plugins_desc. Add -no-undefined
12719 to GST_PLUGIN_LDFLAGS.
12720 * ext/libvisual/visual.c: Make the library shut up.
12721 * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
12722 * gst-libs/gst/audio/gstaudiofilter.c: same
12724 2005-09-14 Thomas Vander Stichele <thomas at apestaart dot org>
12726 * docs/plugins/Makefile.am:
12727 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12728 * docs/plugins/inspect/plugin-libvisual.xml:
12729 * docs/plugins/tmpl/element-tcpserversink.sgml:
12730 * ext/theora/theoraenc.c:
12731 add libvisual plugin and theoraenc element to docs
12733 2005-09-14 Thomas Vander Stichele <thomas at apestaart dot org>
12735 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12736 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12737 * ext/theora/theoraenc.c:
12740 2005-09-13 Tim-Philipp Müller <tim at centricular dot net>
12742 * gst/audioconvert/Makefile.am:
12743 Audioconvert derives from GstBaseTransform and should
12744 link to the library with our base elements to avoid
12745 unresolved symbols. Makes things work with MinGW (#316160)
12747 * gst/playback/test4.c: (main):
12748 Fix MinGW build problem and use g_usleep() instead of
12751 2005-09-12 Wim Taymans <wim@fluendo.com>
12753 * gst/audioconvert/audioconvert.c: (float),
12754 (audio_convert_prepare_context), (audio_convert_convert):
12755 * gst/audioconvert/audioconvert.h:
12756 Cleanups, speedups, simplifications, added back support
12759 2005-09-11 Thomas Vander Stichele <thomas at apestaart dot org>
12761 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12762 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12763 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12764 * docs/plugins/tmpl/element-tcpserversink.sgml:
12765 * gst/ffmpegcolorspace/gstffmpeg.c:
12766 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12767 * gst/videotestsrc/gstvideotestsrc.c:
12768 * gst/volume/gstvolume.c:
12769 add more elements to the docs
12771 2005-09-09 Jan Schmidt <thaytan@mad.scientist.com>
12773 * check/Makefile.am:
12774 * check/pipelines/simple_launch_lines.c: (setup_pipeline),
12775 (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
12776 Add extra tests for basetransform based components.
12777 Comment out the test_element_negotiation test until we decide
12778 if it's testing correct behaviour.
12779 * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
12780 (gst_visual_chain), (gst_visual_change_state):
12781 Slightly more correct but still bogus timestamping.
12782 Fix state change function.
12783 * gst/audioconvert/gstaudioconvert.c:
12784 (gst_audio_convert_class_init):
12785 * gst/audioresample/gstaudioresample.c:
12786 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12787 (gst_ffmpegcsp_class_init):
12788 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
12789 (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
12790 (gst_videoscale_prepare_image):
12791 * gst/volume/gstvolume.c: (gst_volume_class_init),
12792 (volume_transform_ip):
12793 Basetransform updates. Enable passthrough modes.
12794 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12795 (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
12796 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
12797 Negotiation fix that allows the window to return to the original
12798 size and renegotiate passthrough upstream. Extra debug output.
12800 2005-09-09 Thomas Vander Stichele <thomas at apestaart dot org>
12802 * gst/sine/gstsinesrc.c:
12803 * gst/volume/gstvolume.c:
12804 fix up header include
12806 2005-09-09 Stefan Kost <ensonic@users.sf.net>
12808 * gst-libs/gst/audio/gstbaseaudiosink.c:
12809 (gst_base_audio_sink_render):
12810 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
12811 * gst/volume/gstvolume.c: (gst_volume_class_init),
12812 (volume_transform):
12813 fixing lost sync, some more debugging
12815 2005-09-08 Jan Schmidt <thaytan@mad.scientist.com>
12817 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12818 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
12819 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12820 (gst_xvimagesink_check_xshm_calls):
12821 Fix compilation when XShm is not available.
12823 2005-09-07 Jan Schmidt <thaytan@mad.scientist.com>
12825 * ext/libvisual/visual.c: (gst_visual_dispose),
12826 (gst_visual_getcaps), (gst_visual_src_setcaps),
12827 (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
12828 (gst_visual_change_state):
12829 Finish fixing up libvisual plugin so that it runs.
12831 2005-09-07 Stefan Kost <ensonic@users.sf.net>
12833 * ext/vorbis/vorbisenc.c:
12834 * gst-libs/gst/tag/gstvorbistag.c:
12835 gsttaginterface.h -> gsttagsetter.h
12837 2005-09-07 Stefan Kost <ensonic@users.sf.net>
12839 * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
12840 added another test that failes for me (test is not active by default)
12842 2005-09-07 Zaheer Abbas Merali <zaheerabbas at merali dot org>
12845 v4l2 is no longer in gst-plugins-base
12847 2005-09-07 Jan Schmidt <thaytan@mad.scientist.com>
12850 In the output at the end, don't show the first plugin on the same
12851 line as "Core plug-ins, always built:".
12852 Indent the output as for other plugin categories
12853 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
12854 #define that can be used to not use peer buffer_alloc functions for
12856 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12857 (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
12858 (gst_ximagesink_show_frame):
12859 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12860 (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
12861 (gst_xvimagesink_show_frame):
12862 Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
12863 fails gracefully instead of XError aborting or deadlocking.
12865 2005-09-07 Stefan Kost <ensonic@users.sf.net>
12867 * ext/libvisual/Makefile.am:
12868 link against gst-base-libs
12870 2005-09-06 David Schleef <ds@schleef.org>
12872 * configure.ac: Enable libvisual plugin.
12873 * ext/libvisual/Makefile.am:
12874 * ext/libvisual/visual.c: Fixes to make it compile.
12876 === release 0.9.2 ===
12878 2005-09-06 Thomas Vander Stichele <thomas at apestaart dot org>
12883 * docs/random/ChangeLog-0.8:
12884 releasing 0.9.2, "Spoon"
12886 2005-09-05 Michael Smith <msmith@fluendo.com>
12888 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
12889 libvorbis accepts quality as low as -0.1, not just 0.0. So accept
12890 that in the vorbisenc element.
12892 2005-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
12894 * common/gtk-doc-plugins.mak:
12895 * docs/plugins/Makefile.am:
12897 * gst/audioresample/resample.c:
12898 fix wrong docstring
12900 2005-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
12902 * common/gst-xmlinspect.py:
12903 * common/gtk-doc-plugins.mak:
12904 only inspect plugins for this given package
12905 require gst-python 0.9
12907 2005-09-03 Thomas Vander Stichele <thomas at apestaart dot org>
12911 * common/gst-xmlinspect.py:
12913 * docs/Makefile.am:
12914 * docs/plugins/inspect/plugin-alsa.xml:
12915 * docs/plugins/inspect/plugin-audioresample.xml:
12916 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12917 * docs/plugins/inspect/plugin-ogg.xml:
12918 * docs/plugins/tmpl/element-gnomevfssink.sgml:
12919 * docs/plugins/tmpl/element-multifdsink.sgml:
12920 * docs/plugins/tmpl/element-tcpserversink.sgml:
12921 * docs/plugins/tmpl/element-vorbisenc.sgml:
12922 * gst-plugins-base.spec.in:
12923 various doc-related updates
12925 2005-08-31 Wim Taymans <wim@fluendo.com>
12927 * gst-libs/gst/audio/gstbaseaudiosink.c:
12928 (gst_base_audio_sink_render):
12929 Resync if the buffer timestamps drift more than a 10th
12932 2005-08-31 Tim-Philipp Müller <tim at centricular dot net>
12934 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
12935 (gst_v4lsrc_get_property):
12936 The 'timestamp-offset' property is registered as an int64, so
12937 let's use g_value_{set|get}_int64() in our setter and getter
12938 functions (makes it work and fixes warnings with gst-inspect).
12940 2005-08-30 Wim Taymans <wim@fluendo.com>
12942 * check/elements/audioconvert.c: (setup_audioconvert):
12943 * check/elements/audioresample.c: (setup_audioresample):
12944 * check/elements/volume.c: (setup_volume):
12947 2005-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
12949 * common/gtk-doc-plugins.mak:
12950 * common/plugins.xsl:
12951 * docs/plugins/Makefile.am:
12952 make module a param
12954 2005-08-30 Stefan Kost <ensonic@users.sf.net>
12956 * examples/seeking/seek.c: (make_mp3_pipeline),
12957 (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
12958 (play_cb), (pause_cb), (stop_cb):
12961 2005-08-30 Stefan Kost <ensonic@users.sf.net>
12963 * gst/volume/gstvolume.c: (gst_volume_class_init),
12964 (volume_transform):
12965 do not update controlled params, if buffer has no timestamp
12967 2005-08-29 Stefan Kost <ensonic@users.sf.net>
12970 * gst/sine/Makefile.am:
12971 * gst/volume/Makefile.am:
12972 controllerized elements also need to link against controller-libs ;)
12974 2005-08-29 Stefan Kost <ensonic@users.sf.net>
12976 * docs/libs/tmpl/gstcolorbalance.sgml:
12977 * docs/libs/tmpl/gstgconf.sgml:
12978 * docs/libs/tmpl/gstmixer.sgml:
12979 * docs/libs/tmpl/gstringbuffer.sgml:
12980 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
12981 (gst_sinesrc_create):
12982 * gst/volume/gstvolume.c: (gst_volume_class_init),
12983 (volume_transform):
12984 controllerized two audio plugins
12986 2005-08-29 Andy Wingo <wingo@pobox.com>
12988 * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push)
12989 (vorbis_handle_data_packet): Fix some int overflow errors.
12991 * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
12993 (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
12995 (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
12996 if it's valid. Fixed streaming-mode playback.
12998 * check/elements/volume.c (cleanup_volume): Fix for running
13001 * check/elements/audioconvert.c: Convert from native endian, not
13004 2005-08-29 Michael Smith <msmith@fluendo.com>
13006 * ext/ogg/Makefile.am:
13007 * ext/ogg/gstogg.c: (plugin_init):
13008 * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
13009 (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
13010 (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
13011 (gst_ogg_parse_class_init), (gst_ogg_parse_init),
13012 (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
13013 (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
13014 (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
13015 (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
13016 Add an ogg parser element.
13018 2005-08-28 Andy Wingo <wingo@pobox.com>
13020 * Updates for two-arg init from GST_BOILERPLATE_FULL.
13022 2005-08-26 Wim Taymans <wim@fluendo.com>
13024 * gst/audioconvert/audioconvert.c: (if), (float),
13025 (audio_convert_get_func_index), (check_default),
13026 (audio_convert_clean_fmt), (audio_convert_prepare_context),
13027 (audio_convert_clean_context), (audio_convert_get_sizes),
13028 (audio_convert_convert):
13031 2005-08-26 Wim Taymans <wim@fluendo.com>
13033 * gst/audioconvert/audioconvert.c: (if), (float),
13034 (audio_convert_get_func_index), (check_default),
13035 (audio_convert_clean_fmt), (audio_convert_prepare_context),
13036 (audio_convert_clean_context), (audio_convert_get_sizes),
13037 (audio_convert_convert):
13038 More elegant and working temp buffer selection algo.
13040 2005-08-26 Wim Taymans <wim@fluendo.com>
13042 * gst/audioconvert/audioconvert.c: (if), (float),
13043 (audio_convert_get_func_index), (check_default),
13044 (audio_convert_clean_fmt), (audio_convert_prepare_context),
13045 (audio_convert_clean_context), (audio_convert_get_sizes),
13046 (get_temp_buffer), (audio_convert_convert):
13047 Use realloc else we lose our original data.
13049 2005-08-26 Thomas Vander Stichele <thomas at apestaart dot org>
13051 * gst/audioresample/gstaudioresample.c:
13052 use base class' newsegment to properly timestamp
13054 2005-08-26 Wim Taymans <wim@fluendo.com>
13056 * gst/audioconvert/audioconvert.c: (if), (float),
13057 (audio_convert_get_func_index), (check_default),
13058 (audio_convert_clean_fmt), (audio_convert_prepare_context),
13059 (audio_convert_clean_context), (audio_convert_get_sizes),
13060 (get_temp_buffer), (audio_convert_convert):
13061 * gst/audioconvert/gstaudioconvert.c:
13062 (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
13063 (gst_audio_convert_transform_caps),
13064 (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
13065 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
13066 Oops, allocate enough space to perform the channel mix.
13068 2005-08-26 Wim Taymans <wim@fluendo.com>
13070 * gst/audioconvert/Makefile.am:
13071 * gst/audioconvert/audioconvert.c: (if), (float),
13072 (audio_convert_get_func_index), (check_default),
13073 (audio_convert_clean_fmt), (audio_convert_prepare_context),
13074 (audio_convert_clean_context), (audio_convert_get_sizes),
13075 (get_temp_buffer), (audio_convert_convert):
13076 * gst/audioconvert/audioconvert.h:
13077 * gst/audioconvert/gstaudioconvert.c:
13078 (gst_audio_convert_class_init), (gst_audio_convert_init),
13079 (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
13080 (gst_audio_convert_get_unit_size),
13081 (gst_audio_convert_transform_caps),
13082 (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
13083 (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
13084 * gst/audioconvert/gstaudioconvert.h:
13085 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
13086 (gst_channel_mix_fill_identical),
13087 (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
13088 (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
13089 (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
13090 (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
13091 (gst_channel_mix_mix):
13092 * gst/audioconvert/gstchannelmix.h:
13093 Cleanups, librarify a bit, optimize, better negotiation and more.
13095 2005-08-26 Jan Schmidt <thaytan@mad.scientist.com>
13097 * ext/ogg/gstoggdemux.c: (ogg_find_peek):
13098 Another from MikeS:
13099 During typefinding, don't support negative offsets
13100 (offsets from the end of the stream) in our typefind->peek() function
13101 - nothing embedded in ogg ever needs them. However, we need to recognise
13102 those requests and reject them, otherwise we return invalid pointers.
13104 2005-08-26 Jan Schmidt <thaytan@mad.scientist.com>
13106 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
13107 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
13108 (vorbisdec_finalize), (vorbis_handle_type_packet):
13109 Big shout-out to MikeS for fixing this giant memory leak.
13112 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13114 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
13115 (audio_convert_get_unit_size):
13118 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13120 * check/Makefile.am:
13121 * check/elements/audioconvert.c: (setup_audioconvert),
13122 (cleanup_audioconvert), (get_int_caps), (verify_convert),
13123 (GST_START_TEST), (audioconvert_suite), (main):
13124 add a test for audioconvert
13125 * gst/audioresample/gstaudioresample.c:
13126 * gst/audioresample/gstaudioresample.h:
13127 set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
13128 note that for buffers of 1/3 sec this means DURATION(c) is
13129 one nanosecond more than for a and b
13131 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13133 * check/Makefile.am:
13134 * check/elements/audioresample.c: (setup_audioresample),
13135 (cleanup_audioresample), (fail_unless_perfect_stream),
13136 (test_perfect_stream_instance), (GST_START_TEST),
13137 add a check for audioresample
13138 (audioresample_suite), (main):
13139 * check/elements/volume.c: (GST_START_TEST):
13140 remove unused method
13141 * gst/audioresample/gstaudioresample.c:
13142 set correct buffer parameters since we're changing them
13143 * gst/audioresample/resample_ref.c: (resample_scale_ref):
13146 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13148 * gst/audioresample/debug.c:
13149 * gst/audioresample/gstaudioresample.c:
13150 add room for extra overlap samples when asked to transform size
13151 protect against possible mem corruption and check for discrepancies
13152 between written size and outbuffer's size so we can warn for
13154 * gst/audioresample/resample.c: (resample_init),
13155 (resample_get_output_size_for_input), (resample_get_output_size),
13156 (resample_set_n_channels), (resample_set_format):
13157 set debug level based on RESAMPLE_DEBUG env var
13158 make sure that get_output_size* returns a whole number of
13160 set sample_size each time either channel or format is set
13161 * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
13162 * gst/audioresample/resample_functable.c:
13163 (resample_scale_functable):
13164 * gst/audioresample/resample_ref.c: (resample_scale_ref):
13165 remove r->sample_size, it's done in resample.c now
13166 add some debugging to the ref implementation
13167 make sure we only give back bytes that are wholes of the sample
13170 2005-08-25 Jan Schmidt <thaytan@mad.scientist.com>
13171 * gst/playback/gstplaybasebin.c: (fill_buffer):
13172 Revert unpopular change for GST_MESSAGE_SRC to GObject.
13174 2005-08-25 Stefan Kost <ensonic@users.sf.net>
13176 * gst/volume/gstvolume.c:
13177 made set_caps function static
13179 2005-08-24 Wim Taymans <wim@fluendo.com>
13181 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
13182 (gst_vorbisenc_change_state):
13183 Stop leaking taglists.
13185 2005-08-24 Wim Taymans <wim@fluendo.com>
13187 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
13188 (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
13189 (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
13190 (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
13191 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13192 (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
13193 Parse seeking events better.
13195 Generate correct newsegment events, fixes seeking in live oggs.
13197 * ext/theora/theoradec.c: (theora_dec_src_query),
13198 (theora_dec_src_event), (theora_dec_src_getcaps),
13199 (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
13200 Use newsegment values to report correct play time.
13202 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
13203 (vorbis_dec_src_event), (vorbis_dec_sink_event):
13204 * ext/vorbis/vorbisdec.h:
13205 Parse and use newsegment values to report correct play time.
13207 * gst-libs/gst/audio/gstbaseaudiosink.c:
13208 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
13209 Clear ringbuffer on flush.
13210 Use newsegment values to calculate playback time.
13212 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
13213 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
13214 Basesink does newsegment calculations for us now.
13216 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13218 * check/Makefile.am:
13220 add core's plugins to the mix so that playbin works
13221 * check/generic/states.c: (GST_START_TEST):
13222 set a 0 timeout on pipelines, so they don't force the next
13224 * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
13225 (gst_play_base_bin_change_state):
13226 remove the crappy error handling and do GST error handling
13228 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13230 * check/Makefile.am:
13231 * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
13232 add same test as to core, it bitches out on playbin atm.
13234 2005-08-24 Wim Taymans <wim@fluendo.com>
13239 2005-08-24 Wim Taymans <wim@fluendo.com>
13241 * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
13242 (gst_videoscale_prepare_size), (parse_caps),
13243 (gst_videoscale_set_caps), (gst_videoscale_get_size),
13244 (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
13245 (gst_videoscale_transform):
13246 * gst/videoscale/gstvideoscale.h:
13247 Refactor, make use of BaseTranform really well.
13249 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13252 compile audioresample
13253 * gst/audioresample/Makefile.am:
13254 * gst/audioresample/buffer.c:
13255 * gst/audioresample/functable.c:
13256 * gst/audioresample/gstaudioresample.c:
13257 * gst/audioresample/gstaudioresample.h:
13258 * gst/audioresample/resample.c:
13259 (resample_get_output_size_for_input):
13260 * gst/audioresample/resample.h:
13261 * gst/audioresample/resample_chunk.c:
13262 * gst/audioresample/resample_functable.c:
13263 * gst/audioresample/resample_ref.c:
13264 port to use basetransform; doesn't work in all cases yet
13266 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13268 * gst/audioconvert/gstaudioconvert.c:
13269 (gst_audio_convert_class_init), (gst_audio_convert_init),
13270 (audio_convert_get_unit_size), (audio_convert_transform_caps),
13271 (audio_convert_fixate_caps), (audio_convert_set_caps),
13272 (audio_convert_transform),
13273 (gst_audio_convert_buffer_to_default_format),
13274 (gst_audio_convert_buffer_from_default_format),
13275 (gst_audio_convert_channels):
13276 * gst/audioconvert/gstchannelmix.c:
13277 * gst/audioconvert/gstchannelmix.h:
13278 port to basetransform
13279 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13280 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
13281 (gst_ffmpegcsp_get_unit_size):
13282 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
13283 (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
13284 fix for basetransform changes
13286 2005-08-24 Jan Schmidt <thaytan@mad.scientist.com>
13288 * check/Makefile.am:
13289 Add CHECK_CFLAGS and LDFLAGS
13291 * gst/playback/gstplaybasebin.c: (fill_buffer):
13292 GST_MESSAGE_SRC became a GObject
13294 2005-08-24 Wim Taymans <wim@fluendo.com>
13296 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
13297 (gst_ring_buffer_clear_all):
13298 * gst-libs/gst/audio/gstringbuffer.h:
13299 Added function to clear the ringbuffer.
13301 2005-08-24 Andy Wingo <wingo@pobox.com>
13303 * sys/v4l/gstv4lelement.c (gst_v4lelement_start)
13304 (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
13305 of _open and _close.
13307 * sys/v4l/gstv4lxoverlay.h:
13308 * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
13309 an Xv connection here, instead of all the time. Make Xv only be
13310 loaded if you axe for it. Kindof a workaround for buggy behaviour
13311 of Xv when using remote xservers (XvQueryExtension would block).
13312 (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
13313 replace the _open and _close public API. Only start the xv
13314 connection if necessary.
13315 (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
13317 2005-08-23 David Schleef <ds@schleef.org>
13319 * gst/audioresample/Makefile.am: Leet audioresampling code
13320 * gst/audioresample/buffer.c:
13321 * gst/audioresample/buffer.h:
13322 * gst/audioresample/debug.c:
13323 * gst/audioresample/debug.h:
13324 * gst/audioresample/functable.c:
13325 * gst/audioresample/functable.h:
13326 * gst/audioresample/gstaudioresample.c:
13327 * gst/audioresample/gstaudioresample.h:
13328 * gst/audioresample/resample.c:
13329 * gst/audioresample/resample.h:
13330 * gst/audioresample/resample_chunk.c:
13331 * gst/audioresample/resample_functable.c:
13332 * gst/audioresample/resample_ref.c:
13334 2005-08-23 Wim Taymans <wim@fluendo.com>
13336 * examples/seeking/seek.c: (make_vorbis_pipeline),
13337 (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
13338 Small seek updates.
13340 2005-08-23 Andy Wingo <wingo@pobox.com>
13342 * gst-libs/gst/audio/gstbaseaudiosrc.c
13343 (gst_base_audio_src_fixate): Only fixate endianness if it is
13344 present in the caps.
13346 2005-08-22 Andy Wingo <wingo@pobox.com>
13348 * ext/alsa/gstalsasink.c (gst_alsasink_get_property):
13349 * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
13350 device-name property.
13352 * gst-libs/gst/audio/gstaudiosrc.h:
13353 * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
13354 close_device in the ring buffer, like gstaudiosink.
13356 * ext/alsa/gstalsamixer.h:
13357 * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
13358 macro to implement the interface without much code. Cleanups.
13360 * ext/alsa/gstalsasrc.h:
13361 * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
13364 * ext/alsa/Makefile.am: Add new files.
13365 * ext/alsa/gstalsamixerelement.c:
13366 * ext/alsa/gstalsamixerelement.c: Split element code out from
13367 mixer code so that alsasrc can be a mixer too.
13369 2005-08-21 Thomas Vander Stichele <thomas at apestaart dot org>
13371 * check/elements/volume.c: (setup_volume), (cleanup_volume),
13373 * check/elements/vorbisdec.c: (setup_vorbisdec),
13374 (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
13375 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
13376 (vorbis_handle_identification_packet),
13377 (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
13378 (vorbis_handle_header_packet), (vorbis_dec_push),
13379 (vorbis_dec_chain):
13380 use the setup/teardown methods to save code. save code is good.
13382 2005-08-20 Thomas Vander Stichele <thomas at apestaart dot org>
13384 * check/Makefile.am:
13385 add ext dir for plugins
13386 add vorbisdec test conditionally
13387 * check/elements/volume.c: (setup_volume), (cleanup_volume),
13388 (GST_START_TEST), (volume_suite):
13389 add a test with wrong caps
13390 * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
13391 (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
13392 add a vorbisdec test
13393 * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
13394 (gst_ogg_demux_chain), (gst_ogg_demux_loop):
13395 clean up debug output
13396 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
13397 yay, fix a segfault/security issue in vorbisdec
13398 gst-launch fakesrc ! vorbisdec wasn't happy
13399 * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
13400 (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
13401 (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
13402 (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
13403 (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
13404 (gst_vorbisenc_set_metadata), (get_constraints_string),
13405 (update_start_message), (gst_vorbisenc_setup),
13406 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
13407 (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
13408 (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
13409 (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
13410 * ext/vorbis/vorbisenc.h:
13412 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13413 (gst_ffmpegcsp_transform):
13414 have the kow come home
13415 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
13417 * gst/volume/gstvolume.c: (volume_set_caps):
13420 2005-08-20 Thomas Vander Stichele <thomas at apestaart dot org>
13423 * check/.cvsignore:
13424 * check/Makefile.am:
13425 * check/elements/.cvsignore:
13426 * check/elements/volume.c: (chain_func), (event_func),
13427 (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
13430 add unit test structure for gst-plugins-base
13431 add a test for volume
13432 * gst/volume/gstvolume.c: (gst_volume_list_tracks),
13433 (gst_volume_set_volume), (gst_volume_get_volume),
13434 (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
13435 (volume_funcfind), (volume_process_float), (volume_process_int16),
13436 (volume_set_caps), (volume_transform), (volume_update_mute),
13437 (volume_update_volume), (volume_set_property),
13438 (volume_get_property):
13439 document a little; use basetransform vmethod _set_caps
13441 2005-08-19 Andy Wingo <wingo@pobox.com>
13443 * ext/alsa/gstalsamixertrack.h:
13444 * ext/alsa/gstalsamixertrack.c:
13445 * ext/alsa/gstalsamixeroptions.h:
13446 * ext/alsa/gstalsamixeroptions.c:
13447 * ext/alsa/gstalsamixer.h:
13448 * ext/alsa/gstalsamixer.c: Port to 0.9.
13450 * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
13451 Remove gstalsa.c and alsaclock. No more cruft here.
13453 2005-08-18 Wim Taymans <wim@fluendo.com>
13455 * gst-libs/gst/rtp/gstbasertpdepayload.c:
13456 (gst_base_rtp_depayload_chain),
13457 (gst_base_rtp_depayload_add_to_queue),
13458 (gst_base_rtp_depayload_push),
13459 (gst_base_rtp_depayload_queue_release):
13460 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13461 Fix for RTPBuffer changes.
13463 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
13464 (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
13465 (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
13466 (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
13467 (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
13468 (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
13469 (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
13470 (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
13471 (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
13472 (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
13473 (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
13474 (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
13475 (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
13476 (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
13477 (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
13478 (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
13479 (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
13480 (gst_rtpbuffer_get_payload):
13481 * gst-libs/gst/rtp/gstrtpbuffer.h:
13482 Don't subclass GstBuffer but add methods and helper functions
13483 to construct and manipulate RTP packets in regular GstBuffers.
13485 2005-08-18 Stefan Kost <ensonic@users.sf.net>
13487 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
13488 moved statement below switch
13489 * gst/volume/gstvolume.c: (gst_volume_class_init):
13492 2005-08-16 Wim Taymans <wim@fluendo.com>
13494 * gst-libs/gst/audio/gstbaseaudiosrc.c:
13495 (gst_base_audio_src_change_state):
13496 Open and close device in READY<->NULL state change.
13498 2005-08-16 Andy Wingo <wingo@pobox.com>
13500 * examples/seeking/Makefile.am: Don't compile non-compiling
13501 compiled objects with the compiler.
13503 * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
13506 2005-08-12 Philippe Khalaf <burger@speedy.org>
13507 * gst-libs/gst/rtp/gstbasertpdepayload.c:
13508 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13509 Made a thread to release the queue.
13510 Removed timestamp conversion for now.
13512 2005-08-10 Philippe Khalaf <burger@speedy.org>
13513 * gst-libs/gst/rtp/gstbasertpdepayload.c:
13514 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13515 Added rtp timestamp -> gst timestamp conversion.
13516 Fixed several problems with queue.
13518 2005-08-09 Tim-Philipp Müller <tim at centricular dot net>
13520 * gst-libs/gst/audio/gstaudioclock.h:
13521 * gst-libs/gst/audio/gstaudiofilter.h:
13522 * gst-libs/gst/audio/gstaudiosink.h:
13523 * gst-libs/gst/audio/gstaudiosrc.h:
13524 * gst-libs/gst/audio/gstbaseaudiosink.h:
13525 * gst-libs/gst/audio/gstbaseaudiosrc.h:
13526 * gst-libs/gst/audio/gstringbuffer.h:
13527 * gst-libs/gst/net/gstnetbuffer.h:
13528 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13529 * gst-libs/gst/rtp/gstrtpbuffer.h:
13530 Add padding (you will need to rebuild gst-plugins-base,
13531 gst-plugins and all applications afterwards!)
13533 2005-08-09 Tim-Philipp Müller <tim at centricular dot net>
13535 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
13536 (gst_riff_parse_chunk):
13537 Fix bug in debug message and add some more debug messages.
13539 2005-08-08 Edward Hervey <edward@fluendo.com>
13541 * gst-libs/gst/riff/riff-media.c:
13542 backported updates since branch
13544 2005-08-08 Andy Wingo <wingo@pobox.com>
13546 * gst-libs/gst/audio/gstbaseaudiosink.c
13547 (gst_base_audio_sink_change_state): Open the device in NULL->READY
13548 like good elements should. Close on READY->NULL too.
13550 * gst-libs/gst/audio/gstaudiosink.c
13551 (gst_audioringbuffer_open_device,
13552 (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
13553 (gst_audioringbuffer_release): Updates for new ring buffer API,
13554 hook into the new audio sink api.
13556 * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
13557 (GstAudioSinkClass.close): Just open and close the device -- no
13558 resource allocation or configuration.
13559 (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
13560 vmethods, handle device setup and resource allocation.
13562 * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
13563 (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
13566 * gst-libs/gst/audio/gstringbuffer.h
13567 (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
13570 * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
13571 (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
13572 New API functions. The device should be opened before acquiring
13573 and closed after releasing.
13575 2005-08-08 Tim-Philipp Müller <tim at centricular dot net>
13577 * gst-libs/gst/interfaces/mixer.h:
13578 Reset padding to GST_PADDING.
13580 2005-08-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13582 * gst/playback/gstplaybin.c: (remove_sinks):
13583 Remove visualization from parent explicitely; works around some
13584 apparent refcount issue that I haven't tracked down yet.
13586 2005-08-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13588 * ext/alsa/gstalsasink.c: (set_hwparams):
13589 Assign debug category, add negotiation debug msgs.
13591 2005-08-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13593 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
13594 Fix error code for file-not-found to NOT_FOUND.
13596 2005-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
13598 * common/gtk-doc-plugins.mak:
13599 * docs/plugins/Makefile.am:
13600 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13601 * docs/plugins/gst-plugins-base-plugins-sections.txt:
13602 renamed to actual element names, so much nicer to look at
13603 * docs/plugins/tmpl/gstmultifdsink.sgml:
13605 * docs/plugins/tmpl/multifdsink.sgml:
13606 * docs/plugins/tmpl/tcpserversink.sgml:
13608 * ext/alsa/gstalsa.c:
13609 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
13610 * ext/ogg/gstoggmux.c:
13611 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
13612 * gst/playback/gstdecodebin.c:
13613 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
13614 * gst/tcp/gsttcpserversink.c:
13615 various fixes and documentation additions
13617 2005-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
13619 * common/Makefile.am:
13620 * common/gstdoc-scangobj:
13621 * common/gtk-doc-plugins.mak:
13622 * common/gtk-doc.mak:
13623 add a custom scangobj that uses the registry
13624 add a custom gtk-doc-plugins.mak that uses it
13625 some doc build fixes
13627 * docs/Makefile.am:
13628 * docs/plugins/Makefile.am:
13629 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13630 * docs/plugins/gst-plugins-base-plugins-sections.txt:
13631 * docs/plugins/gst-plugins-base-plugins.types:
13632 * docs/plugins/tmpl/gstmultifdsink.sgml:
13633 add docs for one element, multifdsink
13634 * gst/adder/gstadder.h:
13635 * gst/volume/gstvolume.h:
13636 don't privatize enum
13637 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
13638 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
13639 (gst_sync_method_get_type), (gst_client_status_get_type),
13640 (gst_multifdsink_class_init),
13641 (gst_multifdsink_client_queue_buffer),
13642 (gst_multifdsink_handle_client_write):
13643 * gst/tcp/gstmultifdsink.h:
13644 * gst/tcp/gsttcp.h:
13645 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
13646 (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
13647 (gst_tcpclientsink_render):
13648 * gst/tcp/gsttcpclientsink.h:
13649 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
13650 (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
13651 (gst_tcpclientsrc_start):
13652 * gst/tcp/gsttcpclientsrc.h:
13653 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
13654 (gst_tcpserversrc_init), (gst_tcpserversrc_create):
13655 * gst/tcp/gsttcpserversrc.h:
13656 * gst/typefind/gsttypefindfunctions.c:
13657 remove superfluous Type stuff
13659 2005-08-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13661 * gst/playback/gstplaybin.c: (gen_video_element):
13664 2005-08-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13666 * gst-libs/gst/gconf/gconf.c:
13667 * gst-libs/gst/gconf/gconf.h:
13668 Fix some Andy Problem [tm].
13670 2005-08-04 Andy Wingo <wingo@pobox.com>
13672 * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
13673 * gst/ffmpegcolorspace/gstffmpegcolorspace.c
13674 (gst_ffmpegcsp_get_size): Adapt to API changes.
13676 * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
13677 Implement an in-place do-nothing transform.
13679 2005-08-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13681 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
13682 (gst_ximagesink_renegotiate_size):
13683 Do not set new window sizes yet if we prepare a new buffer size
13684 for upstream renegotiation (software scaling) at some point in the
13685 future, because this new size waqs not actually accepted yet. Once
13686 accepted, renegotiation later on will set the new sizes just fine.
13687 Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
13688 embedding testcase.
13690 2005-08-03 Andy Wingo <wingo@pobox.com>
13692 * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
13693 (gst_ximagesink_buffer_alloc):
13694 Protect the height, width, and desired_caps with the pool_lock.
13695 Fixes videotestsrc ! queue ! ximagesink.
13697 2005-08-02 Edward Hervey <edward@fluendo.com>
13699 * gst/volume/gstvolume.c:
13700 include left from controller cleanup
13702 2005-08-02 Jan Schmidt <thaytan@mad.scientist.com>
13703 * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
13704 Stop collectpads before calling the parent state
13705 change function on PAUSED->READY.
13707 2005-08-01 Jan Schmidt <thaytan@mad.scientist.com>
13709 When testing for X libs, use the X CFlags
13710 * gst/adder/gstadder.c: (gst_adder_change_state):
13711 Stop the collectpads before calling parent state change function
13712 on PAUSED->READY, otherwise we deadlock deactivating pads.
13714 2005-08-01 Stefan Kost <ensonic@users.sf.net>
13717 * docs/libs/tmpl/gstcolorbalance.sgml:
13718 * docs/libs/tmpl/gstmixer.sgml:
13719 * examples/Makefile.am:
13720 * gst/sine/Makefile.am:
13721 * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
13722 (gst_sinesrc_set_property), (plugin_init):
13723 * gst/sine/gstsinesrc.h:
13724 * gst/volume/Makefile.am:
13725 * gst/volume/gstvolume.c: (gst_volume_set_volume),
13726 (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
13727 (volume_process_float), (volume_process_int16),
13728 (volume_set_property), (plugin_init):
13729 * gst/volume/gstvolume.h:
13730 deactivate and remove dparams (libgstcontrol)
13732 2005-07-29 Wim Taymans <wim@fluendo.com>
13734 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
13735 Convert me to BaseTransform!! help..
13737 2005-07-29 Andy Wingo <wingo@pobox.com>
13739 * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
13742 * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
13743 support of both endiannesses.
13745 2005-07-28 Tim-Philipp Müller <tim at centricular dot net>
13747 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
13748 Fix confusing debug message (s/event/query/)
13750 2005-07-28 Tim-Philipp Müller <tim at centricular dot net>
13752 * gst/videotestsrc/videotestsrc.h:
13753 Use "_stdint.h" instead of <stdint.h>
13755 2005-07-27 Wim Taymans <wim@fluendo.com>
13757 * ext/vorbis/Makefile.am:
13758 Revert wrong commit.
13760 2005-07-27 Wim Taymans <wim@fluendo.com>
13762 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
13763 More compilation fixen.
13765 2005-07-27 Wim Taymans <wim@fluendo.com>
13767 * gst-libs/gst/audio/gstbaseaudiosink.c:
13768 (gst_base_audio_sink_event), (gst_base_audio_sink_render),
13769 (gst_base_audio_sink_create_ringbuffer),
13770 (gst_base_audio_sink_change_state):
13773 2005-07-27 Wim Taymans <wim@fluendo.com>
13775 * examples/seeking/seek.c: (setup_dynamic_link),
13776 (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
13777 (query_positions_elems), (query_positions_pads), (do_seek):
13778 Update seek example.
13780 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13781 (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
13782 (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
13783 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
13784 (gst_ogg_demux_handle_event),
13785 (gst_ogg_demux_deactivate_current_chain),
13786 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13787 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13788 (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
13789 (gst_ogg_demux_loop):
13790 * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
13791 * ext/theora/theoradec.c: (theora_dec_src_event),
13792 (theora_dec_src_getcaps), (theora_dec_sink_event),
13793 (theora_dec_push), (theora_dec_chain):
13794 * ext/vorbis/Makefile.am:
13795 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
13796 (vorbis_dec_sink_event), (vorbis_dec_push),
13797 (vorbis_handle_data_packet):
13798 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
13799 (gst_vorbisenc_chain):
13800 * gst/playback/gststreaminfo.c: (cb_probe):
13801 * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
13802 * gst/videorate/gstvideorate.c: (gst_videorate_event):
13803 * gst/videoscale/gstvideoscale.c:
13804 (gst_videoscale_handle_src_event):
13805 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
13806 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
13807 (gst_ximagesink_navigation_send_event):
13808 * sys/xvimage/xvimagesink.c:
13809 (gst_xvimagesink_navigation_send_event):
13810 Various event updates and cleanups
13812 2005-07-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13814 * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
13815 Fix segfault for I420/YV12.
13817 2005-07-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13819 * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
13822 2005-07-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13824 * gst/playback/gstplaybin.c: (gen_video_element),
13825 (gen_audio_element):
13826 Switch to auto*sink elements as default sinks; add volume element
13827 so that volume control in totem works.
13829 2005-07-21 Wim Taymans <wim@fluendo.com>
13831 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
13832 * gst/playback/gstplaybin.c: (setup_sinks),
13833 (gst_play_bin_change_state):
13834 Refcount fix and more comments.
13836 2005-07-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
13838 * sys/ximage/Makefile.am:
13839 * sys/ximage/ximage.c: (plugin_init):
13840 * sys/ximage/ximagesink.c:
13841 Prepare for adding ximagesrc, rename of plugin to ximage etc.
13844 2005-07-21 Wim Taymans <wim@fluendo.com>
13846 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13847 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13848 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13849 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13850 (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13851 (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
13852 (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
13853 (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
13854 (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
13855 Generate correct disconts for live chained oggs.
13857 * gst-libs/gst/audio/gstbaseaudiosink.c:
13858 (gst_base_audio_sink_render),
13859 (gst_base_audio_sink_create_ringbuffer),
13860 (gst_base_audio_sink_change_state):
13861 Handle discont math correctly.
13863 * gst/playback/gstplaybin.c: (add_sink):
13864 Some small debug cleanup.
13866 2005-07-21 Wim Taymans <wim@fluendo.com>
13868 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
13869 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13870 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13871 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13872 (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13873 (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
13874 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13875 (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
13876 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13877 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
13878 (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
13879 (gst_ogg_demux_change_state), (gst_ogg_print):
13880 Reorganize code to send the right disconts when in streaming
13883 2005-07-20 Andy Wingo <wingo@pobox.com>
13885 * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
13886 fix (?), fixes a seggie mcfalterson (#310894).
13888 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13890 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
13891 (gst_ogg_mux_set_header_on_caps):
13892 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
13893 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
13894 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
13895 * gst-libs/gst/audio/multichannel.c:
13896 (gst_audio_set_channel_positions),
13897 (gst_audio_set_structure_channel_positions_list):
13898 * gst/playback/gstdecodebin.c: (dynamic_create):
13899 * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
13900 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
13901 Fixes for API changes in core.
13903 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13905 * gst/playback/gstplaybasebin.c: (fill_buffer):
13906 Use _new_custom() so we can set custom message types for buffering
13909 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13912 * gst-libs/gst/Makefile.am:
13913 * gst-libs/gst/gconf/.cvsignore:
13914 * gst-libs/gst/gconf/Makefile.am:
13915 * gst-libs/gst/gconf/test-gconf.c:
13916 * pkgconfig/Makefile.am:
13917 * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
13918 * pkgconfig/gstreamer-gconf.pc.in:
13919 Remove gconf stuff, use gconf elements instead from now on.
13921 2005-07-20 Wim Taymans <wim@fluendo.com>
13923 * gst-libs/gst/audio/TODO:
13924 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
13925 (gst_audio_clock_get_internal_time):
13926 * gst-libs/gst/audio/gstaudioclock.h:
13927 * gst-libs/gst/audio/gstbaseaudiosink.c:
13928 (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
13929 (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
13930 (gst_base_audio_sink_render),
13931 (gst_base_audio_sink_create_ringbuffer),
13932 (gst_base_audio_sink_change_state):
13933 Make sure the audio clock always returns an increasing value.
13935 2005-07-19 Andy Wingo <wingo@pobox.com>
13937 * gst/videotestsrc/: Cleanups.
13939 2005-07-19 Wim Taymans <wim@fluendo.com>
13941 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
13944 2005-07-19 Wim Taymans <wim@fluendo.com>
13946 * examples/seeking/seek.c: (make_dv_pipeline),
13947 (make_vorbis_theora_pipeline), (query_rates),
13948 (query_positions_elems), (query_positions_pads), (do_seek):
13949 Make correct DV pipeline.
13951 2005-07-18 Andy Wingo <wingo@pobox.com>
13953 * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
13954 default. Also because it's the only thing that really works. (This
13955 is used in the GConf elements).
13956 Use AS_LIBTOOL_TAGS.
13958 2005-07-18 Wim Taymans <wim@fluendo.com>
13960 * gst/playback/gstdecodebin.c: (remove_element_chain):
13961 * gst/playback/gstplaybin.c: (add_sink):
13962 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
13963 (gst_stream_info_set_mute):
13964 * gst/playback/gststreamselector.c:
13965 (gst_stream_selector_get_linked_pad),
13966 (gst_stream_selector_getcaps), (gst_stream_selector_chain):
13967 More leak and compile fixes.
13969 2005-07-18 Wim Taymans <wim@fluendo.com>
13971 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
13972 (query_rates), (query_positions_elems), (query_positions_pads),
13973 (do_seek), (seek_cb), (stop_seek):
13974 Updated seek example.
13976 * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
13977 * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
13978 (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
13979 * gst/playback/gstplaybin.c: (add_sink):
13980 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
13981 (gst_stream_info_set_mute):
13982 Some refcount leak fixes.
13984 2005-07-16 Wim Taymans <wim@fluendo.com>
13986 * gst-libs/gst/audio/gstbaseaudiosink.c:
13987 (gst_base_audio_sink_render):
13988 Align samples even if we have roundoff errors in the
13989 timestamp conversion.
13991 2005-07-16 Wim Taymans <wim@fluendo.com>
13993 * docs/libs/tmpl/gstringbuffer.sgml:
13994 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
13995 (query_rates), (query_positions_elems), (query_positions_pads),
13996 (update_scale), (do_seek):
13997 Updated seek example.
13999 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14000 (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
14001 (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
14002 (gst_ogg_demux_loop):
14003 Push out correct discont values.
14005 * ext/theora/theoradec.c: (theora_dec_src_convert),
14006 (theora_dec_sink_convert), (theora_dec_src_getcaps),
14007 (theora_dec_sink_event), (theora_handle_type_packet),
14008 (theora_handle_header_packet), (theora_dec_push),
14009 (theora_handle_data_packet), (theora_dec_chain),
14010 (theora_dec_change_state):
14011 Better timestamping.
14013 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
14014 (vorbis_dec_sink_event), (vorbis_dec_push),
14015 (vorbis_handle_data_packet), (vorbis_dec_chain):
14016 * ext/vorbis/vorbisdec.h:
14017 Better timestamping.
14019 * gst-libs/gst/audio/gstbaseaudiosink.c:
14020 (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
14021 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
14022 Handle syncing on timestamps instead of sample offsets. Make
14023 use of DISCONT values as described in design docs.
14025 * gst-libs/gst/audio/gstbaseaudiosrc.c:
14026 (gst_base_audio_src_get_time):
14027 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
14028 (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
14029 (gst_ring_buffer_read):
14030 * gst-libs/gst/audio/gstringbuffer.h:
14031 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
14032 (gst_ximagesink_show_frame):
14033 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
14034 Correcly convert buffer timestamp to stream time.
14036 2005-07-16 Wim Taymans <wim@fluendo.com>
14038 * gst/audioconvert/gstaudioconvert.c:
14039 (gst_audio_convert_get_buffer):
14040 Timestamp buffers correctly.
14042 * gst/playback/gstplaybin.c: (gen_video_element):
14043 Make internal fakesink silent.
14045 2005-07-15 Wim Taymans <wim@fluendo.com>
14047 * gst/ffmpegcolorspace/Makefile.am:
14048 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14049 (gst_ffmpegcsp_caps_remove_format_info),
14050 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
14051 (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
14052 (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
14053 (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
14054 Ported ffmpegcolorspace to basetransform.
14056 * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
14057 * gst/volume/gstvolume.c: (volume_transform):
14060 2005-07-14 Wim Taymans <wim@fluendo.com>
14062 * gst/videotestsrc/Makefile.am:
14063 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
14064 (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
14065 (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
14066 (gst_videotestsrc_init), (gst_videotestsrc_event),
14067 (gst_videotestsrc_create), (gst_videotestsrc_start),
14068 (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
14069 (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
14070 (gst_videotestsrc_get_property):
14071 * gst/videotestsrc/gstvideotestsrc.h:
14072 Make videotestsrc a pushsrc.
14074 2005-07-14 Wim Taymans <wim@fluendo.com>
14076 * gst/tcp/gstfdset.c: (gst_fdset_free):
14077 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
14078 (gst_multifdsink_add), (gst_multifdsink_remove),
14079 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
14080 (gst_multifdsink_remove_client_link),
14081 (gst_multifdsink_client_queue_data),
14082 (gst_multifdsink_client_queue_caps),
14083 (gst_multifdsink_client_queue_buffer),
14084 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
14085 (gst_multifdsink_stop):
14086 * gst/tcp/gstmultifdsink.h:
14089 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
14090 Also draw image when not from a pool.
14092 2005-07-14 Wim Taymans <wim@fluendo.com>
14094 * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
14095 (mute_stream), (silence_stream):
14096 Small debug additions.
14098 2005-07-14 Wim Taymans <wim@fluendo.com>
14100 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
14101 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
14102 (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
14103 Better error recovery, ignore unconnected pads and
14106 2005-07-14 Thomas Vander Stichele <thomas at apestaart dot org>
14108 * docs/libs/tmpl/gstaudio.sgml:
14109 * docs/libs/tmpl/gstcolorbalance.sgml:
14110 * docs/libs/tmpl/gstgconf.sgml:
14111 * docs/libs/tmpl/gstmixer.sgml:
14112 * docs/libs/tmpl/gstringbuffer.sgml:
14113 * docs/libs/tmpl/gsttuner.sgml:
14114 * gst-libs/gst/audio/gstbaseaudiosrc.c:
14115 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
14116 (gst_tcpclientsrc_class_init):
14117 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
14118 (gst_tcpserversrc_class_init):
14119 * sys/v4l/gstv4lelement.c:
14120 more autistic cleanliness in functions/names/defines
14122 2005-07-13 Thomas Vander Stichele <thomas at apestaart dot org>
14125 make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
14126 added manually to each Makefile.am so we are sure it goes
14127 *last* and doesn't add -L flags before linking in libs of our
14128 own, like, say, internal .la libs, that then accidentally pick
14129 up the installed copy.
14130 * docs/libs/Makefile.am:
14131 * ext/alsa/Makefile.am:
14132 * ext/cdparanoia/Makefile.am:
14133 * ext/gnomevfs/Makefile.am:
14134 * ext/libvisual/Makefile.am:
14135 * ext/ogg/Makefile.am:
14136 * ext/theora/Makefile.am:
14137 * ext/vorbis/Makefile.am:
14138 * gst-libs/gst/video/Makefile.am:
14139 * gst/adder/Makefile.am:
14140 * gst/audioconvert/Makefile.am:
14141 * gst/audiorate/Makefile.am:
14142 * gst/audioscale/Makefile.am:
14143 * gst/ffmpegcolorspace/Makefile.am:
14144 * gst/playback/Makefile.am:
14145 * gst/sine/Makefile.am:
14146 * gst/subparse/Makefile.am:
14147 * gst/tags/Makefile.am:
14148 * gst/tcp/Makefile.am:
14149 * gst/typefind/Makefile.am:
14150 * gst/videorate/Makefile.am:
14151 * gst/videoscale/Makefile.am:
14152 * gst/videotestsrc/Makefile.am:
14153 * gst/volume/Makefile.am:
14154 * sys/v4l/Makefile.am:
14155 * sys/ximage/Makefile.am:
14156 * sys/xvimage/Makefile.am:
14157 adapt properly to this change. This should make sure that
14158 plugins and libs properly link to the as-yet-uninstalled
14159 copies of stuff like libgstinterfaces and libgstvideo
14161 2005-07-13 Andy Wingo <wingo@pobox.com>
14163 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
14164 (gst_v4lsrc_fixate): Fixate on format as well.
14166 * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy)
14167 (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
14168 buffer points to it.
14169 (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
14170 rather just doing X calls ourselves. Also fixes a memleak.
14172 2005-07-12 Andy Wingo <wingo@pobox.com>
14174 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property)
14175 (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init)
14176 (gst_v4lsrc_create): Re-add the copy-mode property, default to
14177 TRUE to avoid deadlocks if an element holds on to our buffers.
14179 2005-07-11 Thomas Vander Stichele <thomas at apestaart dot org>
14181 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
14182 (gst_sinesrc_init), (gst_sinesrc_create),
14183 (gst_sinesrc_set_property), (gst_sinesrc_get_property),
14184 (gst_sinesrc_start):
14185 * gst/sine/gstsinesrc.h:
14186 removing num-buffers property before moving it
14188 2005-07-10 Thomas Vander Stichele <thomas at apestaart dot org>
14191 use overridable ERROR_CFLAGS
14192 * docs/libs/gst-plugins-base-libs.types:
14193 * docs/libs/tmpl/gstringbuffer.sgml:
14194 * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
14195 (gst_alsasink_class_init):
14196 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
14197 (gst_alsasrc_class_init):
14198 * gst-libs/gst/audio/audio.h:
14199 * gst-libs/gst/audio/gstaudioclock.h:
14200 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
14201 (gst_audio_filter_base_init), (gst_audio_filter_class_init),
14202 (gst_audio_filter_link), (gst_audio_filter_init),
14203 (gst_audio_filter_chain), (gst_audio_filter_set_property),
14204 (gst_audio_filter_get_property),
14205 (gst_audio_filter_class_add_pad_templates):
14206 * gst-libs/gst/audio/gstaudiofilter.h:
14207 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
14208 (gst_audio_filter_template_get_type),
14209 (gst_audio_filter_template_base_init),
14210 (gst_audio_filter_template_class_init),
14211 (gst_audio_filter_template_init),
14212 (gst_audio_filter_template_set_property),
14213 (gst_audio_filter_template_get_property), (plugin_init),
14214 (gst_audio_filter_template_setup),
14215 (gst_audio_filter_template_filter),
14216 (gst_audio_filter_template_filter_inplace):
14217 * gst-libs/gst/audio/gstaudiosink.c:
14218 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14219 (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
14220 (gst_audioringbuffer_release), (gst_audioringbuffer_start),
14221 (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
14222 (gst_audio_sink_base_init), (gst_audio_sink_class_init),
14223 (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
14224 * gst-libs/gst/audio/gstaudiosink.h:
14225 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
14226 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
14227 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14228 (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
14229 (gst_audioringbuffer_delay), (gst_audio_src_base_init),
14230 (gst_audio_src_class_init), (gst_audio_src_init),
14231 (gst_audio_src_create_ringbuffer):
14232 * gst-libs/gst/audio/gstaudiosrc.h:
14233 * gst-libs/gst/audio/gstbaseaudiosink.c:
14234 (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
14235 (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
14236 (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
14237 (gst_base_audio_sink_set_property),
14238 (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
14239 (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
14240 (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
14241 (gst_base_audio_sink_create_ringbuffer),
14242 (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
14243 * gst-libs/gst/audio/gstbaseaudiosink.h:
14244 * gst-libs/gst/audio/gstbaseaudiosrc.c:
14245 (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
14246 (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
14247 (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
14248 (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
14249 (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
14250 (gst_base_audio_src_event), (gst_base_audio_src_create),
14251 (gst_base_audio_src_create_ringbuffer),
14252 (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
14253 * gst-libs/gst/audio/gstbaseaudiosrc.h:
14254 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
14255 (gst_ring_buffer_class_init), (gst_ring_buffer_init),
14256 (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
14257 (gst_ring_buffer_debug_spec_caps),
14258 (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
14259 (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
14260 (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
14261 (gst_ring_buffer_start), (gst_ring_buffer_pause),
14262 (gst_ring_buffer_stop), (gst_ring_buffer_delay),
14263 (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
14264 (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
14265 (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
14266 (gst_ring_buffer_clear):
14267 * gst-libs/gst/audio/gstringbuffer.h:
14268 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
14269 (gst_video_sink_class_init), (gst_video_sink_get_type):
14270 * gst-libs/gst/video/videosink.h:
14271 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
14272 (gst_multifdsink_class_init),
14273 (gst_multifdsink_handle_client_write),
14274 (gst_multifdsink_change_state):
14275 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
14276 (gst_tcpclientsink_setcaps):
14277 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
14278 (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
14279 (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
14280 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
14281 (gst_ximagesink_send_pending_navigation),
14282 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
14283 (gst_ximagesink_class_init), (gst_ximagesink_get_type):
14284 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
14285 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
14286 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
14287 (gst_xvimagesink_send_pending_navigation),
14288 (gst_xvimagesink_navigation_send_event),
14289 (gst_xvimagesink_set_xwindow_id),
14290 (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
14291 (gst_xvimagesink_get_type):
14292 more macro splitting
14294 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
14296 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
14297 plug a memleak, allows me to import 1479 albums in one go
14299 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14300 (vorbis_handle_type_packet), (vorbis_dec_chain),
14301 (vorbis_dec_change_state):
14302 fix some format strings
14304 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
14306 * docs/libs/tmpl/gstcolorbalance.sgml:
14307 * docs/libs/tmpl/gstmixer.sgml:
14308 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
14309 (gst_alsasink_set_property), (gst_alsasink_get_property):
14310 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
14311 (gst_alsasrc_set_property), (gst_alsasrc_get_property):
14312 add device property
14314 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
14316 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
14317 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
14318 (audiocast_register_listener), (audiocast_thread_run),
14319 (gst_gnomevfssrc_send_additional_headers_callback),
14320 (gst_gnomevfssrc_received_headers_callback),
14321 (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
14322 (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
14323 (gst_gnomevfssrc_get_size):
14324 add/clean up debugging
14325 * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
14328 2005-07-07 Andy Wingo <wingo@pobox.com>
14330 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
14331 framerate. Need to get a handle on when exactly this function is
14334 * sys/v4l/v4lsrc_calls.h:
14335 * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
14336 (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
14337 (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
14339 * sys/v4l/v4l_calls.h: Cast to V4lElement.
14340 * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
14341 v4lelements are sources.
14343 * sys/v4l/gstv4lxoverlay.h:
14344 * sys/v4l/gstv4lxoverlay.c:
14345 * sys/v4l/gstv4ltuner.h:
14346 * sys/v4l/gstv4ltuner.c: Header loc fixen.
14348 * sys/v4l/gstv4lsrc.h:
14349 * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
14350 PushSrc/BaseSrc. Removed most sync-related properties, videorate
14351 or something should handle that. Made a live source.
14353 * sys/v4l/gstv4lelement.h:
14354 * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
14355 signals. Some cleanups.
14357 * sys/v4l/gstv4lcolorbalance.h: Interface header update.
14359 * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
14362 * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
14365 * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
14367 2005-07-07 Wim Taymans <wim@fluendo.com>
14369 * ext/theora/theoradec.c: (theora_get_query_types),
14370 (theora_dec_src_getcaps), (theora_dec_push):
14371 * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
14372 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
14373 Remove deprecated/unused query types.
14375 2005-07-06 Wim Taymans <wim@fluendo.com>
14377 * ext/alsa/Makefile.am:
14378 * ext/alsa/gstalsaplugin.c: (plugin_init):
14379 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
14380 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
14381 (gst_alsasrc_dispose), (gst_alsasrc_base_init),
14382 (gst_alsasrc_class_init), (gst_alsasrc_init),
14383 (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
14384 (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
14385 (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
14386 (gst_alsasrc_reset):
14387 * ext/alsa/gstalsasrc.h:
14388 * gst-libs/gst/audio/Makefile.am:
14389 * gst-libs/gst/audio/gstaudiosink.c:
14390 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14391 (gst_audioringbuffer_start):
14392 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
14393 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
14394 (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
14395 (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
14396 (gst_audioringbuffer_release), (gst_audioringbuffer_start),
14397 (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
14398 (gst_audiosrc_base_init), (gst_audiosrc_class_init),
14399 (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
14400 * gst-libs/gst/audio/gstaudiosrc.h:
14401 * gst-libs/gst/audio/gstbaseaudiosink.c:
14402 (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
14403 (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
14404 (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
14405 * gst-libs/gst/audio/gstbaseaudiosrc.c:
14406 (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
14407 (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
14408 (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
14409 (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
14410 (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
14411 (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
14412 (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
14413 (gst_baseaudiosrc_change_state):
14414 * gst-libs/gst/audio/gstbaseaudiosrc.h:
14415 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
14416 (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
14417 (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
14418 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
14419 (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
14420 (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
14421 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
14422 * gst-libs/gst/audio/gstringbuffer.h:
14423 Added audiosource base classes.
14424 Ported alsasrc, still very basic.
14426 2005-07-06 Wim Taymans <wim@fluendo.com>
14428 * ext/theora/theoradec.c: (theora_dec_src_getcaps),
14429 (theora_dec_push), (theora_handle_data_packet):
14430 Prepare for better timestamp fix later.
14432 * gst/audioconvert/gstaudioconvert.c:
14433 List most accurate caps first
14435 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
14436 Use proper pad task function.
14438 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
14439 (gst_xvimagesink_show_frame):
14440 Fix deadlock when alloc failed.
14442 2005-07-05 Andy Wingo <wingo@pobox.com>
14444 * ext/gnomevfs/gstgnomevfssrc.c:
14445 * gst/sine/gstsinesrc.c:
14446 * gst/tcp/gsttcpserversrc.c:
14447 * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
14449 * sys/v4l/: Port from 0.8.
14451 * Many files: Null if we got it....
14453 2005-07-05 Andy Wingo <wingo@pobox.com>
14455 * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read):
14456 * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
14459 2005-07-05 Wim Taymans <wim@fluendo.com>
14462 * gst/tcp/Makefile.am:
14464 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
14465 (gst_multifdsink_base_init), (gst_multifdsink_class_init),
14466 (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
14467 (is_sync_frame), (gst_multifdsink_handle_client_write),
14468 (gst_multifdsink_render), (gst_multifdsink_start),
14469 (gst_multifdsink_stop), (gst_multifdsink_change_state):
14470 * gst/tcp/gstmultifdsink.h:
14471 * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
14472 (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
14473 (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
14474 * gst/tcp/gsttcp.h:
14475 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
14476 (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
14477 (gst_tcpclientsink_render), (gst_tcpclientsink_start),
14478 (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
14479 * gst/tcp/gsttcpclientsink.h:
14480 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
14481 (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
14482 (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
14483 (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
14484 (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
14485 * gst/tcp/gsttcpclientsrc.h:
14486 * gst/tcp/gsttcpplugin.c: (plugin_init):
14487 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
14488 * gst/tcp/gsttcpserversink.h:
14489 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
14490 (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
14491 (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
14492 (gst_tcpserversrc_create), (gst_tcpserversrc_start),
14493 (gst_tcpserversrc_stop):
14494 * gst/tcp/gsttcpserversrc.h:
14495 * gst/tcp/gsttcpsink.c:
14496 * gst/tcp/gsttcpsink.h:
14497 * gst/tcp/gsttcpsrc.c:
14498 * gst/tcp/gsttcpsrc.h:
14499 Ported tcp plugins to 0.9.
14502 2005-07-05 Andy Wingo <wingo@pobox.com>
14504 * gst/playback/gstplaybasebin.c (fill_buffer):
14505 message_new_application fixen.
14507 * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
14510 2005-07-04 Wim Taymans <wim@fluendo.com>
14512 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
14513 Set caps on output buffer.
14515 2005-07-04 Andy Wingo <wingo@pobox.com>
14517 * ext/gnomevfs/gstgnomevfssrc.c
14518 (gst_gnomevfssrc_received_headers_callback)
14519 (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
14522 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
14523 No refcount leakage.
14525 * configure.ac: Enable -Werror.
14527 * ext/theora/theoradec.c (theora_dec_src_getcaps):
14528 * gst/audioconvert/bufferframesconvert.c
14529 (buffer_frames_convert_fixate):
14530 * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
14531 (gst_audio_convert_fixate):
14532 * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
14533 (gst_sinesrc_create): Fixate func changes.
14535 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
14536 (gst_ximagesink_buffer_alloc): Unused var.
14538 2005-07-01 Andy Wingo <wingo@pobox.com>
14540 * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
14541 getcaps to do explicit caps. Needs to be done in all decoders,
14542 possibly via a base class.
14544 * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
14546 * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
14547 caps on the sink pad, just rely on the pad template. Also, setting
14548 ANY caps on a pad is not valid because the caps are not fixed.
14550 * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
14551 caps on the buffer, and get the width from the desired_caps if
14553 (gst_ximagesink_renegotiate_size): Implement via setting the
14554 desired_caps on the ximagesink.
14555 (gst_ximagesink_setcaps): Only reset the width of the player if it
14556 wasn't already set. Not sure if this is right.
14557 (gst_ximagesink_show_frame): Memcpy only for normal buffers.
14559 * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
14560 that the user wants. NULL unless the window has been resized.
14562 * gst/volume/gstvolume.c (volume_transform): Adapt to
14563 basetransform refcount changes.
14565 2005-07-01 Andy Wingo <wingo@pobox.com>
14567 * gst/videoscale/gstvideoscale.c:
14568 * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
14569 from BaseTransform, implements a transform_caps. Removed dead code
14570 including some PAR stuff that was never reached -- should probably
14571 be added back somehow.
14573 2005-07-01 Andy Wingo <wingo@pobox.com>
14575 * gst/videoscale: Merge David's work from 0.8 branch. Changes to
14578 2005-06-30 Thomas Vander Stichele <thomas at apestaart dot org>
14581 * docs/libs/Makefile.am:
14582 * docs/libs/gst-plugins-libs.types:
14583 * ext/alsa/Makefile.am:
14584 * ext/alsa/gstalsamixer.h:
14585 * ext/alsa/gstalsamixeroptions.h:
14586 * ext/alsa/gstalsamixertrack.h:
14587 * gst-libs/gst/Makefile.am:
14588 * gst-libs/gst/colorbalance/.cvsignore:
14589 * gst-libs/gst/colorbalance/Makefile.am:
14590 * gst-libs/gst/colorbalance/colorbalance-marshal.list:
14591 * gst-libs/gst/colorbalance/colorbalance.c:
14592 * gst-libs/gst/colorbalance/colorbalance.h:
14593 * gst-libs/gst/colorbalance/colorbalance.vcproj:
14594 * gst-libs/gst/colorbalance/colorbalancechannel.c:
14595 * gst-libs/gst/colorbalance/colorbalancechannel.h:
14596 * gst-libs/gst/interfaces/Makefile.am:
14597 * gst-libs/gst/interfaces/colorbalance.c:
14598 (gst_color_balance_class_init):
14599 * gst-libs/gst/interfaces/colorbalance.h:
14600 * gst-libs/gst/interfaces/interfaces-marshal.list:
14601 * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
14602 * gst-libs/gst/interfaces/mixer.h:
14603 * gst-libs/gst/interfaces/mixeroptions.h:
14604 * gst-libs/gst/interfaces/navigation.c:
14605 * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
14606 * gst-libs/gst/interfaces/tuner.h:
14607 * gst/volume/Makefile.am:
14608 * gst/volume/gstvolume.c:
14609 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
14610 * sys/ximage/Makefile.am:
14611 * sys/ximage/ximagesink.c:
14612 * sys/xvimage/Makefile.am:
14613 * sys/xvimage/xvimagesink.c:
14614 fold in all interfaces into an interfaces dir, preserving CVS
14617 2005-06-30 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14619 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
14620 Fix build after riff changes.
14622 2005-06-30 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14624 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
14625 (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
14626 (gst_riff_create_video_template_caps),
14627 (gst_riff_create_audio_template_caps),
14628 (gst_riff_create_iavs_template_caps):
14629 * gst-libs/gst/riff/riff-media.h:
14630 * gst-libs/gst/riff/riff-read.h:
14631 * gst-libs/gst/riff/riff.c: (gst_riff_init):
14632 Add gst_riff_init() to initialize the debug category, instead
14633 of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
14635 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14637 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
14638 Oops, I shouldn't apply hacks.
14640 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14642 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
14643 Remove pad_loop function which doesn't work.
14645 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14647 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
14648 Send EOS when deactivating.
14649 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
14650 (check_queue), (queue_threshold_reached), (queue_out_of_data),
14651 (gen_preroll_element), (probe_triggered), (mute_stream),
14652 (silence_stream), (new_decoded_pad), (setup_substreams),
14653 (set_active_source):
14654 * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
14655 (remove_sinks), (add_sink):
14656 * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
14657 Change for new probe API.
14659 2005-06-29 Wim Taymans <wim@fluendo.com>
14661 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
14662 * gst-libs/gst/audio/gstbaseaudiosink.c:
14663 (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
14664 (gst_baseaudiosink_change_state):
14665 * gst-libs/gst/audio/gstbaseaudiosink.h:
14666 * gst-libs/gst/audio/gstringbuffer.c:
14667 (gst_ringbuffer_set_callback):
14668 Fix compilation error.
14669 Ringbuffer starts out as not running.
14670 Free our clock in dispose.
14671 When releasing the ringbuffer we need to renegotiate so
14672 clear the pad caps.
14674 2005-06-29 Thomas Vander Stichele <thomas at apestaart dot org>
14678 * docs/Makefile.am:
14679 * docs/libs/Makefile.am:
14680 * docs/libs/gst-plugins-libs-docs.sgml:
14681 * docs/libs/gst-plugins-libs-sections.txt:
14682 * docs/libs/gst-plugins-libs.types:
14683 * docs/libs/tmpl/gstaudio.sgml:
14684 * docs/libs/tmpl/gstcolorbalance.sgml:
14685 * docs/libs/tmpl/gstringbuffer.sgml:
14686 * gst-libs/gst/audio/gstringbuffer.c:
14687 (gst_ringbuffer_set_callback):
14688 reinstate gtk-doc docs for plugin libs
14690 2005-06-28 Wim Taymans <wim@fluendo.com>
14692 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14693 (gst_ogg_demux_init):
14694 Removed pad loop function.
14696 2005-06-28 Wim Taymans <wim@fluendo.com>
14698 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14699 If we're building a chain we are not in an error case
14700 when we queue a buffer.
14702 2005-06-28 Andy Wingo <wingo@pobox.com>
14704 * *.c: Don't cast to GstObject before reffing/unreffing.
14706 2005-06-27 Andy Wingo <wingo@pobox.com>
14708 * gst/videotestsrc/gstvideotestsrc.c
14709 (gst_videotestsrc_activate_push): Activation API changes.
14711 * gst/playback/gstdecodebin.c (gst_decode_bin_change_state)
14712 (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
14713 they have refs on the decodebin.
14715 * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
14717 (gst_ogg_pad_typefind): Don't leak a pad ref.
14718 (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
14719 (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push)
14720 (gst_ogg_demux_sink_activate_pull): Changes for activation API.
14722 2005-06-27 Edward Hervey <edward@fluendo.com>
14724 * ext/theora/theoradec.c: (theora_dec_change_state):
14725 re-arranged call to parent's state change in order to avoid locks (or
14728 2005-06-26 Edward Hervey <edward@fluendo.com>
14730 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
14731 2nd argument of 'unknow-type' signal is a GstCaps and not a
14734 2005-06-25 Jan Schmidt <thaytan@mad.scientist.com>
14735 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
14736 Set the worker thread's running flag to TRUE before starting the
14738 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
14739 Catch a failure to add typefind to the bin.
14741 2005-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
14743 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
14744 (gst_sinesrc_init), (gst_sinesrc_create),
14745 (gst_sinesrc_set_property), (gst_sinesrc_get_property),
14746 (gst_sinesrc_start):
14747 * gst/sine/gstsinesrc.h:
14748 add num-buffers and timestamp-offset properties
14749 * gst/videotestsrc/gstvideotestsrc.c:
14750 (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
14751 (gst_videotestsrc_get_property):
14752 add timestamp-offset property
14754 2005-06-23 Christian Schaller <uraeus@gnome.org>
14756 * configure.ac: add videorate
14757 * gst-plugins-base.spec.in: add videorate
14759 2005-06-23 Wim Taymans <wim@fluendo.com>
14761 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14762 (gst_videorate_getcaps), (gst_videorate_setcaps),
14763 (gst_videorate_event), (gst_videorate_chain):
14764 Fixed videorate, fixating an already fixated caps is not
14767 2005-06-23 Wim Taymans <wim@fluendo.com>
14770 * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
14771 Buffer on caps is not boxed anymore.
14773 2005-06-22 Wim Taymans <wim@fluendo.com>
14775 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
14776 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
14777 Set buffers on caps as miniobjects and not as boxed.
14779 2005-06-19 Thomas Vander Stichele <thomas at apestaart dot org>
14784 === release 0.9.1 ===
14786 2005-06-19 Thomas Vander Stichele <thomas at apestaart dot org>
14807 updates for release
14809 2005-06-09 Andy Wingo <wingo@pobox.com>
14811 * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
14813 2005-06-09 Andy Wingo <wingo@pobox.com>
14816 * gst-libs/gst/Makefile.am:
14817 * gst-libs/gst/net/Makefile.am:
14818 Add gstnet to build.
14820 2005-06-09 Andy Wingo <wingo@pobox.com>
14822 * gst-libs/gst/gconf/gconf.c:
14823 * gst/playback/test.c:
14824 * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
14827 * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
14829 * ext/theora/theoraenc.c (theora_enc_chain):
14830 * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
14832 * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
14835 2005-06-02 Wim Taymans <wim@fluendo.com>
14837 * gst-libs/gst/net/Makefile.am:
14838 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
14839 * pkgconfig/gstreamer-libs.pc.in:
14840 Added net stuff, version net lib.
14842 2005-06-02 Wim Taymans <wim@fluendo.com>
14844 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
14845 (query_rates), (query_positions_elems), (query_positions_pads),
14847 Updated seek example.
14849 2005-06-02 Andy Wingo <wingo@pobox.com>
14851 * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
14852 * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
14855 * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
14856 remove the typefind, the bin dispose will do it for us. When it's
14857 removed and unreffed, the signal handler will be disconnected,
14859 (unlinked): It's too difficult to disconnect from unlinked
14860 handlers, as they are on pads not elements. Just punt if the pads
14861 aren't grandkids of the bin.
14863 2005-06-02 Wim Taymans <wim@fluendo.com>
14866 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14867 (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
14868 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
14869 * ext/theora/theoradec.c: (theora_dec_src_query),
14870 (theora_handle_data_packet):
14871 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
14872 (theora_enc_chain):
14873 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14874 (vorbis_handle_data_packet):
14875 * gst/audioconvert/bufferframesconvert.c:
14876 (buffer_frames_convert_chain):
14877 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14878 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14879 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14880 (gst_ffmpegcsp_chain):
14881 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14882 (gst_videorate_getcaps), (gst_videorate_setcaps),
14883 (gst_videorate_event), (gst_videorate_chain):
14884 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
14885 (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
14886 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14887 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
14888 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
14889 (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
14890 (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
14891 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
14892 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
14893 Cleanups and buffer alloc.
14895 2005-05-31 Wim Taymans <wim@fluendo.com>
14897 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
14898 Don't try to call the delay method when the device is not
14901 2005-05-31 Wim Taymans <wim@fluendo.com>
14903 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
14904 Get actual segment size and buffer size after opening
14907 2005-05-30 Wim Taymans <wim@fluendo.com>
14909 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
14910 (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
14911 Also FLUSH upstream, makes the loop function exit faster.
14913 * ext/theora/theoradec.c: (theora_dec_src_query):
14914 Some more debug info in the query.
14916 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14917 (gst_ximagesink_setcaps):
14918 Release lock on par error, better error reporting.
14920 2005-05-26 Wim Taymans <wim@fluendo.com>
14922 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14923 (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
14924 (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
14925 Clear chains in READY
14926 Queue packets until the chain is activated.
14928 2005-05-25 Wim Taymans <wim@fluendo.com>
14930 * gst-libs/gst/audio/gstaudiosink.c:
14931 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14932 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
14933 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14934 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
14935 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
14936 (gst_audiosink_create_ringbuffer):
14937 * gst-libs/gst/audio/gstbaseaudiosink.c:
14938 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
14939 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
14940 (gst_baseaudiosink_set_property), (build_linear_format),
14941 (debug_spec_caps), (debug_spec_buffer),
14942 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
14943 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
14944 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
14945 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
14946 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
14947 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
14948 (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
14949 (gst_ringbuffer_play), (gst_ringbuffer_pause),
14950 (gst_ringbuffer_stop), (gst_ringbuffer_delay),
14951 (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
14952 (wait_segment), (gst_ringbuffer_commit),
14953 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
14954 (gst_ringbuffer_clear):
14955 Various small cleanups.
14957 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14958 (gst_audio_convert_change_state):
14959 * gst/subparse/gstsubparse.c: (gst_subparse_chain):
14960 No need to take the locks anymore.
14962 2005-05-25 Wim Taymans <wim@fluendo.com>
14964 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
14965 (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
14966 (remove_element_chain), (no_more_pads), (unlinked), (close_link),
14968 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
14969 (group_destroy), (group_commit), (queue_overrun),
14970 (gen_preroll_element), (no_more_pads), (preroll_unlinked),
14971 (mute_stream), (new_decoded_pad), (setup_substreams),
14972 (setup_source), (mute_group_type), (set_active_source),
14973 (gst_play_base_bin_change_state):
14974 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
14975 (gen_video_element), (gen_text_element), (gen_audio_element),
14976 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
14977 * gst/playback/gststreaminfo.c: (gst_stream_info_new),
14978 (gst_stream_info_dispose), (gst_stream_info_set_mute):
14979 * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
14980 Some playbin cleanups mostly refcounting sloppyness.
14982 2005-05-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14984 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14985 Work with streaming input.
14987 2005-05-25 Wim Taymans <wim@fluendo.com>
14989 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14990 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14991 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14992 (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
14993 No need to take the STREAM lock anymore.
14995 2005-05-25 Wim Taymans <wim@fluendo.com>
14997 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
14998 (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
14999 (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
15000 (gst_ogg_demux_chain), (gst_ogg_demux_loop),
15001 (gst_ogg_demux_sink_activate):
15002 * ext/theora/theoradec.c: (theora_dec_src_event),
15003 (theora_handle_comment_packet), (theora_dec_chain),
15004 (theora_dec_change_state):
15005 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
15006 (vorbis_handle_data_packet), (vorbis_dec_chain),
15007 (vorbis_dec_change_state):
15008 Remove STREAM locks as they are taken in core now.
15009 Never set bogus granulepos on vorbis/theora.
15010 Fix leaks in theoradec tag parsing.
15012 2005-05-25 Wim Taymans <wim@fluendo.com>
15014 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
15015 Fix memleaks, GST_BUFFER_DATA() is not freed.
15017 2005-05-25 Wim Taymans <wim@fluendo.com>
15019 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
15020 Open non-blocking, set to blocking mode afterwards to avoid
15021 lockups when audio device is busy.
15023 2005-05-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15025 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
15026 This can't be good.
15028 2005-05-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15030 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
15031 (gst_audio_convert_chain), (gst_audio_convert_link_src),
15032 (gst_audio_convert_setcaps):
15033 Implement instant setup switching.
15035 2005-05-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15037 * gst/playback/gstplaybasebin.c: (probe_triggered):
15038 Fix missing unlock.
15039 * gst/playback/gstplaybin.c: (add_sink):
15040 First add, then link (otherwise pad link fails).
15042 2005-05-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15044 * examples/Makefile.am:
15045 fix buildbot (make distcheck)
15047 2005-05-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15049 * gst/playback/gstplaybin.c: (gen_vis_element):
15050 Remove some wrong code. Doesn't work yet.
15052 2005-05-19 Wim Taymans <wim@fluendo.com>
15054 * gst-libs/gst/net/Makefile.am:
15055 * gst-libs/gst/net/README:
15056 * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
15057 (gst_netbuffer_class_init), (gst_netbuffer_init),
15058 (gst_netbuffer_finalize), (gst_netbuffer_copy),
15059 (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
15060 (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
15061 (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
15062 * gst-libs/gst/net/gstnetbuffer.h:
15063 Added buffer subclass to store extra to/from addresses for
15064 network sources/sinks.
15066 2005-05-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15068 * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
15069 Don't lock an unassigned variable.
15071 2005-05-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15073 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
15074 Increase buffer for video, decrease buffer for other media types.
15075 * gst/playback/gstplaybin.c: (gen_video_element),
15076 (gen_audio_element):
15077 Change names for debugging purposes.
15079 2005-05-18 Wim Taymans <wim@fluendo.com>
15081 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15082 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15083 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
15084 (gst_ffmpegcsp_chain):
15085 Enable buffer alloc passthrough if the source and dest
15086 formats are the same.
15088 2005-05-17 Wim Taymans <wim@fluendo.com>
15090 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
15091 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
15092 (gst_ogg_demux_chain_unlocked):
15093 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15094 (gst_audio_convert_caps_remove_format_info),
15095 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15096 (gst_audio_convert_fixate), (gst_audio_convert_change_state):
15097 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15098 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15099 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
15100 (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
15101 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
15102 (gst_ffmpegcsp_get_property):
15103 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
15104 (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
15105 (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
15106 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
15107 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
15108 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
15109 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
15110 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
15111 Leak fixes in oggdemux.
15112 Some cleanups in audioconvert.
15113 Make passthrough work along with buffer_alloc etc.
15114 Make buffer_alloc and buffer recycling actually work in
15117 2005-05-17 Thomas Vander Stichele <thomas at apestaart dot org>
15119 * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
15120 make the compiler happy
15122 2005-05-17 Wim Taymans <wim@fluendo.com>
15124 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
15125 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
15126 (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
15127 (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
15128 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
15129 (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
15130 (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
15131 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
15132 (gst_xvimagesink_set_xwindow_id):
15133 * sys/xvimage/xvimagesink.h:
15134 Port xvimagesink to new MiniObject.
15136 2005-05-17 Wim Taymans <wim@fluendo.com>
15138 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
15139 (gst_audiofilter_chain):
15140 * gst-libs/gst/audio/gstaudiosink.c:
15141 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15142 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15143 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15144 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15145 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15146 (gst_audiosink_create_ringbuffer):
15147 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15148 (gst_audio_convert_caps_remove_format_info),
15149 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15150 (gst_audio_convert_fixate), (gst_audio_convert_channels):
15151 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15152 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15153 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15154 Fix passthrough in ffmpegcolorspace.
15155 Fix memset in audiosink on wrong memory.
15157 2005-05-16 David Schleef <ds@schleef.org>
15159 * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
15162 2005-05-16 David Schleef <ds@schleef.org>
15164 Port from GstData to GstMiniObject.
15165 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
15166 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
15167 (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
15168 (gst_ogg_mux_collected):
15169 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
15170 * ext/theora/theoradec.c: (theora_handle_comment_packet),
15171 (theora_handle_data_packet):
15172 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
15173 (theora_set_header_on_caps), (theora_enc_chain):
15174 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
15175 (vorbis_handle_comment_packet):
15176 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
15177 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
15178 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
15179 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
15180 * gst/audioconvert/gstaudioconvert.c:
15181 (gst_audio_convert_get_buffer):
15182 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
15183 * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
15184 (mute_stream), (silence_stream):
15185 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
15186 * gst/volume/gstvolume.c: (volume_transform):
15187 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
15188 (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
15189 (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
15190 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
15191 (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
15192 (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
15193 (gst_ximagesink_buffer_alloc):
15194 * sys/ximage/ximagesink.h:
15196 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15198 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15199 (fill_buffer), (check_queue), (queue_threshold_reached),
15200 (queue_out_of_data):
15201 * gst/playback/gstplaybasebin.h:
15202 Post buffer-fullness on the bus.
15204 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15206 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
15208 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15209 (group_commit), (probe_triggered), (setup_source),
15210 (gst_play_base_bin_change_state):
15211 * gst/playback/gstplaybasebin.h:
15212 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15213 (gst_play_bin_init), (remove_sinks), (setup_sinks),
15214 (gst_play_bin_change_state):
15215 Move setup_output_pads into a virtual function, remove
15216 group-switch (no longer needed) and redirect (handled by bus
15219 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15221 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
15222 (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
15223 (get_active_group), (get_building_group), (group_destroy),
15224 (group_commit), (check_queue), (queue_overrun),
15225 (queue_threshold_reached), (queue_out_of_data),
15226 (gen_preroll_element), (remove_groups), (unknown_type),
15227 (add_element_stream), (no_more_pads), (probe_triggered),
15228 (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
15229 (setup_substreams), (setup_source), (finish_source),
15230 (prepare_output), (muted_group_change_state),
15231 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
15232 (gst_play_base_bin_change_state):
15233 * gst/playback/gstplaybasebin.h:
15234 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15235 (gst_play_bin_init), (gst_play_bin_set_property),
15236 (gen_video_element), (gen_text_element), (gen_audio_element),
15237 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
15238 (gst_play_bin_change_state):
15239 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
15240 (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
15241 (stream_info_change_state), (gst_stream_info_set_mute),
15242 (gst_stream_info_get_property):
15243 * gst/playback/gststreaminfo.h:
15244 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
15245 (gst_stream_selector_get_linked_pad),
15246 (gst_stream_selector_getcaps),
15247 (gst_stream_selector_get_linked_pads),
15248 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
15249 * gst/playback/gststreamselector.h:
15250 Rough port of playbin. Needs some more work, but is mostly done,
15251 and uses a few locks in important places, which should make stuff
15252 like chain-switches clean. Still uses GST_STATE() in a few places,
15253 which isn't all that good an idea, subtitles/elements disabled
15254 because no elements to test with and thus probably broken, query
15255 and event handling moved to GstBin, internal thread removed
15256 alltogether because the pipeline does that for us now. Can play
15257 Ogg/Vorbis files. Haven't tested anything else yet.
15259 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15261 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
15262 Do no-more-pads (needed for autoplugging).
15264 2005-05-10 Andy Wingo <wingo@pobox.com>
15266 * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
15267 message to the bus with the tags. Still not sent downstream tho.
15269 * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
15271 (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
15272 avoid refcounting hassles.
15274 2005-05-09 Andy Wingo <wingo@pobox.com>
15276 * gst/volume/Makefile.am:
15277 * gst/volume/demo.c
15278 * gst/volume/gstvolume.h
15279 * gst/volume/gstvolume.c: Port to 0.9 API, derive from
15280 basetransform. Probably need an audio filter base class.
15282 2005-05-09 Wim Taymans <wim@fluendo.com>
15284 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
15285 (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
15286 (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
15287 (gst_vorbisenc_chain):
15288 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15289 (gst_audio_convert_caps_remove_format_info),
15290 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15291 (gst_audio_convert_fixate), (gst_audio_convert_channels):
15292 Make caps writable before writing to it.
15293 Fix negotiation in audioconvert some more.
15295 2005-05-09 Wim Taymans <wim@fluendo.com>
15297 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
15298 (gst_videorate_getcaps), (gst_videorate_setcaps),
15299 (gst_videorate_event), (gst_videorate_chain):
15300 Better negotiation.
15302 2005-05-09 Wim Taymans <wim@fluendo.com>
15304 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
15305 (gst_videorate_getcaps), (gst_videorate_setcaps),
15306 (gst_videorate_blank_data), (gst_videorate_init),
15307 (gst_videorate_event), (gst_videorate_chain),
15308 (gst_videorate_change_state):
15309 Port videorate, do a better job at negotiation while we're at
15312 2005-05-09 Jan Schmidt <thaytan@mad.scientist.com>
15317 * examples/Makefile.am:
15318 * gst-libs/gst/audio/Makefile.am:
15319 * gst-libs/gst/riff/Makefile.am:
15320 * gst-libs/gst/tag/Makefile.am:
15321 * gst-libs/gst/video/Makefile.am:
15322 Fixups for missing variables.
15324 2005-05-09 Wim Taymans <wim@fluendo.com>
15326 * examples/seeking/seek.c: (make_theora_pipeline),
15327 (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
15328 (query_rates), (query_positions_elems), (query_positions_pads),
15329 (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
15330 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
15331 (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
15332 (gst_ogg_pad_typefind), (gst_ogg_demux_init),
15333 (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
15334 (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
15335 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15336 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
15337 (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
15338 (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
15339 (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
15340 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
15341 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
15342 (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
15343 * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
15344 (theora_dec_src_convert), (theora_dec_sink_convert),
15345 (theora_dec_src_query), (theora_dec_sink_query),
15346 (theora_dec_src_event), (theora_dec_sink_event),
15347 (theora_handle_comment_packet), (theora_handle_type_packet),
15348 (theora_handle_header_packet), (theora_handle_data_packet),
15349 (theora_dec_chain):
15350 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
15351 (vorbis_dec_convert), (vorbis_dec_src_query),
15352 (vorbis_dec_sink_query), (vorbis_dec_src_event),
15353 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15354 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15355 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
15356 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
15357 (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
15358 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
15359 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15360 (gst_play_bin_query):
15361 * gst/playback/test3.c: (update_scale):
15362 * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
15363 (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
15364 * gst/subparse/gstsubparse.c: (gst_subparse_init):
15365 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
15366 (gst_videotestsrc_src_query):
15367 * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
15368 (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
15369 (paint_hline_YUV9):
15370 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
15371 Port to new query API.
15373 Cleanups in x[v]imagesink
15375 2005-05-09 Andy Wingo <wingo@pobox.com>
15377 * ext/alsa/gstalsasink.h:
15378 * ext/gnomevfs/gstgnomevfssrc.c:
15379 (gst_gnomevfssrc_get_icy_metadata):
15380 * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
15381 (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
15382 * ext/theora/theoradec.c (theora_dec_src_query)
15383 (theora_dec_src_event, theora_dec_sink_event)
15384 (theora_handle_comment_packet, theora_handle_data_packet):
15385 * ext/theora/theoraenc.c (theora_enc_chain):
15386 * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
15387 (vorbis_dec_sink_event, vorbis_handle_comment_packet):
15388 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
15389 * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
15391 * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
15392 (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
15393 (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
15394 (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
15395 (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
15396 (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
15397 (paint_setup_xBGR8888, paint_setup_RGBx8888)
15398 (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
15399 (paint_setup_RGB565, paint_setup_xRGB1555):
15400 * gst/videotestsrc/videotestsrc.h:
15401 * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
15402 * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
15403 (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
15406 * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
15407 gst_pad_query_position. Fixes oggdemux.
15409 2005-05-08 David Schleef <ds@schleef.org>
15411 * configure.ac: Require liboil.
15412 * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
15414 * gst/videotestsrc/videotestsrc.c:
15415 * gst/videotestsrc/videotestsrc.h:
15417 2005-05-06 Wim Taymans <wim@fluendo.com>
15419 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15420 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15421 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15422 Well, unreffing a buffer right before pushing it is asking
15425 2005-05-06 Christian Schaller <uraeus@gnome.org>
15427 * pkgconfig/gstreamer-libs.pc.in: add missing library calls
15429 2005-05-06 Wim Taymans <wim@fluendo.com>
15431 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15432 (gst_audio_convert_caps_remove_format_info),
15433 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15434 (gst_audio_convert_fixate), (gst_audio_convert_channels):
15435 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15436 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15437 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15438 * gst/sine/Makefile.am:
15439 * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
15440 (gst_sinesrc_class_init), (gst_sinesrc_init),
15441 (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
15442 (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
15443 (gst_sinesrc_update_freq):
15444 * gst/sine/gstsinesrc.h:
15445 * gst/tcp/gstmultifdsink.c:
15446 * sys/xvimage/xvimagesink.c:
15447 Fixed negotiation wrt _peer_get_caps()
15451 2005-05-06 Wim Taymans <wim@fluendo.com>
15453 * gst-libs/gst/audio/gstaudiosink.c:
15454 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15455 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15456 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15457 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15458 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15459 (gst_audiosink_create_ringbuffer):
15460 * gst-libs/gst/audio/gstbaseaudiosink.c:
15461 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15462 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15463 (gst_baseaudiosink_set_property), (build_linear_format),
15464 (debug_spec_caps), (debug_spec_buffer),
15465 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15466 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15467 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15468 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15469 * gst-libs/gst/audio/gstbaseaudiosink.h:
15470 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15471 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15472 (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
15473 (gst_ringbuffer_play), (gst_ringbuffer_pause),
15474 (gst_ringbuffer_stop), (gst_ringbuffer_delay),
15475 (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
15476 (wait_segment), (gst_ringbuffer_commit),
15477 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
15478 (gst_ringbuffer_clear):
15479 * gst-libs/gst/audio/gstringbuffer.h:
15480 Make the base audiosink return an error when there is no
15481 audiobuffer negotiated.
15483 2005-05-06 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15486 Disable cdparanoia until someone ports it!
15488 2005-05-06 Wim Taymans <wim@fluendo.com>
15490 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15491 (gst_ogg_demux_sink_activate):
15492 And revert after wingo's revert.. sigh..
15494 2005-05-05 Andy Wingo <wingo@pobox.com>
15496 * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
15498 * configure.ac: Return audiorate and subparse from the ghetto.
15499 Re-enable -Wall -Werror.
15500 * gst/subparse/gstsubparse.c:
15501 * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
15502 or chain-based. Cleaned up a bit. Not tested.
15504 2005-05-05 Christian Schaller <christian@fluendo.com>
15506 * Makefile.am: remove stuff that is not building
15507 * configure.ac: remove stuff that is not building
15508 * examples/Makefile.am: remove stuff that is not building
15509 * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
15510 * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
15511 * sys/Makefile.am: remove stuff that is not building
15512 * testsuite/Makefile.am: remove stuff that is not building
15514 2005-05-05 Andy Wingo <wingo@pobox.com>
15516 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
15517 * gst-libs/gst/tag/gstvorbistag.c:
15518 (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
15519 * gst/adder/gstadder.h:
15520 * gst/audioconvert/gstchannelmix.c:
15521 (gst_audio_convert_fill_one_other):
15522 * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
15523 (gst_audiorate_init), (gst_audiorate_chain):
15524 * gst/playback/gstplaybasebin.c: (setup_source):
15525 * gst/playback/test3.c: (update_scale):
15543 2005-05-05 Wim Taymans <wim@fluendo.com>
15545 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15546 (gst_audio_convert_caps_remove_format_info),
15547 (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
15548 (gst_audio_convert_change_state), (gst_audio_convert_channels):
15549 * gst/videotestsrc/gstvideotestsrc.c:
15550 (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
15551 (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
15552 (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
15553 (gst_videotestsrc_init), (gst_videotestsrc_loop):
15554 Don't ignore _push() return values.
15555 Make sure no processing is done when shutting down.
15556 Videotestsrc pad activation fix.
15558 2005-05-05 Wim Taymans <wim@fluendo.com>
15560 * gst/adder/Makefile.am:
15561 * gst/adder/gstadder.c: (gst_adder_setcaps),
15562 (gst_adder_class_init), (gst_adder_init),
15563 (gst_adder_request_new_pad), (gst_adder_collected),
15564 (gst_adder_change_state):
15565 * gst/adder/gstadder.h:
15566 Ported adder as an example of a mixer element using
15567 collect pads. Needs more negotiation work.
15569 2005-05-05 Wim Taymans <wim@fluendo.com>
15571 * ext/theora/theoradec.c: (_inc_granulepos),
15572 (theora_dec_src_event), (theora_dec_sink_event),
15573 (theora_handle_comment_packet), (theora_handle_type_packet),
15574 (theora_handle_header_packet), (theora_handle_data_packet),
15575 (theora_dec_chain):
15576 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
15577 (gst_theora_enc_init), (theora_enc_sink_setcaps),
15578 (theora_push_buffer), (theora_push_packet),
15579 (theora_enc_sink_event), (theora_enc_chain),
15580 (theora_enc_change_state), (theora_enc_set_property),
15581 (theora_enc_get_property):
15582 Added stream lock to decoder so that we can serialize
15584 More theoraenc porting, recover from errors, do clean
15587 2005-05-05 Wim Taymans <wim@fluendo.com>
15589 * ext/ogg/Makefile.am:
15591 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15592 (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
15594 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15595 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
15596 (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
15597 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
15598 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
15599 (gst_ogg_mux_change_state):
15602 2005-05-05 Wim Taymans <wim@fluendo.com>
15604 * docs/design-audiosinks.txt:
15605 * gst-libs/gst/audio/TODO:
15606 * gst-libs/gst/audio/gstaudiosink.c:
15607 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15608 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15609 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15610 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15611 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15612 (gst_audiosink_create_ringbuffer):
15613 * gst-libs/gst/audio/gstbaseaudiosink.c:
15614 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15615 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15616 (gst_baseaudiosink_set_property), (build_linear_format),
15617 (debug_spec_caps), (debug_spec_buffer),
15618 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15619 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15620 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15621 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15622 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15623 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15624 (gst_ringbuffer_release), (gst_ringbuffer_play),
15625 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15626 (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15627 (gst_ringbuffer_set_sample), (wait_segment),
15628 (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15629 (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15630 More work on the audiosink, mostly debugging and a race in
15633 2005-04-28 Wim Taymans <wim@fluendo.com>
15635 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15636 (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
15637 * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
15638 (vorbis_dec_src_query), (vorbis_dec_src_event),
15639 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15640 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15641 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
15642 Don't crap out when seeking back to position 0.
15644 2005-04-28 Wim Taymans <wim@fluendo.com>
15646 * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
15647 (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
15648 (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
15649 (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
15650 (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
15651 Make audio sink configurable, use alsasink as default.
15653 2005-04-28 Wim Taymans <wim@fluendo.com>
15655 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15656 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15657 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15658 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
15659 (vorbis_dec_change_state):
15660 * ext/vorbis/vorbisdec.h:
15661 Refactor, use STREAM_LOCK.
15663 2005-04-28 Wim Taymans <wim@fluendo.com>
15665 * ext/theora/theoradec.c: (_inc_granulepos),
15666 (theora_dec_sink_event), (theora_handle_comment_packet),
15667 (theora_handle_type_packet), (theora_handle_header_packet),
15668 (theora_handle_data_packet), (theora_dec_chain),
15669 (theora_dec_change_state):
15670 Refactor a bit, use STREAM_LOCK.
15672 2005-04-28 Wim Taymans <wim@fluendo.com>
15674 * ext/alsa/Makefile.am:
15675 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
15676 (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
15677 (gst_alsa_link), (gst_alsa_close_audio):
15678 * ext/alsa/gstalsaplugin.c: (plugin_init):
15679 * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
15680 (gst_alsasink_dispose), (gst_alsasink_base_init),
15681 (gst_alsasink_class_init), (gst_alsasink_init),
15682 (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
15683 (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
15684 (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
15685 (gst_alsasink_reset):
15686 * ext/alsa/gstalsasink.h:
15687 Implement alsasink with simple open/write/close API.
15688 Make alsa dir build by disabling compilation of code.
15690 2005-04-28 Wim Taymans <wim@fluendo.com>
15692 * gst-libs/gst/audio/Makefile.am:
15693 * gst-libs/gst/audio/audio.h:
15694 * gst-libs/gst/audio/audioclock.c:
15695 * gst-libs/gst/audio/audioclock.h:
15696 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
15697 (gst_audio_clock_class_init), (gst_audio_clock_init),
15698 (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
15699 * gst-libs/gst/audio/gstaudioclock.h:
15700 * gst-libs/gst/audio/gstaudiosink.c:
15701 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15702 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15703 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15704 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15705 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15706 (gst_audiosink_create_ringbuffer):
15707 * gst-libs/gst/audio/gstbaseaudiosink.c:
15708 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15709 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15710 (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
15711 (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
15712 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15713 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15714 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15715 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15716 * gst-libs/gst/audio/gstbaseaudiosink.h:
15717 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15718 (gst_ringbuffer_init), (gst_ringbuffer_finalize),
15719 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15720 (gst_ringbuffer_release), (gst_ringbuffer_play),
15721 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15722 (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15723 (gst_ringbuffer_set_sample), (wait_segment),
15724 (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15725 (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15726 * gst-libs/gst/audio/gstringbuffer.h:
15727 Make ringbuffer faster and more simple by removing the locks
15728 in the playback thread.
15729 Add sample accurate playback based on buffer sample offsets.
15730 Make the baseaudiosink provide a clock.
15731 Parse caps in the base class.
15732 Correctly handle seeking, flushing and state changes.
15734 2005-04-25 Thomas Vander Stichele <thomas at apestaart dot org>
15737 * gst/audioconvert/Makefile.am:
15738 * gst/audioscale/Makefile.am:
15739 Fix part of the build. Come on guys, autogen didn't even work :)
15741 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15744 * gst-libs/gst/Makefile.am:
15745 * gst-libs/gst/media-info/.cvsignore:
15746 * gst-libs/gst/media-info/Makefile.am:
15747 * gst-libs/gst/media-info/README:
15748 * gst-libs/gst/media-info/media-info-priv.c:
15749 * gst-libs/gst/media-info/media-info-priv.h:
15750 * gst-libs/gst/media-info/media-info-test.c:
15751 * gst-libs/gst/media-info/media-info.c:
15752 * gst-libs/gst/media-info/media-info.h:
15753 * gst-libs/gst/media-info/media-info.vcproj:
15754 * pkgconfig/Makefile.am:
15755 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
15756 * pkgconfig/gstreamer-media-info.pc.in:
15757 Remove media-info, which is also successed by playbin (see Totem
15760 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15763 * examples/Makefile.am:
15764 * examples/gstplay/.cvsignore:
15765 * examples/gstplay/Makefile.am:
15766 * examples/gstplay/player.c:
15767 * gst-libs/gst/Makefile.am:
15768 * gst-libs/gst/play/.cvsignore:
15769 * gst-libs/gst/play/Makefile.am:
15770 * gst-libs/gst/play/play.c:
15771 * gst-libs/gst/play/play.h:
15772 * gst-libs/gst/play/play.vcproj:
15773 * pkgconfig/Makefile.am:
15774 * pkgconfig/gstreamer-play-uninstalled.pc.in:
15775 * pkgconfig/gstreamer-play.pc.in:
15776 Remove libgstplay, playbin is now the official successor.
15778 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15781 * gst-libs/gst/Makefile.am:
15782 * gst-libs/gst/xwindowlistener/Makefile.am:
15783 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
15784 * gst-libs/gst/xwindowlistener/xwindowlistener.h:
15785 Remove deprecated xwindowlistener (I've moved xwindowlistening
15786 in the v4l/v4l2 plugins over to serverside).
15788 2005-04-25 David Schleef <ds@schleef.org>
15790 * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
15791 to examples/dynparams. Examples do not belong interspersed with
15793 * examples/dynparams/demo-dparams.c:
15794 * gst/sine/Makefile.am:
15795 * gst/sine/demo-dparams.c:
15797 2005-04-25 David Schleef <ds@schleef.org>
15799 Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
15800 * gst-libs/gst/audio/Makefile.am:
15801 * gst-libs/gst/riff/Makefile.am:
15802 * gst-libs/gst/tag/Makefile.am:
15803 * gst-libs/gst/video/Makefile.am:
15804 * gst-libs/gst/xwindowlistener/Makefile.am:
15806 Convert to 0.9 API, seems to work:
15807 * sys/ximage/Makefile.am:
15808 * sys/ximage/ximagesink.c:
15810 2005-04-24 David Schleef <ds@schleef.org>
15812 Link plugins against libraries:
15813 * ext/alsa/Makefile.am:
15814 * gst/tcp/Makefile.am:
15816 Remove asm code that should be in liboil
15817 * gst/videoscale/Makefile.am:
15818 * gst/videoscale/videoscale_x86_asm.s:
15820 gettext wants these checked in:
15836 2005-04-24 David Schleef <ds@schleef.org>
15838 Convert gst_main() to g_main_loop_run()
15839 * gst/playback/decodetest.c: (main):
15840 * gst/playback/test2.c: (main):
15841 * gst/playback/test3.c: (main):
15842 * gst/playback/test4.c: (main):
15844 Link plugins against libraries:
15845 * ext/libvisual/Makefile.am:
15846 * sys/xvimage/Makefile.am:
15848 2005-04-24 David Schleef <ds@schleef.org>
15850 * configure.ac: Remove idct and resample libs
15851 * gst-libs/gst/Makefile.am: same
15853 Remove usage of gst_library_load():
15854 * ext/alsa/gstalsaplugin.c: (plugin_init):
15855 * ext/libvisual/visual.c: (plugin_init):
15856 * ext/ogg/gstogg.c: (plugin_init):
15857 * ext/theora/theora.c: (plugin_init):
15858 * ext/vorbis/vorbis.c: (plugin_init):
15859 * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
15860 * gst/audioscale/gstaudioscale.c:
15861 * gst/adder/gstadder.c: (plugin_init):
15862 * gst/audioconvert/plugin.c: (plugin_init):
15863 * sys/ximage/ximagesink.c: (plugin_init):
15864 * sys/xvimage/xvimagesink.c: (plugin_init):
15865 * gst/tcp/gsttcpplugin.c: (plugin_init):
15867 Link plugins against libraries:
15868 * ext/ogg/Makefile.am:
15869 * ext/theora/Makefile.am:
15870 * ext/vorbis/Makefile.am:
15871 * gst/audioconvert/Makefile.am:
15873 Create proper libraries:
15874 * gst-libs/gst/riff/Makefile.am:
15875 * gst-libs/gst/audio/Makefile.am:
15876 * gst-libs/gst/video/Makefile.am:
15878 Move resample library to audioscale plugin directory:
15879 * gst-libs/gst/resample/Makefile.am:
15880 * gst-libs/gst/resample/README:
15881 * gst-libs/gst/resample/dtof.c:
15882 * gst-libs/gst/resample/dtos.c:
15883 * gst-libs/gst/resample/functable.c:
15884 * gst-libs/gst/resample/private.h:
15885 * gst-libs/gst/resample/resample.c:
15886 * gst-libs/gst/resample/resample.h:
15887 * gst-libs/gst/resample/resample.vcproj:
15888 * gst-libs/gst/resample/test.c:
15889 * gst/audioscale/Makefile.am:
15890 * gst/audioscale/README:
15891 * gst/audioscale/dtof.c:
15892 * gst/audioscale/dtos.c:
15893 * gst/audioscale/functable.c:
15894 * gst/audioscale/private.h:
15895 * gst/audioscale/resample.c:
15896 * gst/audioscale/resample.h:
15897 * gst/audioscale/test.c:
15899 Move tagedit library to gst-libs:
15900 * gst-libs/gst/tag/Makefile.am:
15901 * gst-libs/gst/tag/gstid3tag.c:
15902 * gst-libs/gst/tag/gsttagediting.c:
15903 * gst-libs/gst/tag/gsttageditingprivate.h:
15904 * gst-libs/gst/tag/gstvorbistag.c:
15905 * gst/tags/Makefile.am:
15906 * gst/tags/gstid3tag.c:
15907 * gst/tags/gstvorbistag.c:
15909 Fix for core changes:
15910 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
15911 (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
15912 (gst_sinesrc_getrange):
15914 2005-04-23 David Schleef <ds@schleef.org>
15916 * gst-libs/gst/Makefile.am: Remove idct. It hasn't been used
15917 in gst-plugins in a long time, and properly belongs in liboil.
15918 * gst-libs/gst/idct/Makefile.am:
15919 * gst-libs/gst/idct/README:
15920 * gst-libs/gst/idct/dct.h:
15921 * gst-libs/gst/idct/doieee:
15922 * gst-libs/gst/idct/fastintidct.c:
15923 * gst-libs/gst/idct/floatidct.c:
15924 * gst-libs/gst/idct/idct.c:
15925 * gst-libs/gst/idct/idct.h:
15926 * gst-libs/gst/idct/idtc.vcproj:
15927 * gst-libs/gst/idct/ieeetest.c:
15928 * gst-libs/gst/idct/intidct.c:
15930 2005-04-20 Wim Taymans <wim@fluendo.com>
15932 * docs/design-audiosinks.txt:
15933 * gst-libs/gst/audio/Makefile.am:
15934 * gst-libs/gst/audio/TODO:
15935 * gst-libs/gst/audio/gstaudiosink.c:
15936 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15937 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15938 (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
15939 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15940 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15941 (gst_audioringbuffer_delay), (gst_audiosink_base_init),
15942 (gst_audiosink_class_init), (gst_audiosink_init),
15943 (gst_audiosink_create_ringbuffer):
15944 * gst-libs/gst/audio/gstaudiosink.h:
15945 * gst-libs/gst/audio/gstbaseaudiosink.c:
15946 (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
15947 (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
15948 (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
15949 (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
15950 (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
15951 (gst_baseaudiosink_create_ringbuffer),
15952 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15953 * gst-libs/gst/audio/gstbaseaudiosink.h:
15954 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15955 (gst_ringbuffer_class_init), (gst_ringbuffer_init),
15956 (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
15957 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15958 (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
15959 (gst_ringbuffer_play), (gst_ringbuffer_pause),
15960 (gst_ringbuffer_resume), (gst_ringbuffer_stop),
15961 (gst_ringbuffer_callback), (gst_ringbuffer_delay),
15962 (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
15963 (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
15964 * gst-libs/gst/audio/gstringbuffer.h:
15965 An attempt at a set of audio base classes together with some
15968 2005-04-20 Wim Taymans <wim@fluendo.com>
15970 * gst/audioconvert/Makefile.am:
15971 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15972 (gst_audio_convert_caps_remove_format_info),
15973 (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
15974 (gst_audio_convert_channels):
15975 Link against audio libs.
15976 Fix audio convert plugin.
15978 2005-04-20 Wim Taymans <wim@fluendo.com>
15980 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
15981 (gst_ogg_demux_sink_activate):
15982 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
15983 (theora_set_header_on_caps), (theora_enc_sink_event),
15984 (theora_enc_chain):
15985 Fix theora encoder.
15987 2005-04-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15989 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
15990 * gst/playback/gstdecodebin.c: (find_compatibles):
15991 Work with staticpadtemplates in elementfactories.
15993 2005-04-12 Wim Taymans <wim@fluendo.com>
15995 * gst/playback/README:
15996 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
15997 (compare_ranks), (print_feature), (gst_decode_bin_init),
15998 (dynamic_create), (dynamic_free), (find_compatibles),
15999 (mimetype_is_raw), (close_pad_link), (got_redirect),
16000 (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
16001 (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
16002 (gst_decode_bin_change_state):
16003 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
16004 (gst_play_base_bin_init), (group_destroy), (group_commit),
16005 (check_queue), (queue_overrun), (queue_threshold_reached),
16006 (queue_out_of_data), (gen_preroll_element), (unknown_type),
16007 (new_decoded_pad), (setup_subtitle), (gen_source_element),
16008 (got_redirect), (setup_source), (play_base_eos),
16009 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
16010 (gst_play_base_bin_remove_element):
16011 * gst/playback/gstplaybasebin.h:
16012 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
16013 (gst_play_bin_init), (gst_play_bin_dispose),
16014 (gst_play_bin_set_property), (gen_video_element),
16015 (gen_text_element), (gen_audio_element), (remove_sinks),
16016 (gst_play_bin_send_event):
16017 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
16018 (stream_info_change_state), (gst_stream_info_set_mute):
16019 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
16020 (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
16021 (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
16022 (gst_stream_selector_chain):
16023 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
16025 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
16026 (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
16027 (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
16028 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
16029 Raw and crude port of decodebin.
16030 Make playbin compile.
16032 2005-04-06 Wim Taymans <wim@fluendo.com>
16034 * ext/gnomevfs/Makefile.am:
16035 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
16036 (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
16037 (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
16038 (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
16039 (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
16040 (gst_gnomevfssrc_stop):
16041 * ext/ogg/Makefile.am:
16042 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
16043 (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
16044 * ext/theora/Makefile.am:
16045 * ext/theora/theoradec.c: (_inc_granulepos),
16046 (theora_dec_sink_event), (theora_dec_chain):
16047 * ext/vorbis/Makefile.am:
16048 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
16049 (vorbis_dec_sink_event), (vorbis_dec_chain):
16050 * gst-libs/gst/audio/Makefile.am:
16051 * sys/xvimage/Makefile.am:
16052 Make gnomevfssrc extend the source base class.
16053 Fix linking against libs in various plugins.
16055 2005-04-06 Andy Wingo <wingo@pobox.com>
16057 * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
16060 * configure.ac: Add check and AC_SUBST for libgstbase.
16062 2005-03-31 Wim Taymans <wim@fluendo.com>
16064 * examples/seeking/Makefile.am:
16065 * examples/seeking/cdparanoia.c: (main):
16066 * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
16067 (play_cb), (pause_cb), (stop_cb), (main):
16068 * examples/seeking/playbin.c:
16069 * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
16070 (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
16071 (make_sid_pipeline), (make_vorbis_pipeline),
16072 (make_theora_pipeline), (make_vorbis_theora_pipeline),
16073 (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
16074 (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
16075 (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
16076 (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
16078 * examples/seeking/spider_seek.c:
16079 * examples/seeking/vorbisfile.c:
16080 * ext/gnomevfs/Makefile.am:
16081 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
16082 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
16083 (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
16084 (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
16085 (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
16086 (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
16087 (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
16088 (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
16090 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
16091 (gst_ogg_pad_class_init), (gst_ogg_pad_init),
16092 (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
16093 (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
16094 (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
16095 (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
16096 (gst_ogg_pad_event), (gst_ogg_pad_reset),
16097 (gst_ogg_demux_factory_filter), (compare_ranks),
16098 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
16099 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
16100 (gst_ogg_chain_new), (gst_ogg_chain_free),
16101 (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
16102 (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
16103 (gst_ogg_demux_class_init), (gst_ogg_demux_init),
16104 (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
16105 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
16106 (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
16107 (gst_ogg_demux_get_prev_page),
16108 (gst_ogg_demux_deactivate_current_chain),
16109 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
16110 (gst_ogg_demux_bisect_forward_serialno),
16111 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
16112 (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
16113 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
16114 (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
16115 (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
16116 (gst_ogg_demux_change_state), (gst_ogg_print):
16117 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
16118 (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
16119 (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
16120 (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
16121 (gst_ogg_mux_loop):
16122 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
16123 * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
16124 (theora_dec_src_convert), (theora_dec_sink_convert),
16125 (theora_dec_src_query), (theora_dec_src_event),
16126 (theora_dec_sink_event), (theora_dec_chain),
16127 (theora_dec_change_state):
16128 * ext/theora/theoraenc.c: (gst_theora_enc_init),
16129 (theora_enc_sink_setcaps), (theora_buffer_from_packet),
16130 (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
16131 (theora_enc_change_state):
16132 * ext/vorbis/Makefile.am:
16133 * ext/vorbis/oggvorbisenc.c:
16134 * ext/vorbis/oggvorbisenc.h:
16135 * ext/vorbis/vorbis.c: (plugin_init):
16136 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
16137 (vorbis_dec_src_query), (vorbis_dec_src_event),
16138 (vorbis_dec_sink_event), (vorbis_dec_chain),
16139 (vorbis_dec_change_state):
16140 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
16141 (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
16142 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
16143 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
16144 (gst_vorbisenc_change_state):
16145 * ext/vorbis/vorbisenc.h:
16146 * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
16147 * gst-libs/gst/audio/audioclock.c:
16148 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
16149 (gst_audiofilter_init), (gst_audiofilter_chain):
16150 * gst-libs/gst/audio/testchannels.c: (main):
16151 * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
16152 * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
16153 (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
16154 (gmip_find_track_streaminfo), (gmip_find_track_format):
16155 * gst-libs/gst/media-info/media-info.c:
16156 (gst_media_info_read_idler):
16157 * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
16158 (gst_play_get_all_by_interface):
16159 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
16160 (gst_riff_parse_chunk), (gst_riff_parse_file_header),
16161 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
16162 (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
16163 (gst_riff_parse_info):
16164 * gst-libs/gst/riff/riff-read.h:
16165 * gst-libs/gst/riff/riff.c: (plugin_init):
16166 * gst-libs/gst/video/Makefile.am:
16167 * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
16168 (gst_videosink_class_init), (gst_videosink_get_type):
16169 * gst-libs/gst/video/videosink.h:
16170 * gst/audioconvert/bufferframesconvert.c:
16171 (buffer_frames_convert_init), (buffer_frames_convert_fixate),
16172 (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
16173 * gst/audioconvert/channelmixtest.c: (main):
16174 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
16175 (gst_audio_convert_chain),
16176 (gst_audio_convert_caps_remove_format_info),
16177 (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
16178 (gst_audio_convert_setcaps), (_fixate_caps_to_int),
16179 (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
16180 (gst_audio_convert_buffer_to_default_format),
16181 (gst_audio_convert_buffer_from_default_format),
16182 (gst_audio_convert_channels):
16183 * gst/audioconvert/gstchannelmix.h:
16184 * gst/ffmpegcolorspace/avcodec.h:
16185 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16186 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
16187 (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
16188 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
16189 * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
16190 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
16191 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
16192 (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
16193 (mpeg_video_type_find), (mpeg_video_stream_type_find),
16195 * gst/videotestsrc/gstvideotestsrc.c:
16196 (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
16197 (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
16198 (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
16199 (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
16200 (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
16201 (gst_videotestsrc_init), (gst_videotestsrc_src_query),
16202 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
16203 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
16204 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
16205 (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
16206 (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
16207 (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
16208 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
16209 (gst_xvimagesink_navigation_send_event),
16210 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
16211 (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
16212 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
16213 * sys/xvimage/xvimagesink.h:
16214 Plugin port to 0.9, ogg/theora playback should work in the seek
16216 Removed old examples.
16217 Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
16218 explained in 0.9 TODO doc.
16221 2005-02-23 Thomas Vander Stichele <thomas at apestaart dot org>
16243 * testsuite/Makefile.am:
16244 remove a whole bunch of plugins. This module now contains a set
16245 of free reference plugins/elements as agreed.
16247 2005-02-22 Thomas Vander Stichele <thomas at apestaart dot org>
16250 hunting season on 0.9 is now OPEN
16252 2005-02-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16254 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
16255 Kick the hell out of gcc for not warning me about a symbol conflict.
16257 2005-02-22 Luca Ognibene <luogni@tin.it>
16259 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
16261 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
16262 Don't leak caps string (fixes #168134)
16264 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
16265 (gst_jpegenc_init), (gst_jpegenc_finalize),
16266 (gst_jpegenc_change_state):
16267 Don't leak line buffers and context struct (fixes #168133).
16269 2005-02-21 Tim-Philipp Müller <tim at centricular dot net>
16272 * ext/dirac/gstdiracdec.cc:
16273 (gst_diracdec_chain):
16274 Since dirac 0.5.0 the framerate in dirac is expressed as a
16275 rational number. Fix build and up requirement to 0.5.0, and
16276 also pass parameters to gst_diracdec_link in the right order
16279 2005-02-21 Maciej Katafiasz <mathrick@freedesktop.org>
16281 * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
16282 * ext/faad/gstfaad.h:
16283 TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with
16284 certain invalid muxed streams, where some packets will contain
16285 junk after decoder data. Partially fixes #149158.
16287 2005-02-21 Jan Schmidt <thaytan@mad.scientist.com>
16288 * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
16289 Make sure we only write to writable buffers
16291 2005-02-20 Tim-Philipp Müller <tim at centricular dot net>
16293 * gst-libs/gst/riff/riff-media.c:
16294 (gst_riff_create_audio_caps_with_data):
16295 Do actually fix invalid RIFF fmt header values for alaw
16296 and mulaw audio instead of just saying so.
16298 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
16299 Give gst_riff_create_audio_caps_with_data() a chance to
16300 fix up broken format header fields before extracting any
16301 parameters from the header. (fixes #167633)
16303 2005-02-19 Martin Holters <martin.holters@gmx.de>
16305 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
16307 * gst/audioconvert/bufferframesconvert.c:
16308 (buffer_frames_convert_link):
16309 Don't leak othercaps. (fixes #167878)
16311 2005-02-19 Arwed v. Merkatz <v.merkatz@gmx.net>
16314 * ext/libvisual/visual.c: (gst_visual_srclink),
16315 (gst_visual_change_state):
16316 Support libvisual 0.2.0.
16318 2005-02-18 Tim-Philipp Müller <tim at centricular dot net>
16320 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
16321 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
16322 Use same rowstrides for I420 as used everywhere else.
16324 2005-02-17 Tim-Philipp Müller <tim at centricular dot net>
16326 * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
16327 Declare variables at beginning of block and make gcc-2.95 happy
16328 (fixes # 167482, patch by Gergely Nagy).
16330 * gst/tcp/gsttcpclientsrc.c:
16331 * gst/tcp/gsttcpclientsrc.h:
16332 Move some includes into the header, so that struct sockaddr_in is
16333 defined when it should be defined on FreeBSD as well (fixes
16336 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
16337 Don't pass uninitialised values to setsockopt() here either.
16339 2005-02-17 Luca Ognibene <luogni at tin dot it>
16341 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
16343 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
16344 Don't pass uninitialised values to setsockopt(). (fixes #167704)
16346 2005-02-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16348 * gst/playback/gstplaybin.c: (add_sink):
16349 Invert bin_add/link order to workaround deadlock in opt.
16351 2005-02-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16353 * gst/modplug/gstmodplug.cc:
16354 Add missing break causing position queries to fail.
16356 2005-02-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16358 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
16359 Granpos can apparently be -1, which screws up calculations...
16361 2005-02-16 Jan Schmidt <thaytan@mad.scientist.com>
16363 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
16364 (gst_ximagesink_send_pending_navigation),
16365 (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
16366 (gst_ximagesink_init):
16367 * sys/ximage/ximagesink.h:
16368 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
16369 (gst_xvimagesink_send_pending_navigation),
16370 (gst_xvimagesink_navigation_send_event),
16371 (gst_xvimagesink_finalize), (gst_xvimagesink_init):
16372 * sys/xvimage/xvimagesink.h:
16373 Use a mutex protected list to marshal navigation
16374 events into the stream thread from whichever thread
16377 2005-02-15 Tim-Philipp Müller <tim at centricular dot net>
16379 * gst/speed/demo-mp3.c: (time_tick_cb), (main):
16380 Display current position and track length; misc. clean-ups.
16382 * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
16383 (speed_init), (speed_chain):
16384 Add query function, so that the stream length and current position
16385 get adjusted when queried (note that current position queries may
16386 still be wrong if the audio sink returns values based on buffer
16387 timestamps instead of passing on the query).
16389 2005-02-13 Benjamin Otte <otte@gnome.org>
16391 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
16392 (gst_audio_convert_channels):
16393 create channel conversion matrix when linking
16394 * gst/audioconvert/.cvsignore:
16395 * gst/audioconvert/Makefile.am:
16396 * gst/audioconvert/channelmixtest.c: (main):
16397 add (ugly) test that ensures stereo <=> mono conversion works
16400 2005-02-13 Benjamin Otte <otte@gnome.org>
16402 * gst/audioconvert/gstchannelmix.h:
16403 include missing header file
16404 * gst/audioconvert/gstchannelmix.c:
16405 (gst_audio_convert_fill_compatible):
16406 use same sign for both channels when converting to/from compatible
16407 channel. Previously used different signs made the signals cancel
16408 each other out and appear like silence. (fixes #167269)
16410 2005-02-12 Tim-Philipp Müller <tim at centricular dot net>
16412 * gst/ffmpegcolorspace/avcodec.h:
16413 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16414 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
16415 (gst_ffmpegcsp_avpicture_fill):
16416 * gst/ffmpegcolorspace/imgconvert.c:
16417 Convert to and from YV12 (fixes #156379).
16419 2005-02-12 Julien MOUTTE <julien@moutte.net>
16421 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
16422 (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
16423 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
16424 (gst_ximagesink_expose), (gst_ximagesink_set_property),
16425 (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
16426 methods from chain and negotiation and vice versa (Fixes #166142).
16427 * sys/ximage/ximagesink.h: Add stream_lock.
16428 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
16429 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16430 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
16431 (gst_xvimagesink_expose): Check for xcontext before trying to link.
16433 2005-02-12 Tim-Philipp Müller <tim at centricular dot net>
16435 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
16436 Don't send "Hey! You gave me a NULL pointer you naughty person" as
16437 error message when we can't open the DVD device (when dvdnav_open()
16438 fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
16439 the above). Send something more useful instead (fixes #167117).
16441 2005-02-11 Julien MOUTTE <julien@moutte.net>
16443 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
16444 (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
16445 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16446 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
16447 (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
16448 (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
16449 methods from chain and negotiation and vice versa (Fixes #166142).
16450 Fix a possible bug of images in the buffer pool being discarded because
16451 we are looking at the wrong geometry.
16452 * sys/xvimage/xvimagesink.h: Add stream_lock.
16454 2005-02-11 David Schleef <ds@schleef.org>
16456 * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
16457 unsigned int. (fixes #167128)
16459 2005-02-11 David Schleef <ds@schleef.org>
16461 * gst/librfb/Makefile.am: Testing stuff before committing is
16462 for wimps... and people with fast machines. Fix stupid
16465 2005-02-11 David Schleef <ds@schleef.org>
16467 * configure.ac: Pull in librfb from my CVS tree, because it is
16468 too small and annoying to be separate. Move rfbsrc plugin
16471 * ext/librfb/Makefile.am:
16472 * ext/librfb/gstrfbsrc.c:
16473 * gst/librfb/Makefile.am:
16474 * gst/librfb/gstrfbsrc.c:
16475 * gst/librfb/rfb.c:
16476 * gst/librfb/rfb.h:
16477 * gst/librfb/rfbbuffer.c:
16478 * gst/librfb/rfbbuffer.h:
16479 * gst/librfb/rfbbytestream.c:
16480 * gst/librfb/rfbbytestream.h:
16481 * gst/librfb/rfbcontext.h:
16482 * gst/librfb/rfbdecoder.c:
16483 * gst/librfb/rfbdecoder.h:
16484 * gst/librfb/rfbutil.h:
16486 2005-02-10 Tim-Philipp Müller <tim at centricular dot net>
16488 * gst/speed/Makefile.am:
16489 * gst/speed/demo-mp3.c: (main):
16490 * gst/speed/filter.func:
16491 * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
16492 (speed_class_init), (speed_init), (speed_chain_int16),
16493 (speed_chain_float32), (speed_chain), (speed_set_property),
16494 (speed_get_property), (speed_change_state):
16495 * gst/speed/gstspeed.h:
16496 Fix speed element and make it chain-based (fixes #156467),
16497 and make it handle more than one channel.
16499 2005-02-10 Jan Schmidt <thaytan@mad.scientist.com>
16501 * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
16502 (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
16503 (gst_dtsdec_chain), (gst_dtsdec_change_state):
16504 * ext/dts/gstdtsdec.h:
16505 Don't clobber the stack constructing the channels array.
16506 Make the element chain-based. DTS tracks can now be played.
16508 2005-02-09 Tim-Philipp Müller <tim at centricular dot net>
16510 * gst-libs/gst/audio/multichannel.h:
16511 * gst-libs/gst/gconf/gconf.h:
16512 * gst-libs/gst/idct/idct.h:
16513 * gst-libs/gst/media-info/media-info-priv.h:
16514 * gst-libs/gst/play/play.h:
16515 * gst-libs/gst/resample/private.h:
16516 * gst-libs/gst/resample/resample.h:
16517 * gst-libs/gst/riff/riff-ids.h:
16518 * gst-libs/gst/video/video.h:
16519 * gst-libs/gst/video/videosink.h:
16520 Add G_BEGIN_DECLS and G_END_DECLS around headers where
16521 missing, so that they work when included from C++ code.
16523 2005-02-09 David Schleef <ds@schleef.org>
16525 * testsuite/gst-lint: Check for non-statically scoped
16526 parent_class variables. This won't be a problem once
16527 plugins are loaded with RTLD_LOCAL.
16529 2005-02-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16531 * ext/mplex/gstmplexibitstream.cc:
16534 2005-02-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16536 * ext/ogg/gstogmparse.c:
16537 * gst/debug/gstnavigationtest.c:
16538 Die, thou faulty symbol pollutors (non-static parent_class).
16540 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16542 * ext/mplex/gstmplexibitstream.cc:
16543 Fix event handling (#165525).
16545 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16547 * ext/mikmod/gstmikmod.c:
16548 * gst/modplug/gstmodplug.cc:
16549 Add missing endianness to template (fixes #165509).
16551 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16553 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
16554 Fix wrong order of reading of optional bytes (#165290).
16556 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16558 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
16559 Implement FILLER event awareness.
16561 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16563 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
16564 Fix track calculations (#166208).
16566 2005-02-08 Gergely Nagy <algernon@bonehunter.rulez.org>
16568 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16570 * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
16571 * ext/libpng/gstpngenc.c:
16572 Fix byte-order, use proper fixed caps. Fixes #164197.
16574 2005-02-08 Jan Schmidt <thaytan@mad.scientist.com>
16579 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
16580 (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
16581 Don't push buffers if the src pad isn't negotiated yet.
16583 * gst/audioconvert/gstaudioconvert.c:
16584 (gst_audio_convert_buffer_to_default_format),
16585 (gst_audio_convert_buffer_from_default_format):
16586 Add support for 24-bit width.
16588 * gst/dvdlpcmdec/.cvsignore:
16589 * gst/dvdlpcmdec/Makefile.am:
16590 * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
16591 (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
16592 (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
16593 (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
16595 * gst/dvdlpcmdec/gstdvdlpcmdec.h:
16596 New decoder for rearranging DVD LPCM into our audio/x-raw-int
16597 format. Needs support for the channels maps if someone can find
16598 a DVD LPCM track with > 2 channels.
16600 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
16601 (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
16602 (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
16603 * gst/mpegstream/gstdvddemux.h:
16604 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
16605 (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
16606 (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
16607 * gst/mpegstream/gstmpegdemux.h:
16608 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
16609 (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
16610 (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
16611 (gst_mpeg_parse_handle_src_query),
16612 (gst_mpeg_parse_handle_src_event):
16613 Use audio/x-dvd-lpcm for LPCM output.
16616 2005-02-08 Gergely Nagy <algernon@bonehunter.rulez.org>
16618 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16620 * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
16621 (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
16622 Add BGRA handling (#165736).
16624 2005-02-08 Francis Labonte <francis_labonte@hotmail.com>
16626 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16628 * gst/law/alaw-decode.c: (alawdec_link):
16629 * gst/law/alaw-encode.c: (alawenc_link):
16630 * gst/law/mulaw-decode.c: (mulawdec_link):
16631 * gst/law/mulaw-encode.c: (mulawenc_link):
16632 Fix caps memleaks (#166600).
16634 2005-02-08 Tim-Philipp Müller <tim at centricular dot net>
16636 * ext/tarkin/mem.h:
16637 * ext/tarkin/wavelet.h:
16638 * ext/tarkin/yuv.h:
16639 * gst/ffmpegcolorspace/avcodec.h:
16640 Include "_stdint.h" instead of <stdint.h>. Fixes build on
16641 systems that don't have stdint.h, like Solaris9 (fixes #166631).
16643 2005-02-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16645 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
16646 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
16647 (gst_xvimagesink_change_state):
16648 Clear window on PAUSED->READY instead of READY->PAUSED. Stop
16649 Xv video (and thereby regenerate Xv colourkey) in clear() so
16650 that PLAY -> READY -> PLAY works (fixes #162504).
16652 2005-02-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16654 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
16655 Switch to list instead of range, since MJPEG-devices really just
16656 support decimations, not any size.
16658 2005-02-05 Jan Schmidt <thaytan@mad.scientist.com>
16659 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
16660 (gst_mpeg2dec_reset), (free_all_buffers),
16661 (gst_mpeg2dec_alloc_buffer), (handle_sequence):
16662 * ext/mpeg2dec/gstmpeg2dec.h:
16663 The libmpeg2 user-allocated buffer management is awkward,
16664 to say the least. Hopefully this fixes things.
16666 2005-02-04 Andy Wingo <wingo@pobox.com>
16668 * gst/audioconvert/bufferframesconvert.c
16669 (buffer_frames_convert_fixate): New function, fixates to 256
16670 frames per buffer by default. (Much better than 1.)
16671 (buffer_frames_convert_init): Set the fixate function for both src
16673 (buffer_frames_convert_link): After success setting nonfixed caps,
16674 get the negotiated caps so we can know how many buffer-frames it
16675 will be. No idea how this worked at all before.
16677 2005-02-05 Jan Schmidt <thaytan@mad.scientist.com>
16679 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
16680 (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
16681 (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
16682 (handle_sequence), (handle_picture):
16683 * ext/mpeg2dec/gstmpeg2dec.h:
16684 Rearrange buffer tracking and refcounting and refactor
16685 a little for readability.
16687 2005-02-04 Jan Schmidt <thaytan@mad.scientist.com>
16688 * sys/v4l/gstv4l.c: (plugin_init):
16689 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
16690 (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
16691 (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
16692 (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
16693 * sys/v4l/gstv4ljpegsrc.h:
16694 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
16695 * sys/v4l/v4l_calls.h:
16696 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
16697 (gst_v4lsrc_get_fps):
16698 * sys/v4l/v4lsrc_calls.h:
16699 Add new v4ljpegsrc for handling the ov51x hacky "I'll give
16700 you jpeg inside rgb frames" driver.
16701 Don't error in the v4lsrc link function, just return
16704 2005-02-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16706 * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
16707 (gst_qcamsrc_open):
16708 Use GST_ELEMENT_ERROR, not g_warning, if open failed.
16710 2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16712 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16713 Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
16715 2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16717 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
16718 Reset negotiated state on PAUSED->READY.
16720 2005-02-02 David Schleef <ds@schleef.org>
16722 * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
16723 whereever possible. (Fixes #165997)
16724 * examples/capsfilter/capsfilter1.c: (main):
16725 * examples/dynparams/filter.c: (create_ui):
16726 * examples/seeking/cdparanoia.c: (get_track_info), (main):
16727 * examples/seeking/chained.c: (main):
16728 * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
16729 (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
16730 (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
16731 (make_mpeg_pipeline), (make_mpegnt_pipeline):
16732 * examples/seeking/spider_seek.c: (make_spider_pipeline):
16733 * examples/switch/switcher.c: (main):
16734 * ext/dv/demo-play.c: (main):
16735 * ext/faad/gstfaad.c: (gst_faad_change_state):
16736 * ext/mad/gstmad.c: (gst_mad_chain):
16737 * ext/smoothwave/demo-osssrc.c: (main):
16738 * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
16739 (gst_gconf_render_bin_from_description),
16740 (gst_gconf_get_default_audio_sink),
16741 (gst_gconf_get_default_video_sink),
16742 (gst_gconf_get_default_audio_src),
16743 (gst_gconf_get_default_video_src),
16744 (gst_gconf_get_default_visualization_element):
16745 * gst/level/demo.c: (main):
16746 * gst/level/plot.c: (main):
16747 * gst/playback/gstplaybin.c: (gen_video_element),
16748 (gen_audio_element):
16749 * gst/playback/test.c: (gen_video_element), (gen_audio_element):
16750 * gst/playondemand/demo-mp3.c: (setup_pipeline):
16751 * gst/sine/demo-dparams.c: (main):
16752 * gst/spectrum/demo-osssrc.c: (main):
16753 * gst/speed/demo-mp3.c: (main):
16754 * gst/volume/demo.c: (main):
16755 * testsuite/embed/embed.c: (main):
16757 2005-02-02 Jan Schmidt <thaytan@mad.scientist.com>
16759 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
16760 (gst_tcpclientsink_finalize):
16761 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
16762 (gst_tcpclientsrc_finalize):
16763 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
16764 (gst_tcpserversink_init), (gst_tcpserversink_finalize):
16765 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
16766 (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
16767 Don't leak the hostname when shutting down.
16768 In tcpserversrc, take a copy of the default hostname.
16770 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16772 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
16773 Set caps to systemstream=TRUE.
16775 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16777 * testsuite/Makefile.am:
16778 Fix more OSX buildbots.
16780 2005-02-02 Jan Schmidt <thaytan@mad.scientist.com>
16782 * ext/mpeg2dec/gstmpeg2dec.c:
16783 Don't send things to NULL PAD_PEERs
16785 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
16786 Copy-on-write the incoming buffer.
16788 * gst/mpegstream/gstdvddemux.h:
16789 * gst/mpegstream/gstmpegclock.h:
16790 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
16791 (normal_seek), (gst_mpeg_demux_handle_src_event):
16792 * gst/mpegstream/gstmpegdemux.h:
16793 * gst/mpegstream/gstmpegpacketize.h:
16794 * gst/mpegstream/gstmpegparse.c:
16795 (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
16796 (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
16797 (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
16798 (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
16799 (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
16800 * gst/mpegstream/gstmpegparse.h:
16801 * gst/mpegstream/gstrfc2250enc.h:
16802 Various changes to the way time is computed that make seeking and
16803 total time estimation much better here.
16804 Use G_BEGIN/END_DECLS instead of __cplusplus
16806 * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
16807 Use gst_buffer_stamp instead of only copying the TIMESTAMP
16809 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16811 * gst/subparse/gstsubparse.c:
16814 2005-01-31 Tim-Philipp Müller <tim at centricular dot net>
16816 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
16817 (theora_enc_chain), (theora_enc_change_state):
16818 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
16819 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
16820 (gst_vorbisenc_change_state):
16821 * ext/vorbis/vorbisenc.h:
16822 Set granulepos and timestamp correctly for streams not
16823 starting at 0, taking into account the initial delay.
16825 2005-01-31 Tim-Philipp Müller <tim at centricular dot net>
16827 * gst/mpegstream/gstdvddemux.c:
16828 Add audio/x-dts to audio pad template caps
16830 2005-01-30 David Schleef <ds@schleef.org>
16832 * ext/polyp/polypsink.c: (gst_polypsink_base_init),
16833 (create_context), (gst_polypsink_link): Fix silly endianness
16834 bug. Add some debugging. Remove float from caps; it doesn't
16835 work. Attempt to get remote audio working.
16837 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16839 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16842 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16844 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
16845 (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
16846 (gst_avi_demux_stream_data):
16847 * gst/avi/gstavidemux.h:
16848 Invert DIB images. Fixes #132341.
16850 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16852 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16853 (gst_ffmpegcsp_chain):
16854 D'oh, reference the palette data, not the palette structure.
16855 Fixes color distortion in #132341.
16857 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16859 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
16860 PAR can be non-fixed when not provided as argument (#162626).
16862 2005-01-29 David Moore <dcm@acm.org>
16864 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16866 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16867 (gst_qtdemux_loop_header):
16868 Re-apply patch from #142272 that allows non-seekable sources,
16869 re-proposed by Daniel Drake <dsd@gentoo.org>.
16871 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16873 * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
16874 Use the src template for creating the src pad (#162330).
16876 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16879 * ext/musepack/Makefile.am:
16880 * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
16881 (gst_musepackdec_init), (gst_musepackdec_dispose),
16882 (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
16883 (gst_musepack_stream_init), (gst_musepackdec_loop),
16884 (gst_musepackdec_change_state):
16885 * ext/musepack/gstmusepackdec.cpp:
16886 * ext/musepack/gstmusepackdec.h:
16887 * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
16888 (gst_musepack_reader_read), (gst_musepack_reader_seek),
16889 (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
16890 (gst_musepack_reader_canseek), (gst_musepack_init_reader):
16891 * ext/musepack/gstmusepackreader.cpp:
16892 * ext/musepack/gstmusepackreader.h:
16893 Update to 1.1 API (#165446).
16895 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16900 2005-01-28 Andy Wingo <wingo@pobox.com>
16902 * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
16903 to reflect a different dubious internet source. Add a reference
16904 and some commentary.
16906 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16908 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
16909 (gst_stream_selector_get_caps), (gst_stream_selector_chain):
16910 * gst/playback/gststreamselector.h:
16911 Be more selective when we're redoing caps negotiation from
16912 within the chain function on a stream change.
16914 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16918 * ext/amrnb/Makefile.am:
16919 * ext/amrnb/amrnb.c: (plugin_init):
16920 * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
16921 (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
16922 (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
16923 (gst_amrnbdec_state_change):
16924 * ext/amrnb/amrnbdec.h:
16925 * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
16926 (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
16927 (gst_amrnbparse_init), (gst_amrnbparse_formats),
16928 (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
16929 (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
16930 (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
16931 * ext/amrnb/amrnbparse.h:
16932 Add support for AMR-NB (mobile phone audio format; #155163, #163286).
16933 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16934 Add AMR-NB/-WB raw formats.
16935 * ext/alsa/gstalsa.c: (gst_alsa_link):
16936 Keep valid time when changing format.
16937 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
16938 (qtdemux_parse_trak):
16939 Add some more format-specific options (#140141, #143555, #155163).
16941 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16943 * gst/matroska/matroska-demux.c:
16944 (gst_matroska_demux_parse_blockgroup):
16945 Fix logic error in timing of subtitle stream synchronization.
16946 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
16947 Add skip-chunk, which is found in kodak-camera streams.
16949 2005-01-27 Thomas Vander Stichele <thomas at apestaart dot org>
16953 Adding Vietnamese translation (submitted by Clytie Siddall)
16955 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16957 * gst/playback/gstdecodebin.c: (try_to_link_1):
16958 Use realpad for signal.
16960 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16962 * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
16963 Fix category so decodebin picks it up.
16965 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16967 * ext/mad/Makefile.am:
16968 * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
16969 (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
16970 (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
16971 (found_type), (gst_id3demux_bin_change_state):
16972 * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
16973 (gst_id3_tag_init), (gst_id3_tag_handle_event),
16974 (gst_id3_tag_src_link), (gst_id3_tag_chain),
16975 (gst_id3_tag_change_state), (plugin_init):
16976 * ext/mad/gstmad.h:
16977 Add id3demuxbin (which is a simple bin consisting of id3demux
16978 and typefind), take over rank from id3demux, remove typefind
16979 code from id3demux. Makes all broken mp3s that I know of work,
16980 and thereby fixes #152688.
16982 2005-01-27 Edward Hervey <bilboed@bilboed.com>
16984 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16986 * ext/mad/gstmad.c: (gst_mad_src_event):
16987 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
16988 Allow seeks on audio pad, make mad forward those (#164826).
16989 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
16990 Set duration (#165335).
16992 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16994 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
16995 (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
16996 (gst_asf_demux_process_ext_content_desc),
16997 (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
16998 (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
16999 * gst/asfdemux/gstasfdemux.h:
17000 Improve metadata display, e.g. if the metadata comes before the
17001 streams are loaded (which is perfectly valid).
17003 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17005 * tools/gst-launch-ext-m.m:
17006 Fix AVI/ASF pipelines (#165340).
17008 2005-01-26 Amaury Jacquot <sxpert@esitcom.org>
17009 * ext/cairo/gsttextoverlay.c: include string.h and strings.h to fix
17010 build failure on amd64
17012 2005-01-26 Tim-Philipp Müller <tim at centricular dot net>
17014 * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
17015 (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
17016 Check environment variables GST_ID3V2_TAG_ENCODING,
17017 GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
17018 list of character encodings to force interpretation of non-unicode
17019 strings stored in an ID3v2 tag to a particular encoding. If none
17020 is specified, try to use current locale's encoding, then fall back
17021 to ISO-8859-1 (which will always succeed). (Resolves #149274)
17022 * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
17023 (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
17024 Check environment variables GST_ID3V1_TAG_ENCODING,
17025 GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
17026 list of character encodings to use in case a string encountered
17027 in an ID3v1 tag is not valid UTF-8 already. If no encoding is
17028 specified, try to use the current locale's encoding, then fall
17029 back to ISO-8859-1 (which will always succeed).
17031 2005-01-25 Benjamin Otte <otte@gnome.org>
17033 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
17034 - on half framerate, compute the rate in advance so the comparisons
17035 don't compare wrong values
17036 - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
17038 - don't use mad_header_decode anymore, mad_frame_decode does that
17040 - when getting rid of consumed bytes, reset the stream's skiplen
17043 2005-01-26 Jan Schmidt <thaytan@mad.scientist.com>
17045 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
17046 Use 1/2 a second for default max_discont, as PES streams from DVB
17047 seem to have larger spacings in the SCR.
17050 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17052 * gst/playback/gstplaybasebin.c: (group_commit):
17053 Notify delayed stream-info availability.
17055 2005-01-26 Jan Schmidt <thaytan@mad.scientist.com>
17056 * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
17057 (gst_a52dec_handle_event), (gst_a52dec_chain):
17058 Add some debug output. Check that a discont has a valid
17060 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
17061 (gst_alsa_sink_loop):
17062 Ignore TAG events. A little extra debug for broken timestamps.
17063 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
17064 (dvdnavsrc_change_state):
17065 Ensure we send a discont to engage the link before we send any
17067 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
17068 (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
17069 (_seek_chapter), (seek_sector), (dvdreadsrc_get),
17070 (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
17071 Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
17072 dvd://title works in totem because typefinding sends a seek that ends
17073 up going back to chapter 1 regardless.
17074 * ext/mpeg2dec/gstmpeg2dec.c:
17075 * ext/mpeg2dec/gstmpeg2dec.h:
17076 Output correct timestamps and handle disconts.
17077 * ext/ogg/gstoggdemux.c: (get_relative):
17078 Small guard against a null dereference.
17079 * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
17080 (gst_textoverlay_set_property):
17081 Free memory when done. Don't call gst_event_filler_get_duration on
17082 EOS events. Use GST_LOG and GST_WARNING instead of g_message and
17084 * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
17085 (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
17086 (gst_sw_srclink), (gst_smoothwave_chain):
17087 Draw solid lines, prettier colours.
17088 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
17089 Add a default palette that'll work for some movies.
17090 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
17091 (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
17092 (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
17093 * gst/mpegstream/gstdvddemux.h:
17094 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
17095 (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
17096 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
17097 (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
17098 * gst/mpegstream/gstmpegparse.h:
17099 Use PTM/NAV events when for timestamp adjustment when connected to
17100 dvdnavsrc. Don't use many discont events where one suffices.
17101 * gst/playback/gstplaybasebin.c: (group_destroy),
17102 (gen_preroll_element), (gst_play_base_bin_add_element):
17103 * gst/playback/gstplaybasebin.h:
17104 Make sure we remove subtitles from the same bin we put them in.
17105 * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
17106 (gst_subparse_buffer_format_autodetect),
17107 (gst_subparse_change_state):
17108 Fix some memleaks and invalid accesses.
17109 * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
17110 (oggskel_type_find), (cmml_type_find), (plugin_init):
17111 Some typefind functions for Annodex v3.0 files
17112 * gst/wavparse/gstwavparse.h:
17113 GstRiffReadClass is the correct parent class.
17115 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17117 * gst-libs/gst/riff/riff-media.c:
17118 (gst_riff_create_video_caps_with_data):
17119 Add extradata to huffyuv (fixes #165013).
17120 * gst-libs/gst/riff/riff-read.c:
17121 (gst_riff_read_strf_vids_with_data):
17122 Fix extradata extraction if it is in the chunk size.
17124 2005-01-25 Edward Hervey <bilboed@bilboed.com>
17126 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17128 * gst/effectv/gstquark.c: (gst_quarktv_class_init),
17129 (gst_quarktv_change_state), (gst_quarktv_dispose):
17130 Memory free'ing location fix (#164708).
17132 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17134 * gst/playback/gstplaybasebin.c: (group_commit),
17135 (gen_preroll_element), (probe_triggered), (gen_source_element),
17136 (setup_source), (gst_play_base_bin_change_state),
17137 (gst_play_base_bin_add_element):
17138 Don't block for streams.
17139 * gst/playback/gststreaminfo.c: (stream_info_change_state),
17140 (gst_stream_info_set_mute):
17141 Use gst_pad_set_active_recursive.
17143 2005-01-25 Andy Wingo <wingo@pobox.com>
17145 * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
17146 for #ifndef HAVE_XVIDEO.
17148 2005-01-24 Jeffrey C. Ollie
17150 reviewed by: Maciej Katafiasz <mathrick@freedesktop.org>
17152 * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
17153 * ext/gsm/gstgsmdec.h:
17154 * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
17155 * ext/gsm/gstgsmenc.h:
17156 Fix rate to 8kHz as per spec, removes obscure errors when no rate
17157 was given by property. Add proper buffer timestamps and offsets.
17159 2005-01-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17161 * gst-libs/gst/riff/riff-media.c:
17162 (gst_riff_create_audio_caps_with_data):
17163 Audio can be <8000Hz.
17165 2005-01-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17167 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
17168 Explicit state change to workaround refcount bugs.
17170 2005-01-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17172 * gst/avi/gstavimux.c: (gst_avimux_write_tag),
17173 (gst_avimux_riff_get_avi_header):
17176 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17178 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
17179 (gst_riff_read_element_data):
17180 * gst-libs/gst/riff/riff-read.h:
17181 Add _peek version (req'ed in CDXA).
17182 * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
17183 (gst_cdxaparse_loop):
17184 Fix parsing in playbin.
17185 * gst/playback/gstdecodebin.c: (close_pad_link):
17186 Ignore current_ pads, they cause major annoyance.
17188 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17190 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
17193 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17195 * gst/avi/gstavimux.c: (gst_avimux_write_tag):
17198 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17200 * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
17201 Allow for 0-sized buffers. Fixes length query problems in
17202 starwars.mkv from the testsuite.
17204 2005-01-19 Tim-Philipp Müller <tim at centricular dot net>
17206 * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
17207 (gst_video_box_i420), (gst_video_box_chain):
17208 Fix row strides for I420 (fixes #163159)
17210 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17212 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
17213 MPEG2 has a useful rate property, so we can actually use that.
17214 For MPEG-1, continue using the bytes/time properties.
17216 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17218 * gst-libs/gst/riff/riff-media.c:
17219 (gst_riff_create_video_caps_with_data),
17220 (gst_riff_create_video_template_caps):
17223 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17225 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
17226 Fail if caps negotiation fails. Should fix #162184, and should
17227 definately be in there regardless of it fixing the actual bug.
17228 * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
17229 (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
17230 (gst_avimux_riff_get_avix_header),
17231 (gst_avimux_riff_get_video_header),
17232 (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
17233 (gst_avimux_start_file), (gst_avimux_handle_event),
17234 (gst_avimux_change_state):
17235 * gst/avi/gstavimux.h:
17236 Refactor structure writing to use GST_WRITE_UINT macros, add
17237 metadata writing support.
17239 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17241 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
17242 Elements may already be destroyed when this function is called.
17244 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17246 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
17247 (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
17248 More memory leak fixes (#149162).
17250 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17252 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
17253 (gst_qtdemux_add_stream):
17256 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17258 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
17261 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17263 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
17264 Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
17265 when fixating to six channels in Totem.
17267 2005-01-17 Tim-Philipp Müller <tim at centricular dot net>
17269 * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
17270 Fix compile warnings on Solaris 10 buildbot
17272 2005-01-17 Tim-Philipp Müller <tim at centricular dot net>
17274 * ext/dvdread/dvdreadsrc.c: (_read):
17275 Don't read beyond the last cell in a chapter (fixes
17276 invalid memory access)
17278 2005-01-17 Tim-Philipp Müller <tim at centricular dot net>
17280 * ext/dvdread/stream_labels.c:
17281 (dvdreadsrc_get_audio_stream_labels):
17282 Use NULL for an empty GList instead of g_list_alloc(); fix
17283 memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead
17284 of GString (easier to bulk free later)
17286 2005-01-17 Gergely Nagy <algernon@bonehunter.rulez.org>
17288 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17290 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17291 (gst_ffmpeg_pixfmt_to_caps):
17292 Fix BGRA32 caps (#164209).
17294 2005-01-17 Gergely Nagy <algernon@bonehunter.rulez.org>
17296 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17298 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17299 (gst_ffmpeg_caps_to_pixfmt):
17300 alpha_mask can be RGBA/ABGR. Fixes #164265.
17302 2005-01-17 Francis Labonte <francis_labonte@hotmail.com>
17304 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17306 * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
17307 (gst_mpeg2dec_alloc_buffer):
17308 * ext/mpeg2dec/gstmpeg2dec.h:
17309 Crop if decoding size is not the actual image size (#163676).
17311 2005-01-17 Steve Baker <steve@stevebaker.org>
17313 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17315 * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
17316 (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
17317 Add libsndfile typefind functions (#163309).
17319 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17321 * tools/gst-launch-ext-m.m:
17322 Add .aac, fix .m1v/.m2v (#163891).
17324 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17326 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
17327 Sanity check, don't wait endlessly since the clock might not
17328 actually run at this point (which is a deadlock). Fixes #164069.
17330 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17332 * gst/playback/gstplaybasebin.c: (probe_triggered):
17333 Of course, only pause if group is done...
17335 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17337 * gst/playback/gstplaybasebin.c: (probe_triggered):
17340 2005-01-16 Jan Schmidt <thaytan@mad.scientist.com>
17342 * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
17343 Don't return state change success when the parent
17346 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17348 * gst/avi/gstavimux.c: (gst_avimux_handle_event):
17349 Free events (fix memleak in #162905).
17351 2005-01-15 Gergely Nagy <algernon@bonehunter.rulez.org>
17353 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17355 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17356 (gst_ffmpeg_caps_to_pixfmt):
17357 Fix for depth = 15. Fixes #161675.
17359 2005-01-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17361 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
17362 Set FPS correctly, even for webcams and the like.
17363 * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
17364 Don error on setting while capturing.
17366 2005-01-14 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17368 * ext/dv/gstdvdec.c:
17369 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
17370 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
17371 I'm a bad boy. using /1001. to force C to do float division
17372 and not integer division (as it did in my last commit)
17373 Thanks to David I. Lehn for pointing this mistake.
17375 2005-01-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17377 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
17378 Revert Johan's 1.35->1.36 since it breaks compat.
17380 2005-01-14 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17382 * ext/dv/gstdvdec.c:
17383 * ext/libfame/gstlibfame.c:
17384 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
17385 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
17386 replace framerate aproximations by their real value
17387 (24000/1001, 30000/1001, 60000/1001)
17388 Finish fixing bug #164049
17390 2005-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
17392 * ext/ogg/gstoggmux.c:
17394 * gst/tcp/gstmultifdsink.c:
17395 * gst/tcp/gstmultifdsink.h:
17396 * gst/tcp/gsttcp.c:
17397 * gst/tcp/gsttcp.h:
17398 * gst/tcp/gsttcpclientsink.c:
17399 * gst/tcp/gsttcpclientsrc.c:
17400 * gst/tcp/gsttcpserversink.c:
17401 * gst/tcp/gsttcpserversrc.c:
17402 improve reusability of elements after state changes and errors
17403 make multifdsink throw away streamheaders when receiving new ones
17405 2005-01-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17407 * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
17408 Fix for if items are already in list...
17410 2005-01-12 Benjamin Otte <otte@gnome.org>
17412 * gst/adder/gstadder.c: (gst_adder_loop):
17413 fix adder a bit so it doesn't screw up with events as much anymore
17415 2005-01-12 Jan Schmidt <thaytan@mad.scientist.com>
17417 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
17418 (pixbufscale_scale), (gst_pixbufscale_chain):
17419 * ext/gdk_pixbuf/pixbufscale.h:
17420 Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
17421 to ensure rowstrides are calculated the same way as
17423 Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
17424 that we pick up duration and offset also.
17426 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17428 * gst/avi/gstavimux.c: (gst_avimux_class_init),
17429 (gst_avimux_pad_unlink), (gst_avimux_release_pad):
17432 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17434 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
17435 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
17436 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
17437 (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
17438 Update flags when requested.
17440 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17442 * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
17445 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17447 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17448 (gst_play_base_bin_init), (gst_play_base_bin_dispose),
17449 (probe_triggered), (new_decoded_pad), (gen_source_element),
17450 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
17451 * gst/playback/gstplaybasebin.h:
17452 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
17453 (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
17454 (gst_play_bin_change_state):
17455 Implement group-switch signal for use in apps to clear metadata
17456 cache, clean up subtitle, add suburi property instead of # hack,
17457 some error-out fixes.
17459 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17461 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
17463 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
17464 If we got a state change in the _get handler, don't return success.
17466 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17468 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
17469 (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
17470 Make jpegdec quiet on MJPEG decoding
17471 * gst/asfdemux/README:
17472 Fix mimetypes for MJPEG and H263
17474 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17476 * ext/theora/theoradec.c: (theora_dec_chain):
17477 Fix broken code generation by gcc by swapping arguments.
17478 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17481 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17484 delete this file, it is by far outdated
17485 * ext/alsa/gstalsa.1: remove
17486 * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
17487 (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
17488 (gst_alsa_get_caps):
17489 Add HW probing for supported sample rates. Fixes #161704
17491 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17493 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17494 Don't crash, biatch! :).
17496 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17498 * ext/musepack/gstmusepackreader.cpp:
17499 * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
17500 Some work on tags - still doesn't work in playbin...
17501 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17504 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17506 * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
17507 Also shove tags on kid pads.
17509 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17511 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
17512 Don't bail on unknown events.
17513 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17514 Don't crash on events before negotiation.
17515 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
17516 Send tags on pads, too.
17517 * gst/playback/gststreamselector.c:
17518 (gst_stream_selector_request_new_pad):
17519 Forward events on first pad if no input was selected yet.
17521 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17523 * gst/playback/gstplaybasebin.c: (setup_substreams):
17524 Don't disable streamtype if the stream doesn't exist, since
17525 then playing a video after audio will disable both and nothing
17526 will happen. Fixes the testsuite.
17528 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17530 * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
17531 (gst_v4l_xoverlay_set_xwindow_id):
17532 * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
17533 (gst_v4l2_xoverlay_set_xwindow_id):
17534 Add debug categories, fix overlay disabling.
17536 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17538 * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
17539 * ext/alsa/gstalsa.h:
17540 Add HW probing for period_count/size and buffer_size MIX/MAX
17541 Adjust default/user defined value if out of bounds
17542 Should fix bug #162024
17544 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17546 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
17547 Fix warning (#161191).
17549 2005-01-09 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17551 * ext/dvdread/stream_labels.c:
17552 (dvdreadsrc_get_audio_stream_labels):
17553 Fix warning (init the good variable in switch default)
17555 2005-01-09 Koop Mast <kwm@rainbow-runner.nl>
17557 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17559 * gst/tta/gstttaparse.c: (gst_tta_src_event):
17560 Fix gcc-2.95 compile (#163485).
17562 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17565 * ext/flac/gstflacenc.c: (gst_flacenc_init),
17566 (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
17567 (gst_flacenc_tell_callback), (gst_flacenc_chain),
17568 (gst_flacenc_change_state):
17569 * ext/flac/gstflacenc.h:
17570 Update for API change in flac-1.1.1. Update requirement in
17571 configure.ac. Fixes #162974.
17573 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17575 * gst/playback/gstplaybasebin.c: (group_destroy):
17576 Remove hack to get rid of assert and get rid of unlinked
17579 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17581 * gst/playback/gstplaybasebin.c: (setup_source):
17582 Set source to NULL so that resources are free'ed. Fixes issues
17583 with playback of CDDA and similar device-accessing things.
17585 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17587 * testsuite/embed/Makefile.am:
17588 test->noinst, fix make test in buildbot.
17590 2005-01-09 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17592 * ext/dvdread/stream_labels.c: new file
17593 * ext/dvdread/stream_labels.h: new file
17594 * ext/dvdread/Makefile.am:
17595 * ext/dvdread/dvdreadsrc.c: (_seek_title):
17596 Extract audio stream label from DVD IFO files.
17597 It only dump them on the console for now, still have to
17598 make playbin aware of them.
17600 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17602 * gst/playback/gstplaybasebin.c: (setup_source):
17605 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17607 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
17608 (gen_preroll_element), (remove_groups), (setup_subtitle),
17609 (gen_source_element), (setup_source):
17610 * gst/playback/gstplaybasebin.h:
17611 Multiple .sub files is just a stupid idea... Fix some threading
17612 mistakes. Interestingly, external .sub files cause playbin to
17613 hang, I don't know why... Parsing fixes contributed by Fran??ois
17614 Kooman <fkooman@tuxed.net>.
17616 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17618 * testsuite/embed/Makefile.am:
17621 2005-01-09 Gergely Nagy <algernon@bonehunter.rulez.org>
17623 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17625 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
17626 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
17627 (gst_pngenc_set_property):
17628 * ext/libpng/gstpngenc.h:
17629 Add compression level property (#163323).
17631 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17634 * examples/capsfilter/capsfilter1.c: (main):
17635 * examples/seeking/spider_seek.c: (make_spider_pipeline):
17636 * ext/dvdread/Makefile.am:
17637 * ext/dvdread/demo-play:
17638 * ext/dvdread/demo-play.c:
17639 * gconf/gstreamer.schemas.in:
17640 * gst-libs/gst/gconf/gconf.c:
17642 * testsuite/Makefile.am:
17643 * testsuite/embed/Makefile.am:
17644 * testsuite/embed/embed.c: (cb_expose), (main):
17645 Remove all references to xvideosink, fix examples (#140845).
17646 * gst/playback/gstplaybasebin.c: (group_destroy):
17647 Apparently, disposal does not unlink - so do explicitely.
17648 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
17651 2005-01-09 Maciej Katafiasz <mathrick@freedesktop.org>
17653 * README: fix PKG_CONFIG_PATH instructions, what was there
17654 previously was breaking default search path, not nice.
17657 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17659 * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
17660 (gst_audioscale_chain):
17661 %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
17662 when resampling - how the ^@$^!@^! is this possible?!?
17664 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17666 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
17667 Reset variables on READY.
17668 * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
17669 (gst_matroska_mux_loop):
17670 Require data before writing header.
17672 2005-01-09 Francis Labonte <francis_labonte@hotmail.com>
17674 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17676 * ext/mad/gstmad.c: (gst_mad_chain):
17677 Don't call mad_stream_sync() directly after recovering sync.
17680 2005-01-09 Martin Eikermann <meiker@upb.de>
17682 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17684 * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
17685 (snapshot_handler), (gst_snapshot_sinkconnect),
17686 (gst_snapshot_chain):
17687 Allocate resources when required, fix recursive signal emission
17688 and fix caps. Fixes #161667.
17690 2005-01-09 Gergely Nagy <algernon@bonehunter.rulez.org>
17692 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17694 * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
17695 (gst_pngdec_chain):
17696 Handle only 8-bppc (bits-per-pixel-component) images, better
17697 error handling and correct strides. Fixes #163177.
17698 * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
17699 (gst_pngenc_chain):
17700 Better error handling. Fixes #163348.
17702 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17704 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
17705 (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
17706 (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
17707 (dvdnavsrc_uri_handler_init):
17708 Add DVD-nav URI (dvdnav://) for Totem testing purposes.
17709 * gst/playback/gstplaybasebin.c: (gen_source_element):
17710 Add MMS to streaming URIs.
17712 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17714 * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
17715 * sys/xvimage/xvimagesink.c:
17716 (gst_xvimagesink_navigation_send_event):
17717 Check for pad availability before sending event.
17719 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17721 * gst-plugins.spec.in:
17724 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17727 Since we use functions from CVS, up requirement.
17729 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17731 * gst/playback/Makefile.am:
17732 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17733 (group_destroy), (group_commit), (group_is_muted),
17734 (gen_preroll_element), (add_stream), (unknown_type),
17735 (probe_triggered), (preroll_unlinked), (mute_stream),
17736 (silence_stream), (new_decoded_pad), (setup_substreams),
17737 (setup_source), (get_active_source), (mute_group_type),
17738 (muted_group_change_state), (set_active_source),
17739 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
17740 (play_base_eos), (gst_play_base_bin_change_state):
17741 * gst/playback/gstplaybasebin.h:
17742 * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
17743 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
17744 (gst_stream_info_dispose), (stream_info_mute_pad),
17745 (stream_info_change_state), (gst_stream_info_set_mute):
17746 * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
17747 (gst_stream_selector_base_init), (gst_stream_selector_class_init),
17748 (gst_stream_selector_init), (gst_stream_selector_dispose),
17749 (gst_stream_selector_get_linked_pad),
17750 (gst_stream_selector_get_caps), (gst_stream_selector_link),
17751 (gst_stream_selector_get_linked_pads),
17752 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
17753 * gst/playback/gststreamselector.h:
17754 Adding stream selection support plus required properties for
17755 applications to use this. Fully fixes #100931.
17757 2005-01-08 Benjamin Otte <otte@gnome.org>
17759 * gst/games/gstpuzzle.c: (nav_event_handler):
17760 - handle nav events differently: forward every event no matter if it
17761 was handled or not.
17763 You can now cheat by using navigationtest ! puzzle and moving the
17764 mouse close to the edge of a tile. ;)
17766 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17769 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
17770 * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
17771 (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
17772 (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
17773 (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
17774 (gst_ogm_parse_plugin_init):
17775 * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
17776 (gst_textoverlay_link), (gst_textoverlay_getcaps),
17777 (gst_textoverlay_event), (gst_textoverlay_video_chain),
17778 (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
17779 * ext/pango/gsttextoverlay.h:
17780 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17781 (gst_matroska_demux_handle_seek_event),
17782 (gst_matroska_demux_sync_streams),
17783 (gst_matroska_demux_parse_blockgroup),
17784 (gst_matroska_demux_subtitle_caps),
17785 (gst_matroska_demux_plugin_init):
17786 * gst/matroska/matroska-ids.h:
17787 * gst/playback/gstdecodebin.c: (close_pad_link):
17788 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
17789 (gen_preroll_element), (remove_groups), (add_stream),
17790 (new_decoded_pad), (setup_subtitles), (gen_source_element),
17792 * gst/playback/gstplaybasebin.h:
17793 * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
17794 * gst/subparse/Makefile.am:
17795 * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
17796 (gst_subparse_base_init), (gst_subparse_class_init),
17797 (gst_subparse_init), (gst_subparse_formats),
17798 (gst_subparse_eventmask), (gst_subparse_event),
17799 (gst_subparse_handle_event), (convert_encoding), (get_next_line),
17800 (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
17801 (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
17802 (parse_mpsub_deinit), (parse_mpsub_init),
17803 (gst_subparse_buffer_format_autodetect),
17804 (gst_subparse_format_autodetect), (gst_subparse_loop),
17805 (gst_subparse_change_state), (gst_subparse_type_find),
17807 * gst/subparse/gstsubparse.h:
17808 * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
17810 Add subtitle support, .sub parser (supports SRT and MPsub),
17811 OGM text support, Matroska UTF-8 text support, deadlock fixes
17812 all over the place, subtitle awareness in decodebin/playbin
17813 and some fixes to textoverlay to handle subtitles in a stream
17814 correctly. Fixes #100931.
17816 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17818 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17819 Check for pad availability before doing a query on it.
17821 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17823 * ext/dv/gstdvdec.c:
17824 really fix bpp24/32 dvdec caps (classic rgba indeed)
17825 * gst/asfdemux/gstasfdemux.c:
17826 (gst_asf_demux_process_ext_content_desc):
17827 don't send text tags if they are empty (bis repetita)
17829 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17831 * ext/dv/gstdvdec.c:
17832 remove unneeded comment from dvdec
17833 (related to DV 4CC codes in AVI files)
17834 moved them in gstreamer/docs/random/mimetypes
17835 * gst/asfdemux/gstasfdemux.c:
17836 (gst_asf_demux_process_ext_content_desc):
17837 don't send text tags if they are empty
17838 fix mem leak on error path
17839 * gst/ffmpegcolorspace/avcodec.h:
17840 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17841 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
17842 (gst_ffmpegcsp_avpicture_fill):
17843 * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
17844 * gst/ffmpegcolorspace/imgconvert_template.h:
17845 adds BGR32 and BGRA32 to ffmpegcolorspace
17846 (still bad colors, fixing it on next commit)
17847 helps with dvdec outputing BGR32
17849 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17851 * ext/dv/gstdvdec.c:
17852 Fix audio caps i just broke (missing ',')
17853 * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
17854 (gst_matroska_mux_reset):
17855 Fix typo + add FIXME about old "x-gst-metadata" crap
17857 2005-01-07 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17859 * ext/dv/demo-play.c: (main):
17860 xvideosink -> xvimagesink
17861 * ext/dv/gstdvdec.c:
17862 change rgb 32/32 caps to 24/32 (no alpha)
17863 change nb of channels to be a list (2 or 4, not 2)
17864 change sample rate to be a list (32, 44.1, 48 kHz) not a range
17865 * gst/asfdemux/gstasfdemux.c:
17866 (gst_asf_demux_process_ext_content_desc):
17867 Add 'date/year' to extracted metadata list
17869 2005-01-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17871 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
17872 The return value of fixate_to does not imply that the requested
17873 value was set, so don't assume.
17875 2005-01-07 Gergely Nagy <algernon@bonehunter.rulez.org>
17877 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17879 * ext/libpng/gstpngdec.c:
17880 * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
17881 (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
17882 * ext/libpng/gstpngenc.h:
17883 Alpha support (encoder; #163161), mime fixage.
17885 2005-01-07 Sebastien Cote <sc5@hermes.usherb.ca>
17887 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17889 * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
17890 (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
17891 (gst_faac_set_property), (gst_faac_get_property):
17892 * ext/faac/gstfaac.h:
17893 Allow for ADTS output (#153434).
17895 2005-01-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17897 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
17898 Fix against template (#150576).
17900 2005-01-06 Benjamin Otte <otte@gnome.org>
17902 * gst/games/gstpuzzle.c: (draw_puzzle):
17903 don't draw a puzzle if either width or height of tiles would be 0.
17905 2005-01-06 Benjamin Otte <otte@gnome.org>
17907 * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
17908 (gst_puzzle_class_init), (gst_puzzle_finalize):
17909 no memleaks, please
17910 (gst_puzzle_create), (gst_puzzle_init),
17911 (gst_puzzle_set_property), (gst_puzzle_setup):
17912 change initialization code around so we don't reshuffle on resize
17914 fix another stupid typo
17916 2005-01-06 Benjamin Otte <otte@gnome.org>
17918 * gst/games/gstvideoimage.c: (copy_hline_YUY2):
17919 fix stupid typo that borked copying on YUY2
17921 2005-01-06 Benjamin Otte <otte@gnome.org>
17923 * gst/games/gstpuzzle.c: (draw_puzzle):
17924 fix edges when image sizes aren't multiples of tile sizes
17926 2005-01-06 Benjamin Otte <otte@gnome.org>
17928 * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
17929 make RGB endianness work correctly
17930 (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
17931 refactor and fix race with initial shuffling
17932 (nav_event_handler):
17933 allow using the mouse to puzzle
17935 insist on tiles having width and height as multiples of 4 to get
17936 clean YUV image handling
17937 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
17938 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
17939 s/DEBUG/LOG/ for common messages
17940 (gst_xvimagesink_navigation_send_event):
17941 fix mouse event translation to not include screen PAR
17942 * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
17943 fix mouse event translation to actually work
17945 2005-01-06 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17947 * gst/asfdemux/gstasfdemux.c:
17948 (gst_asf_demux_process_ext_content_desc):
17949 Extract TrackNumber metadata + clean up code
17950 * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
17951 Hope this is the good fix (var used unitialised)
17953 2005-01-06 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17955 * ext/faad/gstfaad.c: (gst_faad_chain):
17956 Only increment timestamp if it's valid. Fixes raw AAC streams.
17958 2005-01-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
17961 * gst/games/Makefile.am:
17962 * gst/games/gstpuzzle.c:
17963 add a puzzle game with...
17964 * gst/games/gstvideoimage.c:
17965 * gst/games/gstvideoimage.h:
17966 ... full colorspace support (that includes YUV9 and RGB16)) stolen
17967 from videotestsrc and made into something that would be a nice
17968 library for a lot of other plugins.
17970 2005-01-06 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17973 don't compile faad plugin if a RC of 2.0 is found
17974 Fixes #155346 (and FC1 buildbot)
17975 * gst/asfdemux/gstasfdemux.c:
17976 (gst_asf_demux_process_ext_content_desc):
17977 try to make Solaris compiler happier
17979 2005-01-06 Paul Jack <pjack@sfaf.org>
17981 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17983 * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
17984 Fix segfault (#161667).
17986 2005-01-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17988 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
17989 Fix framerate reporting.
17991 2005-01-05 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17993 * gst-libs/gst/riff/riff-ids.h:
17994 * gst/wavenc/riff.h:
17995 Add AMR (VBR and CBR) ids to riff.h audio codec list
17996 * gst/asfdemux/gstasfdemux.c:
17997 (gst_asf_demux_process_ext_content_desc),
17998 (gst_asf_demux_process_object):
17999 Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
18001 2005-01-05 Martin Eikermann <meiker@upb.de>
18003 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18005 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
18006 (gst_dvd_demux_handle_discont):
18007 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
18008 (gst_mpeg_demux_handle_discont):
18009 Recreate pads on new-media (#160730).
18010 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
18011 Send discont even if manager changes timestamps (#161929).
18013 2005-01-05 Sebastien Cote <sc5@hermes.usherb.ca>
18015 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18017 * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
18018 Fix invalid memory access (#159211).
18020 2005-01-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18022 * examples/gstplay/player.c: (main):
18024 * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
18025 Add visualizations.
18026 * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
18027 (gst_a52dec_handle_frame):
18029 * ext/dvdnav/gst-dvd:
18030 Add audioconvert. Fixes #161325.
18031 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
18032 Explicitely case to gint64. Possible valgrind error.
18033 * gst-libs/gst/play/play.c: (caps_set), (setup_size),
18034 (gst_play_tick_callback), (gst_play_change_state),
18035 (gst_play_dispose), (gst_play_init), (gst_play_class_init),
18036 (gst_play_set_location), (gst_play_get_location),
18037 (gst_play_seek_to_time), (gst_play_set_data_src),
18038 (gst_play_set_video_sink), (gst_play_set_audio_sink),
18039 (gst_play_set_visualization), (gst_play_connect_visualization),
18040 (gst_play_get_framerate), (gst_play_get_all_by_interface),
18042 Use playbin. Fixes #139749 and #147744.
18043 * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
18045 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
18046 (audioscale_get_type), (gst_audioscale_base_init),
18047 (gst_audioscale_class_init), (gst_audioscale_expand_caps),
18048 (gst_audioscale_getcaps), (gst_audioscale_fixate),
18049 (gst_audioscale_link), (gst_audioscale_get_buffer),
18050 (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
18051 (gst_audioscale_init), (gst_audioscale_dispose),
18052 (gst_audioscale_chain), (gst_audioscale_set_property),
18053 (gst_audioscale_get_property), (plugin_init):
18055 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
18057 * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
18058 (qtdemux_tag_add_str), (qtdemux_tag_add_num),
18059 (qtdemux_tag_add_gnre), (qtdemux_video_caps):
18060 Add more metadata (fixes #162656).
18062 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
18067 === release 0.8.7 ===
18069 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
18074 releasing 0.8.7, "Hyperspace"
18076 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
18078 patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
18080 * gst/playback/gstplaybasebin.c:
18081 Fix for #162924 - free caps after use, not before
18083 2005-01-04 Thomas Vander Stichele <thomas at apestaart dot org>
18085 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18087 * gst/playback/gstplaybasebin.c:
18088 * gst/wavparse/gstwavparse.c:
18089 Fix for #154773 - fixes playback of small .wav files
18091 2005-01-03 Thomas Vander Stichele <thomas at apestaart dot org>
18093 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18095 * gst/audioscale/gstaudioscale.c:
18096 Fix for #162819 - make audioscale reusable
18097 Fixes playback of more than one file with playbin/totem
18099 2004-12-29 Thomas Vander Stichele <thomas at apestaart dot org>
18101 * gst/ffmpegcolorspace/avcodec.h:
18102 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18103 * gst/ffmpegcolorspace/imgconvert.c:
18104 clean up the mess that made me cry and avoid needless duplication
18106 2004-12-29 Thomas Vander Stichele <thomas at apestaart dot org>
18108 * gst/ffmpegcolorspace/imgconvert.c:
18109 give some indication of why we're segfaulting
18111 2004-12-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18114 Fix indentation, fix v4l2 plugin detection.
18116 Fix libmms location (Maciej, use diff -u!).
18117 * ext/alsa/gstalsa.c: (gst_alsa_init):
18118 Initialize caps cache to NULL.
18119 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
18120 Only change state on audiosink if it exists.
18122 2004-12-28 Maciej Katafiasz <mathrick@mathrick.org>
18124 * gst/matroska/matroska-demux.c:
18125 * gst/matroska/matroska-ids.h:
18126 * gst/matroska/matroska-demux.h:
18127 Fix Vorbis streams failing to decode in some files, where cluster_time
18128 isn't 0, because then it doesn't send codec_priv before actual data.
18129 Remove time-based test and replace it with marker set on beginning of
18132 2004-12-28 David Schleef <ds@schleef.org>
18134 Merge patch from Ronald fixing problems with streaming
18136 * ext/cairo/gstcairo.c: (plugin_init):
18137 * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
18138 (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
18139 (gst_textoverlay_video_chain), (gst_textoverlay_loop),
18140 (gst_textoverlay_font_init), (gst_textoverlay_init),
18141 (gst_textoverlay_set_property):
18142 * ext/cairo/gsttextoverlay.h:
18144 2004-12-27 David Schleef <ds@schleef.org>
18146 * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
18147 (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
18148 (gst_textoverlay_video_chain), (gst_textoverlay_loop),
18149 (gst_textoverlay_font_init), (gst_textoverlay_init),
18150 (gst_textoverlay_set_property): Improvements to actually
18151 render text as white on black outline on video, including
18152 font selection and horizontal/vertical alignment. (Ronald's
18154 * ext/cairo/gsttextoverlay.h:
18156 2004-12-26 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18158 * ext/ogg/gstogg.c:
18159 * ext/ogg/gstogmparse.c:
18160 fix ogm[audio/video]parse plugin registration
18161 (riff won't load if bytestream is already loaded)
18163 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
18165 * gst/audioconvert/gstchannelmix.c:
18168 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
18172 disable docs again until it actually passes make distcheck.
18174 2004-12-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18176 * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
18177 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
18179 Add 3GP (variables name Q3GP because they can't start with a
18180 number). Add samr audio fourcc (used in .3gp files), decoder
18181 is work in progress. Also do a GST_WARNING instead of ERROR
18182 in case of unknown nodes, to decrease output.
18184 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
18189 2004-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
18192 * ext/speex/gstspeexdec.h:
18193 * ext/speex/gstspeexenc.h:
18194 Fixes #158382. Make speex plugin compatible with both 1.0 and 1.1.
18195 Fix detection code in configure.ac
18197 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18199 * gst/matroska/matroska-demux.c:
18200 (gst_matroska_demux_parse_blockgroup):
18201 Save position, so that queries give proper return values. Don't
18202 know how this could ever have worked before...
18204 2004-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
18207 Put additional LAME check inside the conditional. Fixes #152339
18209 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18211 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18212 (gst_avi_demux_stream_scan):
18213 Add some more debug. Fix logic error when setting movi offset
18214 while reading index.
18216 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18218 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18219 (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
18220 (gst_avi_demux_process_next_entry):
18221 Add some debugging. Better detection of broken indexes and the
18222 accompanying index recovery. No infinite loops on state changes
18223 when we're still in our loopfunction.
18225 2004-12-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18230 2004-12-22 Archana Shah <archana.shah@wipro.com>
18232 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18234 * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
18235 Normalizing the value before setting
18236 (gst_sunaudiomixer_get_volume):
18237 Normalizing the value after getting. Fixes bug# 161980
18239 2004-12-22 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18241 * Makefile.am: Make sure docs gets disted
18242 * docs/Makefile.am: Make sure all needed files get disted
18243 * gst-plugins.spec.in: latest updates
18245 2004-12-22 Wim Taymans <wim@fluendo.com>
18247 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
18248 Revert patch 1.38 as clock distribution over schedulers does
18249 not work correcly in the core yet.
18251 2004-12-21 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18253 * sys/oss/README: remove this file, which predates my birth
18254 (and which content is by far outdated)
18256 2004-12-20 Stefan Kost <ensonic@users.sf.net>
18260 * docs/Makefile.am:
18261 * docs/libs/Makefile.am:
18262 * docs/libs/gst-plugins-libs-docs.sgml:
18263 * docs/libs/gst-plugins-libs-sections.txt:
18264 * docs/libs/tmpl/gstgconf.sgml:
18266 * docs/version.entities.in:
18267 Added boilerplate gtk-doc files for plugin-libs documentation.
18269 2004-12-19 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18271 * gst/auparse/gstauparse.c: fix int and float audio caps
18273 2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18275 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
18276 * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
18277 g_assert() can be a macro, don't use #ifdef inside it.
18279 2004-12-19 Edward Hervey <bilboed@bilboed.com>
18281 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18283 * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
18284 (gst_videorate_init), (gst_videorate_chain),
18285 (gst_videorate_change_state):
18286 Event handling (fixes #159986).
18288 2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18290 * gst-libs/gst/riff/riff-media.c:
18291 (gst_riff_create_video_caps_with_data):
18292 Add BLZ0 (Blizzard's version of DivX) fourcc.
18294 2004-12-18 David Schleef <ds@schleef.org>
18296 * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
18299 2004-12-18 David Schleef <ds@schleef.org>
18301 * gst/tta/ttadec.h: Disable some header code that isn't used
18302 and clearly isn't portable.
18304 2004-12-18 David Schleef <ds@schleef.org>
18306 * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
18307 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
18308 (avcodec_get_pix_fmt), (avpicture_layout),
18309 (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
18310 (get_convert_table_entry), (img_convert), (img_get_alpha_info):
18311 Fix code to not use GCC extensions (and c99 extensions that
18312 Forte does not like.)
18314 2004-12-19 Tim-Philipp Müller <t.i.m@zen.co.uk>
18316 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18318 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
18319 (gst_deinterlace_chain):
18320 Rowstride fixes. Fixes #161039.
18321 * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
18322 (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
18323 (gst_video_crop_getcaps), (gst_video_crop_link),
18324 (gst_video_crop_i420), (gst_video_crop_chain),
18325 (gst_video_crop_change_state):
18326 Rework of negotiation. Actually works now. Fixes #158650.
18328 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18330 * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
18331 That was very stupid.
18333 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18335 * gst/matroska/matroska-demux.c:
18336 (gst_matroska_demux_parse_blockgroup):
18337 Fix possible crasher.
18339 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18341 * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
18342 (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
18343 Lace sizes can be zero.
18345 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18347 * ext/musepack/gstmusepackdec.cpp:
18348 Fetch error return values. Fixes #161624.
18349 * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
18352 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18354 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
18355 Work for truncated (unfinished download etc.) files. Fixes #160514.
18357 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18359 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18360 Fix for integer overflow. Makes #156001 not crash. Probably masks
18363 2004-12-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18365 * gst/ac3parse/gstac3parse.c: (plugin_init):
18366 Parsers never have ranks. Fixes #159651.
18368 2004-12-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
18370 * gst/playback/gstdecodebin.c: (compare_ranks):
18371 make sure the facotries are ordered the same every time even if they
18372 have the same rank by using the name
18373 * gst/playback/gstdecodebin.c: (find_compatibles):
18374 make sure we don't add factories to the list twice
18376 2004-12-16 David Schleef <ds@schleef.org>
18378 * configure.ac: look for musepack headers as musepack/*.h
18380 * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
18381 * ext/musepack/gstmusepackreader.h: same
18383 2004-12-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18385 * gst-libs/gst/riff/riff-read.c:
18386 (gst_riff_read_strf_auds_with_data):
18387 Read extradata correctly (fixes #155879).
18389 2004-12-16 David Schleef <ds@schleef.org>
18391 * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
18392 audio. does _not_ attempt or allow conversion unless channels
18395 2004-12-16 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18397 * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
18399 2004-12-16 David Schleef <ds@schleef.org>
18401 * gst/audioscale/gstaudioscale.c: the resample library only
18402 handles 1 or 2 channels. Change caps to compensate.
18404 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18406 * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
18407 (gst_matroska_demux_audio_caps):
18408 Some MPEG-AAC hacks, because else it doesn't work...
18410 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18412 * gst-libs/gst/riff/riff-media.c:
18413 (gst_riff_create_video_caps_with_data),
18414 (gst_riff_create_video_template_caps):
18417 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18419 * gst-libs/gst/audio/Makefile.am:
18420 Try to fix buildbot.
18422 2004-12-16 Thomas Vander Stichele <thomas at apestaart dot org>
18424 * gst/tcp/gstmultifdsink.c:
18425 Clean up and uniformize debugging.
18427 2004-12-16 Edward Hervey <bilboed@bilboed.com>
18429 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18431 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
18432 (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
18433 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
18434 (gst_mpeg_demux_change_state):
18435 Reset on ready. Fixes 160276.
18437 2004-12-16 Sebastien Cote <sc5@hermes.usherb.ca>
18439 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18441 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18442 (gst_ffmpegcsp_pad_link):
18443 Fix memleak (#154815).
18445 2004-12-16 James Bowes <bowes@cs.dal.ca>
18447 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18449 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
18450 (gst_musicbrainz_init), (gst_musicbrainz_chain),
18451 (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
18452 * ext/musicbrainz/gsttrm.h:
18453 Add support for using a proxy server when getting a trm id from
18454 the MusicBrainz database (#149613).
18456 2004-12-16 Christophe Fergeau <teuf@gnome.org>
18458 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18460 * gst/playback/gstdecodebin.c: (new_pad), (close_link):
18461 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
18462 Fix memleaks (#157233).
18464 2004-12-16 Sebastien Cote <sc5@hermes.usherb.ca>
18466 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18468 * gst-libs/gst/resample/resample.c: (gst_resample_close):
18469 * gst-libs/gst/resample/resample.h:
18470 * gst/audioscale/gstaudioscale.c:
18471 Fix memleak (#159215).
18473 2004-12-16 Toni Willberg <toniw@iki.fi>
18475 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18477 * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
18478 * sys/oss/oss_probe.c: (main):
18479 Check for mono/stereo support (similar to samplerate probing),
18480 fixes #159433. Also add missing copyright header to oss_probe.c.
18482 2004-12-15 David Schleef <ds@schleef.org>
18484 * configure.ac: add audioresample and cairo plugins. Remove
18485 HAVE_MMX stuff, because it's not used.
18486 * ext/Makefile.am: same
18487 * ext/audioresample/Makefile.am: You are not ready for an
18488 audio resampling element based on audioresample.
18489 * ext/audioresample/gstaudioresample.c:
18490 * ext/audioresample/gstaudioresample.h:
18491 * ext/cairo/Makefile.am: You are not ready for overlay elements
18492 based on cairo. Don't look too closely, these elements kinda
18494 * ext/cairo/gstcairo.c: new
18495 * ext/cairo/gsttextoverlay.c: new
18496 * ext/cairo/gsttextoverlay.h: new
18497 * ext/cairo/gsttimeoverlay.c: new
18498 * ext/cairo/gsttimeoverlay.h: new
18499 * gst-libs/gst/media-info/media-info-priv.h: fix compile
18500 problem with compilers that don't support variadic macros.
18502 2004-12-15 Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
18504 Reviewed by: David Schleef <ds@schleef.org>
18506 * sys/sunaudio/gstsunaudio.c: (plugin_init): Apply patch from
18507 Bala, registering sunaudiosrc (oops!), and cleaning up code a
18508 bit. Also ran indent-gst.
18509 * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
18510 (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
18511 (gst_sunaudiosrc_setparams):
18513 2004-12-14 David Schleef <ds@schleef.org>
18515 * gst/festival/gstfestival.c: (gst_festival_chain): Set the
18516 output rate to 16000. Should fix #160235.
18518 2004-12-14 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18520 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
18521 Add typefinding for mpeg2 pes streams
18523 2004-12-13 David Schleef <ds@schleef.org>
18525 * configure.ac: Applied patch from bug #143659, making default
18526 sources and sinks OS-dependent (for Solaris), and added code
18528 * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
18530 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18532 * gst-libs/gst/riff/riff-media.c:
18533 forgot to add h2.64 to avidemux template caps
18535 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18537 * gst/wavenc/riff.h:
18538 * gst-libs/gst/riff/riff-media.c:
18539 * gst-libs/gst/riff/riff-ids.h:
18540 * gst/avi/gstavimux.c
18541 add 4CC code for VideoSoft h264 in AVI (VSSH)
18543 remove s323 from riff, it's quicktime specific :(
18545 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18547 * gst/asfdemux/README
18548 * gst/wavenc/riff.h
18549 * gst-libs/gst/riff/riff-ids.h
18550 * gst-libs/gst/riff/riff-media.c
18551 * gst/qtdemux/qtdemux.c:
18552 add new 4CC codes for h263 related codecs
18553 fixes partially bug #155163
18555 2004-12-12 Christian Fredrik Kalager Schaller <christian at fluendo dot com>
18557 * configure.ac: Update polyaudio requirement to 0.7
18558 * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
18560 2004-12-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18562 * gst/interleave/deinterleave.c:
18563 fix my name's spelling! :)
18565 2004-12-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18567 * AUTHORS ChangeLog
18568 * gst/auparse/gstauparse.c
18569 * gst/interleave/deinterleave.c
18571 alaw-decode.c alaw-encode.c
18572 mulaw-decode.c mulaw-encode.c
18573 * gst/oneton/gstoneton.c
18575 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
18577 cocoawindow.h cocoawindow.m
18578 osxvideosink.h osxvideosink.m
18580 put the same mail address for Zaheer Abbas Merali everywhere
18582 2004-12-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18584 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
18585 Align by packetsize, and assert that we a packet available before
18586 playing. The first makes webstreams work (they often include
18587 trailing padding data in a packet), the second allows pausing a
18588 ASF stream in totem without getting demux errors afterwards.
18590 2004-12-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18592 * ext/ogg/gstoggdemux.c: (get_relative):
18593 Check for non-NULL before accessing member (end-of-chain).
18595 2004-12-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18597 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
18598 (cdparanoia_set_property), (cdparanoia_get_property):
18599 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
18600 (dvdnavsrc_set_property), (dvdnavsrc_get_property):
18601 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
18602 (dvdreadsrc_init), (dvdreadsrc_set_property),
18603 (dvdreadsrc_get_property):
18604 * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
18605 (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
18606 Synchronize property names where not yet the case. Devices are
18607 now device=X, other versions are deprecated (but still exist).
18608 Also use g_free() unconditionally.
18609 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
18610 (setup_source), (gst_play_base_bin_get_property):
18613 2004-12-09 Thomas Vander Stichele <thomas at apestaart dot org>
18615 * configure.ac: move GCONF macro outside conditional for the am
18616 conditional. Fixes #160439
18618 2004-12-08 David Schleef <ds@schleef.org>
18620 * tools/gst-visualise-m.m: Switch to elements that currently
18623 2004-12-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18625 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
18626 We love wrong commas.
18628 2004-12-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18630 * gst/matroska/matroska-demux.c:
18631 (gst_matroska_demux_handle_src_query):
18632 Don't set DEFAULT, unsupported - makes length display incorrectly
18635 2004-12-07 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18637 * gst/monoscope/README: remove blurb about files being GPL
18638 * gst/monoscope/gstmonoscope.c: Change license field to LGPL
18639 * gst/monoscope/monoscope.c: Change license to BSD with explanation
18640 monoscope is now effectively LGPL licensed
18642 2004-12-07 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18644 * gst/monoscope/README: Update information to be more correct
18645 * gst/monoscope/convolve.c: Relicense to LGPL
18646 * gst/monoscope/convolve.h: Relicense to LGPL
18648 2004-12-06 Arwed v. Merkatz <v.merkatz@gmx.net>
18650 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
18651 set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
18652 * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
18653 set default_duration for mpeg1 audio
18655 2004-12-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
18657 * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
18658 * ext/alsa/gstalsa.h:
18659 refactor big chunks of the core caps negotiation code to make it
18660 a lot faster, because people claim it's really slow
18661 (actually, just cache the getcaps when the device is opened)
18663 2004-12-06 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18665 * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
18666 (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
18667 (gst_a52dec_handle_frame), (gst_a52dec_chain),
18668 (gst_a52dec_change_state), (plugin_init):
18669 * ext/a52dec/gsta52dec.h:
18670 Do something useful with timestamps. Make chain-based (since
18671 there's really no reason to be loopbased).
18672 * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18673 Update current_byte/frame correctly.
18675 2004-12-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18677 * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
18678 (gst_ape_demux_stream_init):
18681 2004-12-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18683 * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
18684 Let's make sure we're done typefinding when detecting tags.
18686 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18688 * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
18689 (gst_ebml_read_init), (gst_ebml_read_use_event),
18690 (gst_ebml_read_element_id), (gst_ebml_peek_id),
18691 (gst_ebml_read_seek), (gst_ebml_read_skip),
18692 (gst_ebml_read_reserve), (gst_ebml_read_buffer),
18693 (gst_ebml_read_master):
18694 * gst/matroska/ebml-read.h:
18695 * gst/matroska/matroska-demux.c:
18696 (gst_matroska_demux_parse_contents),
18697 (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
18698 Disgustingly evil hack for working around INTERRUPT events and
18699 their extremely annoying habit of being a pain in the ass. We
18700 simply peek a cluster before reading any of it.
18702 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18704 * ext/musepack/gstmusepackdec.cpp:
18705 There's also floating point libmusepacks.
18707 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18709 * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
18710 (gst_faad_chanpos_to_gst), (gst_faad_chain):
18711 Set DURATION even if source buffer didn't. Also use increasing
18713 * gst-libs/gst/riff/riff-media.c:
18714 (gst_riff_create_audio_caps_with_data):
18715 Block_align can have larger values than 8192.
18717 2004-12-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18719 * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
18720 * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
18721 * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
18722 * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
18725 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18727 * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
18730 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18732 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
18735 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18737 * ext/esd/esdsink.c: (gst_esdsink_chain):
18738 Make error actually say something useful (fixes #156798).
18739 * gst-libs/gst/riff/riff-media.c:
18740 (gst_riff_create_video_caps_with_data),
18741 (gst_riff_create_video_template_caps):
18742 Add Intel Video 5.0 fourcc (IV50).
18744 2004-12-01 Christophe Fergeau <teuf@gnome.org>
18746 * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
18747 detection on mono and stereo mp3 files.
18749 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18751 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
18752 Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
18753 the contained stream).
18755 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18757 * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
18758 Oops, remove debug.
18760 2004-12-01 Sebastien Cote <sc5@hermes.usherb.ca>
18762 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18764 * gst/law/alaw-decode.c: (alawdec_getcaps):
18765 * gst/law/mulaw-decode.c: (mulawdec_getcaps):
18766 Prevent warnings when negotiating caps (fixes #159338).
18768 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18770 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18771 (gst_ffmpegcsp_chain):
18772 Remove old leftover that shouldn't be there...
18774 2004-12-01 Sebastien Cote <sc5@hermes.usherb.ca>
18776 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18778 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
18779 Don't forward DISCONT events (fixes #159684).
18781 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18783 * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
18784 Unlink manually since sometimes bin disposal (and therefore
18785 pad unlinking) is delayed, which will cause a new media file
18786 to not be able to start playing instantly.
18788 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18790 * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
18791 On mute of an unlinked stream, check for pad availability so
18792 we don't crash on unlinked pad.
18794 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18796 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18797 (gst_avi_demux_massage_index):
18798 Fix quite humiliating bug in omitting 0-sized index chunks but
18799 forgetting to count them for timestamps.
18801 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18803 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18804 Actually leave the loop if we failed to sync. Don't crash.
18806 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18808 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
18809 (gst_dvd_demux_process_private):
18810 * gst/mpegstream/gstdvddemux.h:
18811 Fix crash (#159759). Doesn't work, though. :-(.
18813 2004-11-28 Benjamin Otte <otte@gnome.org>
18815 * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18816 more overwriting protection due to modifying channels one by one
18817 instead of all at once
18819 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18821 * gst/audioconvert/gstchannelmix.c:
18822 (gst_audio_convert_fill_normalize):
18823 Normalize using absolute values.
18825 2004-11-28 Julien MOUTTE <julien@moutte.net>
18829 * ext/directfb/Makefile.am:
18830 * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
18831 (gst_directfbvideosink_get_pixel_format),
18832 (gst_directfbvideosink_get_format_from_fourcc),
18833 (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
18834 (gst_directfbvideosink_sink_link),
18835 (gst_directfbvideosink_change_state),
18836 (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
18837 (gst_directfbvideosink_buffer_alloc),
18838 (gst_directfbvideosink_interface_supported),
18839 (gst_directfbvideosink_interface_init),
18840 (gst_directfbvideosink_navigation_send_event),
18841 (gst_directfbvideosink_navigation_init),
18842 (gst_directfbvideosink_set_property),
18843 (gst_directfbvideosink_get_property),
18844 (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
18845 (gst_directfbvideosink_base_init),
18846 (gst_directfbvideosink_class_init),
18847 (gst_directfbvideosink_get_type), (plugin_init):
18848 * ext/directfb/directfbvideosink.h: Adding a first version of
18850 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
18853 2004-11-28 Benjamin Otte <otte@gnome.org>
18855 * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18856 walk the samples backwards if out_channels > in_channels so we don't
18859 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18861 * gst/audioconvert/Makefile.am:
18862 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
18863 (gst_audio_convert_link), (gst_audio_convert_change_state),
18864 (gst_audio_convert_channels):
18865 * gst/audioconvert/gstchannelmix.c:
18866 (gst_audio_convert_unset_matrix),
18867 (gst_audio_convert_fill_identical),
18868 (gst_audio_convert_fill_compatible),
18869 (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
18870 (gst_audio_convert_fill_others),
18871 (gst_audio_convert_fill_normalize),
18872 (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
18873 (gst_audio_convert_passthrough), (gst_audio_convert_mix):
18874 * gst/audioconvert/gstchannelmix.h:
18875 Implement a channel mixer.
18877 2004-11-28 Martin Soto <martinsoto@users.sourceforge.net>
18879 * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
18880 * ext/alsa/gstalsa.h:
18881 * ext/alsa/gstalsa.c (gst_alsa_set_clock):
18882 Make alsasink actually honor gst_element_set_clock and use that
18883 clock instead of its internal one.
18885 2004-11-27 Christophe Fergeau <teuf@gnome.org>
18887 * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
18888 (gst_play_base_bin_change_state): nullify source and decoder when
18889 going from READY to NULL so that we don't try to do weird stuff with
18890 them when going from NULL to READY
18891 * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
18892 instead of g_object_unref
18893 (gen_video_element), (gen_audio_element): more refcounting fixes, now
18894 it should be correct
18895 (gst_play_bin_change_state): don't call remove_sinks if we are
18896 currently disposing the object
18898 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18900 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18901 Don't forget bass if it's there. Else left channel is silent...
18903 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18905 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
18906 (gst_a52dec_change_state):
18907 Don't do sample adjusting anymore, we use float audio now.
18908 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
18909 Don't fixate to non-existing properties.
18911 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18913 * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
18914 (gst_a52dec_change_state):
18915 Advertise that we can do surround sound.
18917 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18919 * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
18920 Add buffer-frames=0.
18921 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
18922 (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
18923 (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
18924 (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
18925 (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
18926 (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
18927 (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
18928 (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
18929 (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
18930 * ext/dvdread/dvdreadsrc.h:
18931 Add seeking, querying for bytes, sectors, title, angle and
18932 chapter. Handle multiple chapters. Relicense to LGPL because
18933 Billy agreed on that (thanks Billy!).
18935 2004-11-27 Christophe Fergeau <teuf@gnome.org>
18937 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
18938 call parent dispose method
18940 2004-11-27 Martin Soto <martinsoto@users.sourceforge.net>
18942 * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
18943 (gst_audio_clock_get_internal_time):
18944 Fix active <-> inactive transitions: ensure time value always
18945 grows and avoid abrupt value changes.
18947 2004-11-27 Arwed v. Merkatz <v.merkatz@gmx.net>
18950 * gst/tta/Makefile.am:
18952 * gst/tta/filters.h:
18953 * gst/tta/gsttta.c:
18954 * gst/tta/gstttadec.c:
18955 * gst/tta/gstttadec.h:
18956 * gst/tta/gstttaparse.c:
18957 * gst/tta/gstttaparse.h:
18958 * gst/tta/ttadec.h:
18959 added TTA parser and decoder
18961 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18963 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
18964 (probe_triggered), (check_queue), (buffer_underrun),
18965 (buffer_running), (buffer_overrun), (gen_source_element),
18967 * gst/playback/gstplaybasebin.h:
18968 Implement buffering. Needs some more work.
18970 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18972 * ext/theora/theoradec.c: (theora_dec_chain):
18973 Fix ilog mask range overflow.
18975 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18977 * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
18978 Don't omit the last (which in case of dmix is the only :) )
18979 channel count. Don't set channels if <= 2.
18981 2004-11-26 Christophe Fergeau <teuf@gnome.org>
18983 * gst/playback/gstplaybin.c: (gen_video_element),
18984 (gen_audio_element): Removed 2 obsolete comments
18986 2004-11-26 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18988 * ext/vorbis/oggvorbisenc.c
18989 * ext/vorbis/vorbisenc.c :
18990 change description fields of those plugins to differentiate them
18991 (pitivi show Encoders by description, they had the same one)
18993 2004-11-25 Christophe Fergeau <teuf@gnome.org>
18995 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18997 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
18998 (gst_play_bin_set_property), (gen_video_element),
18999 (gen_audio_element):
19000 Refcounting fixes for provided audio-/videosinks.
19002 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19004 * gst/playback/gstplaybin.c: (gen_video_element),
19005 (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
19006 Don't reference all sinks, but only the video- and audiosinks.
19007 The vis. element should be disposed when we're done with it.
19008 We don't have any reason to keep it around. This fixes warnings
19009 when reusing playbin for playing multiple audio files with
19010 vis. enabled. Also release audio device on pause - idea stolen
19013 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19015 * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
19016 (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
19017 * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
19018 * ext/alsa/gstalsaplugin.c: (plugin_init):
19019 * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
19020 (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
19021 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
19022 (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
19023 (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
19024 (gst_faad_change_state), (plugin_init):
19025 * ext/faad/gstfaad.h:
19026 * ext/vorbis/vorbis.c: (plugin_init):
19027 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
19028 * gst-libs/gst/audio/Makefile.am:
19029 * gst-libs/gst/audio/audio.c: (plugin_init):
19030 * gst-libs/gst/audio/multichannel.c:
19031 (gst_audio_check_channel_positions),
19032 (gst_audio_get_channel_positions),
19033 (gst_audio_set_channel_positions),
19034 (gst_audio_set_structure_channel_positions_list),
19035 (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
19036 (gst_audio_fixate_channel_positions):
19037 * gst-libs/gst/audio/multichannel.h:
19038 * gst-libs/gst/audio/testchannels.c: (main):
19039 * gst/audioconvert/gstaudioconvert.c:
19040 (gst_audio_convert_class_init), (gst_audio_convert_init),
19041 (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
19042 (gst_audio_convert_parse_caps), (gst_audio_convert_link),
19043 (gst_audio_convert_fixate), (gst_audio_convert_channels):
19044 * gst/audioconvert/plugin.c: (plugin_init):
19045 Surround sound support.
19047 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19049 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
19050 Fix position for discont if we're close as well. Nitpicking, but
19051 saves a few milliseconds of extra waiting or skipping.
19053 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19055 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
19056 We sometimes need parsers for playback, so add those too.
19058 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19061 * gst/apetag/Makefile.am:
19062 * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
19063 (gst_ape_demux_base_init), (gst_ape_demux_class_init),
19064 (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
19065 (gst_ape_demux_get_src_query_types),
19066 (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
19067 (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
19068 (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
19069 (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
19070 (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
19071 (gst_ape_demux_stream_data), (gst_ape_demux_loop),
19072 (gst_ape_demux_change_state):
19073 * gst/apetag/apedemux.h:
19074 * gst/apetag/apetag.c: (plugin_init):
19075 * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
19077 APE v1/2 tag reader plus typefind function.
19079 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19082 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19083 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
19084 Remove hacks for older core. Require newer core version
19087 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19089 * gst/cdxaparse/Makefile.am:
19090 * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
19091 (gst_cdxaparse_class_init), (gst_cdxaparse_init),
19092 (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
19093 * gst/cdxaparse/gstcdxaparse.h:
19094 * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
19095 (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
19096 (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
19097 (gst_cdxastrip_get_src_query_types),
19098 (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
19099 (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
19100 (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
19101 (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
19102 * gst/cdxaparse/gstcdxastrip.h:
19103 SVCD/VCD header stripping separated from CDXA image parsing.
19104 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
19106 Add VCD/SVCD header typefinding for VCD/SVCD.
19107 * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
19108 (gst_vcdsrc_class_init), (gst_vcdsrc_init),
19109 (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
19110 (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
19111 (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
19112 (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
19113 (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
19114 (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
19115 (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
19116 (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
19117 (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
19118 * sys/vcd/vcdsrc.h:
19119 Fix up, add seeking, querying, URI interface. Works in totem now.
19121 2004-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
19126 === release 0.8.6 ===
19128 2004-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
19146 releasing 0.8.6, "IOU Love"
19148 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19150 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19152 * gst/playback/gstplaybasebin.c:
19153 Fix unplayable files error handling. Fixes #158365
19155 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19157 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19159 * gst/typefind/gsttypefindfunctions.c:
19160 Fix broken mp3 typefinding. Fixes #158375
19162 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19164 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19166 * ext/ogg/gstoggdemux.c:
19167 Fix sync on broken files. Fixes #158976
19169 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19171 patch by: Edward Hervey <bilboed@bilboed.com>
19173 * ext/libpng/gstpngenc.c:
19174 Copy over buffer properties. Fixes #158832
19176 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19178 patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
19180 * ext/dvdread/dvdreadsrc.c:
19181 Fixes invalid reads (#158462)
19183 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19185 * sys/v4l/gstv4lsrc.c:
19186 * sys/v4l/gstv4lsrc.h:
19187 * sys/v4l/v4lsrc_calls.c:
19188 Probe less and cache it. Fixes #159187.
19190 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19192 * gst/videorate/gstvideorate.c:
19193 Handle all video formats. Fixes #159186.
19195 2004-11-16 Jan Schmidt <thaytan@mad.scientist.com>
19196 * gst/synaesthesia/gstsynaesthesia.c:
19197 (gst_synaesthesia_class_init), (gst_synaesthesia_init),
19198 (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
19199 (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
19200 (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
19201 (gst_synaesthesia_change_state), (plugin_init):
19202 Fix up synaesthesia to work under different samplerates/ buffer sizes.
19203 Force 320x200 output, as that's the only thing the underlying
19204 synaesthesia implementation supports. Still needs to be made
19207 2004-11-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19210 Fix mpeg2enc configure check (similar to mplex check below).
19212 2004-11-14 Koop Mast <kwm@rainbow-runner.nl>
19214 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19216 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19217 Fix for gcc-2.95 (fixes #158221).
19219 2004-11-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19221 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19222 Re-add clock distribution hack (until new core is released).
19225 2004-11-13 Arwed v. Merkatz <v.merkatz@gmx.net>
19227 fix mplex configure check segfaulting on some systems (bug #140994)
19229 2004-11-13 Benjamin Otte <otte@gnome.org>
19231 * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
19233 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
19234 do a wait when we enter the loop func with no data available to
19235 write instead of getting into an 100% CPU loop by just returning and
19236 being called again by the scheduler
19238 2004-11-13 Jan Schmidt <thaytan@mad.scientist.com>
19241 * ext/libvisual/visual.c: (gst_visual_get_type),
19242 (libvisual_log_handler), (gst_visual_getcaps),
19243 (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
19245 Update libvisual to 0.1.7. Link in the debug handling to gstreamer
19246 * ext/smoothwave/Makefile.am:
19247 * ext/smoothwave/demo-osssrc.c: (main):
19248 * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
19249 (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
19250 (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
19252 * ext/smoothwave/gstsmoothwave.h:
19253 Make gstsmoothwave a working element in the 20th century.
19255 * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
19256 Fix incorrect link function
19258 2004-11-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19260 * gst/volume/gstvolume.c:
19261 Allow buffer-frames=0.
19263 2004-11-12 Iain <iaingnome@gmail.com>
19265 * configure.ac: Check for polypaudio
19267 * ext/Makefile.am: Build the polyp dir
19269 * ext/polyp: The polypsink sources.
19271 2004-10-30 Iain <iaingnome@gmail.com>
19273 * gst/interleave/interleave.c (interleave_unlink): Change the src pads
19274 caps to reflect the new number of channels.
19276 2004-11-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19278 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
19279 Fix for negotiation order problem. This would show when the
19280 ALSA loopfuction was called before any other function. ALSA
19281 wouldn't do anything because we're not negotiated yet, leading
19282 to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
19284 2004-11-11 Tim-Philipp Müller <t.i.m@zen.co.uk>
19286 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19288 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
19289 No warnings (#157986).
19291 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19293 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
19294 Prefer apev1/2 and id3v1 (at end of file) over musepack.
19296 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19298 * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
19299 Signal no-more-pads (so it works in playbin).
19301 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19303 * ext/musepack/gstmusepackreader.cpp:
19304 Workaround for older core.
19306 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19308 * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
19309 Actually test for odd width/height rather than testing whether
19310 a temporary variable that was 0 before we subtracted 1 is now
19311 not equal to zero (which it always is).
19313 2004-11-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19315 * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
19316 Fix compilation if HAVE_XVIDEO is not defined
19318 2004-11-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19320 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
19321 Fix compilation if HAVE_XVIDEO is not defined
19323 2004-11-11 Jan Schmidt <thaytan@mad.scientist.com>
19325 * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
19326 (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
19327 (gst_goom_change_state), (plugin_init):
19328 Use the bytestream adapter so goom doesn't depend on the input
19330 Add a debug category
19332 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19334 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
19335 Only set hardware parameters *after* negotiation. Before
19336 negotiation, it will set ANY and that seems to cause crashes
19337 (see e.g. #151288, #153227).
19339 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19341 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
19342 This seems to be antique leftover. It needs to pass error
19344 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
19345 (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
19346 (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
19347 (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
19348 Fix GstXOverlay implementation (#151059).
19350 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19352 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
19353 Don't assert (#157853).
19355 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19357 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
19358 Fix bytes/samples confustion.
19359 (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
19360 Fix for underrun (#144389).
19362 2004-11-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19364 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
19365 Disable halfway-seek for pending release (since it needs a new
19368 2004-11-09 Thomas Vander Stichele <thomas at apestaart dot org>
19370 * sys/v4l/gstv4lsrc.c:
19371 * sys/v4l/gstv4lsrc.h:
19372 * sys/v4l/v4lsrc_calls.c:
19373 add autoprobe-fps property so we can separate autoprobing parts
19375 2004-11-09 Thomas Vander Stichele <thomas at apestaart dot org>
19377 * sys/v4l/gstv4lsrc.c:
19378 * sys/v4l/v4lsrc_calls.c:
19379 initialise fourcc to catch unset fourcc's, and debug
19381 2004-11-09 Wim Taymans <wim@fluendo.com>
19383 * gst/playback/README:
19384 * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
19385 * gst/playback/gstplaybin.c: (gst_play_bin_init),
19386 (gst_play_bin_dispose), (gst_play_bin_set_property),
19387 (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
19388 (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
19389 (gst_play_bin_get_formats), (gst_play_bin_convert),
19390 (gst_play_bin_get_query_types), (gst_play_bin_query):
19391 Cleanups and some more documentation.
19393 2004-11-09 Jan Schmidt <thaytan@mad.scientist.com>
19395 * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
19396 (gst_cacasink_init), (gst_cacasink_chain):
19397 * ext/libcaca/gstcacasink.h:
19398 Cacasink inherits from VideoSink, so let that store the clock.
19400 2004-11-09 Wim Taymans <wim@fluendo.com>
19402 * gst/playback/README:
19403 * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
19404 (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
19405 (probe_triggered), (preroll_unlinked), (new_decoded_pad),
19406 (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
19407 * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
19409 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
19410 (gst_stream_info_is_mute), (gst_stream_info_set_property):
19411 * gst/playback/gststreaminfo.h:
19413 Only switch groups if all streams have muted (EOSed).
19414 Send Tags in sync with the stream playback instead of in
19415 the playback/preroll phase.
19416 Some cleanups, free the fakesrc elements.
19418 2004-11-09 Benjamin Otte <in7y118@public.uni-hamburg.de>
19420 * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
19421 buffer-frames property was missing
19422 * ext/arts/gst_arts.c:
19423 rate missing from sinkcaps
19424 * ext/audiofile/gstafparse.c:
19425 * ext/audiofile/gstafsink.c:
19426 * ext/audiofile/gstafsrc.c:
19427 * ext/swfdec/gstswfdec.c:
19428 int audio doesn't know buffer-frames
19429 * ext/cdparanoia/gstcdparanoia.c:
19430 int audio doesn't know chunksize either
19431 * ext/nas/nassink.c:
19432 it's endianness, not endianess
19433 * gst-libs/gst/audio/audio.h:
19434 make float standard pad template caps really describe float
19435 * gst/law/mulaw.c: (linear_factory):
19436 signed only, please
19437 * gst/mpegstream/gstdvddemux.c:
19438 widths of 20 are not valid
19440 2004-11-08 Thomas Vander Stichele <thomas at apestaart dot org>
19442 Submitted by: Luca Ferretti <elle.uca@infinito.it>
19448 2004-11-08 Wim Taymans <wim@fluendo.com>
19450 * gst/playback/README:
19451 * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
19452 * gst/playback/gstplaybasebin.c: (probe_triggered),
19453 (gst_play_base_bin_change_state):
19454 Updated README, added more comments for fixmes etc..
19456 2004-11-08 Wim Taymans <wim@fluendo.com>
19458 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19459 We can remove this hack now.
19461 2004-11-08 Wim Taymans <wim@fluendo.com>
19463 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
19464 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
19465 (gst_videomixer_blend_buffers), (gst_videomixer_loop):
19466 Only mix AYUV for maximum quality.
19468 2004-11-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19470 * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
19471 (gst_ogg_demux_push), (gst_ogg_pad_push):
19472 Let's act as if we're synchronized now! :).
19473 * ext/theora/theoradec.c: (theora_dec_chain):
19476 2004-11-08 Wim Taymans <wim@fluendo.com>
19478 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19479 (gst_alpha_set_property), (gst_alpha_sink_link),
19480 (gst_alpha_set_ayuv), (gst_alpha_set_i420),
19481 (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
19482 (gst_alpha_init_params), (gst_alpha_chain):
19483 Implement alpha functions for AYUV too, this increases
19484 accuracy quite a bit.
19486 2004-11-08 Wim Taymans <wim@fluendo.com>
19488 * gst/ffmpegcolorspace/avcodec.h:
19489 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19490 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
19491 (gst_ffmpegcsp_avpicture_fill):
19492 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19493 (gst_ffmpegcsp_caps_remove_format_info):
19494 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19495 (shrink12), (img_get_alpha_info), (deinterlace_line),
19496 (deinterlace_line_inplace):
19497 * gst/ffmpegcolorspace/imgconvert_template.h:
19498 Added AYUV colorspace and handle RGBA a bit more respectful.
19500 2004-11-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19502 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19503 Actually always send a discont (cornercase when resending the
19504 same serial-tagged chain twice).
19506 2004-11-08 Julien MOUTTE <julien@moutte.net>
19508 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
19509 (gst_ximagesink_finalize):
19510 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
19511 (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
19513 2004-11-08 Wim Taymans <wim@fluendo.com>
19515 * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
19516 Don't segfault on NULL data.
19518 2004-11-08 Wim Taymans <wim@fluendo.com>
19520 * gst/playback/gstdecodebin.c: (unlinked):
19521 * gst/playback/gstplay-marshal.list:
19522 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
19523 (gst_play_base_bin_init), (group_create), (get_active_group),
19524 (get_building_group), (group_destroy), (group_commit),
19525 (queue_overrun), (remove_groups), (add_stream), (unknown_type),
19526 (add_element_stream), (no_more_pads), (probe_triggered),
19527 (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
19528 (state_change), (setup_source), (gst_play_base_bin_get_property),
19529 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
19530 (gst_play_base_bin_link_stream),
19531 (gst_play_base_bin_get_streaminfo):
19532 * gst/playback/gstplaybasebin.h:
19533 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
19534 (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
19535 Add support for chained ogg files. Prepare for playlist
19536 support. This patch introduces the concept of pad groups, which
19537 together compose one playable media file.
19539 2004-11-07 David Schleef <ds@schleef.org>
19541 * testsuite/gst-lint: Check for pad templates that aren't statically
19544 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19548 * ext/musepack/Makefile.am:
19549 * ext/musepack/gstmusepackdec.cpp:
19550 * ext/musepack/gstmusepackdec.h:
19551 * ext/musepack/gstmusepackreader.cpp:
19552 * ext/musepack/gstmusepackreader.h:
19553 Add musepack decoder.
19554 * ext/faad/gstfaad.c: (gst_faad_base_init):
19555 Make pad templates static.
19556 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
19558 Add musepack typefinder, make mp3 typefinding work halfway stream,
19559 which doesn't actually work yet because id3demux doesn't implement
19562 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19564 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
19565 (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
19566 Fix interrupt event handling (#144436).
19568 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19570 * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
19573 2004-11-06 Tim-Philipp Müller <t.i.m@zen.co.uk>
19575 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19577 * ext/vorbis/vorbisenc.c: (raw_caps_factory):
19578 Fix weird caps (#157548).
19580 2004-11-06 Tim-Philipp Müller <t.i.m@zen.co.uk>
19582 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19584 * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
19585 Add missing NULL terminator (#157543).
19587 2004-11-05 Thomas Vander Stichele <thomas at apestaart dot org>
19589 * gst/tcp/gsttcp.h:
19590 * gst/tcp/gsttcpclientsink.c:
19591 * gst/tcp/gsttcpclientsrc.c:
19592 * gst/tcp/gsttcpserversink.c:
19593 * gst/tcp/gsttcpserversrc.c:
19594 ports can go up to 65535. Move common defines to gsttcp.h
19596 2004-11-05 Wim Taymans <wim@fluendo.com>
19598 * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
19599 (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
19600 Added two more colorspaces.
19602 2004-11-05 Wim Taymans <wim@fluendo.com>
19604 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19605 (gst_ffmpegcsp_avpicture_fill):
19606 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19607 (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
19608 (img_convert), (deinterlace_line), (deinterlace_line_inplace):
19611 2004-11-05 Wim Taymans <wim@fluendo.com>
19613 * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
19614 (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
19615 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19616 (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
19617 (gst_videomixer_loop):
19620 2004-11-05 Benjamin Otte <otte@gnome.org>
19622 * ext/mad/gstmad.c: (gst_mad_chain):
19623 don't overflow data buffer. Flush not needed sync data when syncing
19626 2004-11-04 Wim Taymans <wim@fluendo.com>
19628 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19629 (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
19630 (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
19631 (gst_alpha_init_params), (gst_alpha_chain),
19632 (gst_alpha_change_state):
19633 Updated the chroma keying algorithm with something more
19636 2004-11-03 Wim Taymans <wim@fluendo.com>
19638 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19639 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
19640 (gst_videomixer_blend_buffers), (gst_videomixer_loop):
19641 Fix stride issues. Does not completely work for odd
19644 2004-11-03 Wim Taymans <wim@fluendo.com>
19646 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19647 (gst_alpha_chroma_key), (gst_alpha_chain):
19648 Fix stride issues. Does not completely work for odd
19651 2004-11-03 Christophe Fergeau <teuf@gnome.org>
19653 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
19654 * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
19657 2004-11-03 Wim Taymans <wim@fluendo.com>
19659 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19660 (gst_ffmpegcsp_avpicture_fill):
19661 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19663 * gst/ffmpegcolorspace/imgconvert_template.h:
19664 Use correct _fill function to get correct strides.
19666 2004-11-02 David Schleef <ds@schleef.org>
19668 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19669 (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
19670 (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
19671 Change all g_print()s to debugging. Add a bunch of consistency
19674 2004-11-02 Wim Taymans <wim@fluendo.com>
19676 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19677 (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
19678 (unlinked), (no_more_pads), (close_link):
19679 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
19680 (unknown_type), (add_element_stream), (new_decoded_pad),
19681 (removed_decoded_pad), (setup_source):
19682 * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
19683 (gst_stream_info_class_init), (gst_stream_info_init),
19684 (gst_stream_info_new), (gst_stream_info_dispose),
19685 (stream_info_mute_pad), (gst_stream_info_set_property),
19686 (gst_stream_info_get_property):
19687 * gst/playback/gststreaminfo.h:
19688 Fix playback of multiple files.
19689 a slightly different approach to handling dynamic pad removals.
19690 This one only looks at pads that we have linked.
19692 2004-11-01 Christophe Fergeau <teuf@gnome.org>
19694 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
19695 free" warning from libc.
19697 2004-11-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19699 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19700 (get_unconnected_element), (remove_starting_from), (pad_removed),
19702 Implement support for dynamic pad changing. We listen to "live"
19703 pad removals (i.e. while playing) and re-setup autoplugging
19704 after that. Playbasebin/playbin need some more work for this
19705 to finally work, but decodebin supports (and replugs) chained
19708 2004-11-02 Jan Schmidt <thaytan@mad.scientist.com>
19710 * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
19711 (gst_alsa_finalize):
19712 * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
19713 (gst_cdaudio_finalize):
19714 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
19715 (cdparanoia_finalize):
19716 * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
19717 * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
19718 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
19719 (dvdreadsrc_finalize):
19720 * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
19721 (gst_flacdec_finalize):
19722 * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
19723 (gst_flacenc_finalize):
19724 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
19725 (gst_gnomevfssink_finalize):
19726 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
19727 (gst_gnomevfssrc_finalize):
19728 * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
19729 (gst_fameenc_finalize):
19730 * ext/nas/nassink.c: (gst_nassink_class_init),
19731 (gst_nassink_finalize):
19732 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
19733 (gst_sdlvideosink_class_init):
19734 * ext/sndfile/gstsf.c: (gst_sf_dispose):
19735 * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
19736 * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
19737 * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
19738 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
19739 (gst_x_window_listener_dispose):
19740 * gst/audioscale/gstaudioscale.c:
19741 * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
19742 (play_on_demand_finalize):
19743 * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
19744 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
19745 * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
19746 (cdplayer_finalize):
19747 * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
19748 (gst_glimagesink_class_init):
19749 * sys/oss/gstosselement.c: (gst_osselement_class_init),
19750 (gst_osselement_finalize):
19751 * sys/oss/gstosssink.c: (gst_osssink_dispose):
19752 * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
19753 * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
19754 Fixes a bunch of problems with finalize and dispose functions,
19755 either assumptions that dispose is only called once, or not calling
19756 the parent class dispose/finalize function
19758 2004-11-01 Stefan Kost <ensonic@users.sf.net>
19760 * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
19761 added two api precondition guards
19762 use g_strdup with getenv to fix crash when using ENVVAR
19764 2004-11-01 Jan Schmidt <thaytan@mad.scientist.com>
19765 * ext/esd/esdsink.c: (gst_esdsink_class_init),
19766 (gst_esdsink_finalize):
19767 Use a finalize function, not dispose, and more importantly,
19768 call the parent class finalize function too
19770 2004-11-01 Johan Dahlin <johan@gnome.org>
19772 * ext/ogg/gstoggdemux.c:
19773 * gst/tags/gstvorbistag.c:
19776 2004-10-31 Benjamin Otte <otte@gnome.org>
19778 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
19779 lotsa memleaks today. But they're all small...
19781 2004-10-31 Benjamin Otte <otte@gnome.org>
19783 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19784 another memleak crushed
19786 2004-10-31 Benjamin Otte <otte@gnome.org>
19788 * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
19791 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19793 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19794 Hack to prevent crash when going to READY inside signal handler
19795 while this function is active.
19797 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19799 * gst/ffmpegcolorspace/Makefile.am:
19800 * gst/ffmpegcolorspace/avcodec.h:
19801 * gst/ffmpegcolorspace/common.h:
19802 * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
19803 * gst/ffmpegcolorspace/dsputil.h:
19804 * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
19805 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19806 (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
19807 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
19808 (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
19809 (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
19810 (gst_ffmpegcsp_avpicture_fill):
19811 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
19812 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19813 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
19814 (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
19815 (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
19816 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
19817 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
19818 (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
19819 * gst/ffmpegcolorspace/imgconvert.c:
19820 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
19821 (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
19822 (avpicture_get_size), (avcodec_get_pix_fmt_loss),
19823 (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
19824 (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
19825 (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
19826 (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
19827 (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
19828 (img_convert_init), (img_apply_table), (shrink41), (shrink21),
19829 (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
19830 (grow21), (grow22), (grow41), (grow44), (conv411),
19831 (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
19832 (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
19833 (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
19834 (avpicture_free), (is_yuv_planar), (img_convert),
19835 (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
19836 (deinterlace_line_inplace), (deinterlace_bottom_field),
19837 (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
19838 * gst/ffmpegcolorspace/imgconvert_template.h:
19839 * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
19840 * gst/ffmpegcolorspace/mmx.h:
19841 * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
19842 (av_fast_realloc), (av_mallocz_static), (av_free_static),
19843 (av_freep), (avcodec_get_context_defaults),
19844 (avcodec_alloc_context), (avcodec_init):
19845 Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
19846 handling plus update from ffmpeg CVS. Large clean-up.
19848 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19850 * gst/playback/Makefile.am:
19851 We need the marshallers for decodebin, too.
19853 2004-10-30 David Schleef <ds@schleef.org>
19855 * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
19856 quicktime typefinding work with 64-bit offsets.
19858 2004-10-30 Jan Schmidt <thaytan@mad.scientist.com>
19860 * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
19861 Set EOS on the element when processing an EOS event.
19862 * ext/speex/gstspeexdec.h:
19863 * ext/speex/gstspeexenc.h:
19864 Only keep a const ptr to the mode
19865 * gst-libs/gst/riff/riff-media.c:
19866 (gst_riff_create_audio_caps_with_data),
19867 (gst_riff_create_audio_template_caps):
19868 Allow WMAV3, with up to 6 channels.
19869 * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
19870 Don't call gst_pad_set_event_function on a sink pad.
19871 * gst/mpegstream/gstdvddemux.c:
19872 (gst_dvd_demux_get_subpicture_stream),
19873 (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
19874 Copy the explicit caps that were set across to the cur_* pads,
19875 instead of trying to use a possibly non-existent negotiated caps.
19876 Reset the type of subpicture pads to UNKNOWN after calling
19877 init_stream, so that the caps get set.
19879 2004-10-29 Martin Pitt <martin.pitt@canonical.com>
19881 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19883 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
19884 Don't touch buffer if it is of size 0 (fixes #151064).
19886 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19888 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
19889 Synchronized discont handling.
19891 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19893 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
19894 (gst_ogg_demux_push):
19895 Make seeking sort-of exact again (fixes #156387).
19897 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19899 * gst/playback/gstplaybasebin.c: (unknown_type),
19900 (add_element_stream), (new_decoded_pad),
19901 (gst_play_base_bin_change_state):
19902 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
19903 (gst_stream_info_init), (gst_stream_info_new),
19904 (gst_stream_info_dispose), (gst_stream_info_get_property):
19905 * gst/playback/gststreaminfo.h:
19906 Make caps explicitely available. Makes testing for unsupported
19907 types possible. Improves error reporting.
19909 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19911 * gst/audioconvert/gstaudioconvert.c:
19912 (gst_audio_convert_buffer_to_default_format):
19913 Really don't touch read-only buffers (#156563).
19915 2004-10-29 Sebastien Cote <sc5@hermes.usherb.ca>
19917 Reviewd by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19919 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
19920 Fix memleak (#155223).
19922 2004-10-29 Wim Taymans <wim@fluendo.com>
19924 * gst/tcp/.cvsignore:
19925 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
19926 (gst_multifdsink_class_init), (gst_multifdsink_init),
19927 (gst_multifdsink_add), (gst_multifdsink_remove),
19928 (gst_multifdsink_remove_client_link), (is_sync_frame),
19929 (gst_multifdsink_new_client),
19930 (gst_multifdsink_handle_client_write),
19931 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
19932 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
19933 (gst_multifdsink_get_property):
19934 * gst/tcp/gstmultifdsink.h:
19935 Added burst on connect sync_method, deprecated sync_clients,
19936 streamlined the sync code some more.
19938 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19940 * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
19941 (gst_play_base_bin_change_state):
19942 Improve error reporting.
19944 2004-10-28 Wim Taymans <wim@fluendo.com>
19946 * gst/tcp/Makefile.am:
19947 * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
19948 * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
19949 (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
19950 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
19951 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
19952 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
19954 Added more locks around fdset structures. Fixed/reworked
19955 the poll array resizing code.
19956 Added stress test for fdset.
19958 2004-10-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19960 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
19963 2004-10-28 Benjamin Otte <otte@gnome.org>
19965 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
19966 fix link function to always query channels and query width for
19970 * gst/equalizer/Makefile.am:
19971 * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
19972 (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
19973 (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
19974 (arg_to_scale), (setup_filter),
19975 (gst_iir_equalizer_compute_frequencies),
19976 (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
19977 (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
19981 2004-10-27 Thomas Vander Stichele <thomas at apestaart dot org>
19983 Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
19987 Added Norwegian Bokmaal translation
19989 2004-10-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19991 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
19992 Don't break on options (fixes #156488).
19994 2004-10-27 Thomas Vander Stichele <thomas at apestaart dot org>
19997 * ext/cdaudio/Makefile.am:
19999 fix build on older automake
20001 2004-10-26 Wim Taymans <wim@fluendo.com>
20003 * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
20004 (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
20005 Allow a little margin when negotiating the framerate.
20007 2004-10-26 Stefan Kost <ensonic@users.sf.net>
20009 * gst/level/gstlevel.c:
20010 synchonised naming of pads and pad-templates
20012 2004-10-26 Wim Taymans <wim@fluendo.com>
20014 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
20015 (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
20016 (_find_streams_check), (gst_ogg_demux_push):
20017 Fix EOS again. Needs to be done in a better way. We should not
20018 remove the pad if there is no new chained stream.
20020 2004-10-26 Iain <iaingnome@gmail.com>
20022 * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
20023 * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
20025 * gst/interleave/interleave.c (interleave_class_init): Hook up release
20027 (interleave_release_pad): Remove the pad.
20028 * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
20029 * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
20031 * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
20033 (gst_xvimagesink_xcontext_clear): Free the xcontext.
20034 (gst_xvimagesink_finalize): Free the par.
20036 2004-10-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20038 * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
20039 (gst_avimux_stop_file):
20040 First calculate the rate, and only then use it. Hdr.rate is a
20041 multiple and not a derivative of hdr.scale. Scale is not the
20042 same as blockalign but is solely related to rate.
20044 2004-10-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20046 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
20047 (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
20050 2004-10-25 James Henstridge <james@jamesh.id.au>
20052 Reviewed by: David Schleef <ds@schleef.org>
20054 * examples/gstplay/player.c: (got_stream_length), (main):
20055 * examples/seeking/cdplayer.c: (update_scale):
20056 * examples/seeking/seek.c: (format_value), (update_scale):
20057 * examples/seeking/spider_seek.c: (format_value), (update_scale),
20059 Build fixes on AMD64.
20061 2004-10-25 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20063 reviewed by: Ronald Bultje <rbultje at gnome dot org>
20065 * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
20066 Fix for some v4l cards which hang in v4lsrc
20068 2004-10-25 Wim Taymans <wim@fluendo.com>
20070 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
20071 (gst_ogg_demux_push), (gst_ogg_chains_clear):
20072 Make sure to remove the pad when a new chain is
20073 encountered. Set some vars to NULL so we don't try
20074 to reference freed memory.
20076 2004-10-25 Wim Taymans <wim@fluendo.com>
20078 * examples/seeking/Makefile.am:
20079 * examples/seeking/cdplayer.c: (update_scale):
20080 * examples/seeking/chained.c: (unlinked), (new_pad), (main):
20081 * examples/seeking/playbin.c: (make_playerbin_pipeline),
20082 (format_value), (update_scale), (iterate), (start_seek),
20083 (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
20084 (print_usage), (main):
20085 Added some more examples, update others.
20087 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20089 * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
20090 * ext/speex/gstspeexdec.c: (speex_dec_chain):
20091 * ext/theora/theoradec.c: (theora_dec_chain):
20092 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
20093 Add codec-name metadata.
20095 2004-10-25 Takao Fujiwara <Takao.Fujiwara@Sun.COM>
20097 Reviewd by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20099 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
20100 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
20101 * ext/alsa/gstalsamixertrack.h:
20103 ALSA mixer track label internationalization (#154054).
20105 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20107 * ext/theora/theoradec.c: (theora_dec_chain):
20108 Export bitrate as metadata.
20110 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20112 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
20113 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
20114 * ext/alsa/gstalsamixertrack.h:
20115 Fix names, fix loop.
20117 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20119 * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
20120 (speex_dec_convert):
20121 sinkconvert function so oggdemux can get the file length (totem).
20123 2004-10-25 James Morrison <ja2morri@csclub.uwaterloo.ca>
20125 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20127 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
20128 Don't push incomplete packets.
20129 * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
20130 Fix MPEG-4 audio typefinding.
20132 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20134 * sys/v4l/Makefile.am:
20135 * sys/v4l/gstv4l.c: (plugin_init):
20136 * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
20137 (gst_v4lelement_init), (gst_v4lelement_dispose),
20138 (gst_v4lelement_change_state):
20139 * sys/v4l/gstv4lelement.h:
20140 * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
20141 (gst_v4l_xoverlay_close), (idle_refresh),
20142 (gst_v4l_xoverlay_set_xwindow_id):
20143 * sys/v4l/gstv4lxoverlay.h:
20144 * sys/v4l/v4l-overlay_calls.c:
20145 * sys/v4l/v4l_calls.h:
20146 * sys/v4l2/Makefile.am:
20147 * sys/v4l2/gstv4l2.c: (plugin_init):
20148 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
20149 (gst_v4l2element_init), (gst_v4l2element_dispose),
20150 (gst_v4l2element_change_state):
20151 * sys/v4l2/gstv4l2element.h:
20152 * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
20153 (gst_v4l2_xoverlay_close), (idle_refresh),
20154 (gst_v4l2_xoverlay_set_xwindow_id):
20155 * sys/v4l2/gstv4l2xoverlay.h:
20156 * sys/v4l2/v4l2-overlay_calls.c:
20157 * sys/v4l2/v4l2_calls.h:
20158 Remove client-side overlay handling, use the X-server v4l plugin
20159 for that. Nicer overlay, less code. Also make the plugin
20160 compileable without X (but then without overlay, obviously).
20161 Makes xwindowlistener obsolete, should we remove that?
20163 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20165 * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
20166 (gst_osssrc_src_query):
20167 * sys/oss/gstosssrc.h:
20168 OK, so people want offset in DEFAULT. This time, actually fix all
20170 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
20173 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20175 * gst/asfdemux/gstasfmux.c:
20176 * gst/avi/gstavimux.c:
20179 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20181 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
20182 Fix properties (channel, norm, frequency).
20184 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20186 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
20188 * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
20191 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20193 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
20196 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20198 * sys/v4l2/gstv4l2element.h:
20199 Yet Another Hack (tm) for kernel header borkedness.
20200 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
20201 (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
20202 (gst_v4l2src_link), (gst_v4l2src_getcaps),
20203 (gst_v4l2src_change_state):
20204 * sys/v4l2/gstv4l2src.h:
20205 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
20206 (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
20207 Fix caps, keep track of state, work.
20209 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20211 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
20214 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20216 * sys/oss/gstosssrc.c: (gst_osssrc_get):
20217 Don't mix bytes and samples.
20219 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20221 * ext/ogg/gstoggmux.c:
20222 Basic pad template which accepts OGM tracks, speex, flac, vorbis
20223 and theora. Any is incorrect.
20224 * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
20226 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
20227 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
20228 (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
20229 (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
20230 * sys/v4l/gstv4lmjpegsrc.h:
20231 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
20232 (gst_v4lsrc_change_state):
20233 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
20234 (gst_v4lmjpegsrc_capture_stop):
20235 Fix caps. Keep track of internal state. Work.
20237 2004-10-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20240 Fix the build fixes.
20242 2004-10-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20244 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20245 (gst_ogg_demux_src_event), (_find_chain_seek),
20246 (gst_ogg_pad_push):
20247 Check for pad availability before using it.
20248 * ext/ogg/gstoggdemux.c: (_find_chain_process):
20249 Fix parsing of chained ogg. Needs more work on the decoder side.
20251 2004-10-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
20253 * gst/spectrum/Makefile.am:
20254 * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
20256 Fix demo and reenable it. Yes, I'm currently playing with audio
20259 2004-10-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20261 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
20262 We love it if files that start at zero work too...
20264 2004-10-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20266 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20267 Handle files with missing EOS headers.
20269 2004-10-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20271 * gst/tcp/gsttcpserversink.c:
20272 (gst_tcpserversink_handle_server_read),
20273 (gst_tcpserversink_init_send):
20274 Zero some variables first (need for accept not to return EINVAL)
20276 2004-10-20 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):
20280 * ext/theora/theoradec.c: (theora_dec_sink_convert),
20281 (theora_dec_chain):
20282 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
20283 (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
20284 Seeking and querying finetune.
20286 2004-10-20 Thomas Vander Stichele <thomas at apestaart dot org>
20290 * ext/raw1394/Makefile.am:
20293 2004-10-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20295 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20297 * gst/playback/Makefile.am:
20298 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
20299 * gst/playback/gstplay-marshal.list:
20300 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
20303 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20305 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
20308 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20310 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20311 (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
20312 (gst_ogg_pad_push):
20313 Yay for non-lineair granulepos in theora.
20315 2004-10-18 Wim Taymans <wim@fluendo.com>
20317 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
20318 (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
20319 * ext/dv/gstdvdec.h:
20320 Make sure we renegotiate aspect ratio when the camera switches.
20322 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20324 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20325 (gst_ogg_demux_src_event), (gst_ogg_pad_push):
20327 * ext/theora/theoradec.c: (theora_dec_chain):
20328 Skip headers. Bad idea for chained ogg, but fixes seeking.
20330 2004-10-18 Wim Taymans <wim@fluendo.com>
20333 I swear, this is the last time I touch this.
20335 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20337 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20338 (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
20339 (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
20341 * ext/theora/theoradec.c: (theora_dec_sink_convert):
20342 Time-to-default conversion.
20343 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
20344 Don't error on unknown packets, just skip. We should probably
20345 read them if we want to support chained ogg.
20347 2004-10-18 Wim Taymans <wim@fluendo.com>
20350 Added cdaudio to wrong list.
20352 2004-10-18 Wim Taymans <wim@fluendo.com>
20357 2004-10-18 Wim Taymans <wim@fluendo.com>
20359 * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
20360 (gst_dvdec_video_link), (gst_dvdec_push):
20361 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
20362 (gst_smokeenc_resync), (gst_smokeenc_chain):
20363 Fix mimetype on smoke encoder.
20364 Add aspect ratio to dvdec. Not sure if these
20365 values are correct though....
20367 2004-10-18 Wim Taymans <wim@fluendo.com>
20369 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
20370 Fix vorbis property descriptions and ranges.
20372 2004-10-18 Wim Taymans <wim@fluendo.com>
20374 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20375 Really do nothing when no data is available.
20376 Go to the playing state when the stream is not seekable
20377 instead of failing.
20379 2004-10-18 Wim Taymans <wim@fluendo.com>
20381 * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
20382 (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
20383 (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
20384 (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
20385 (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
20386 Added uri handler for cd://
20389 2004-10-18 Wim Taymans <wim@fluendo.com>
20391 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20392 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20393 (try_to_link_1), (no_more_pads), (close_link), (type_found):
20394 * gst/playback/gstplaybasebin.c: (gen_preroll_element),
20395 (remove_prerolls), (unknown_type), (add_element_stream),
20396 (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
20397 (gst_play_base_bin_remove_element),
20398 (gst_play_base_bin_link_stream):
20399 * gst/playback/gstplaybin.c: (gen_video_element),
20400 (gen_vis_element), (remove_sinks), (setup_sinks):
20401 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
20402 (gst_stream_info_get_type), (gst_stream_info_class_init),
20403 (gst_stream_info_init), (gst_stream_info_new),
20404 (gst_stream_info_dispose), (stream_info_mute_pad),
20405 (gst_stream_info_set_property), (gst_stream_info_get_property):
20406 * gst/playback/gststreaminfo.h:
20407 Add sink padtemplate to decodebin.
20408 Added some more comments.
20409 Make queue size configurable in playbasebin.
20410 Added possibility to use elements as sinks (ex cdaudio).
20412 2004-10-15 Wim Taymans <wim@fluendo.com>
20414 * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
20415 (gst_speexenc_chain):
20416 Fix speex timestamps so that it gets muxed properly.
20418 2004-10-15 Wim Taymans <wim@fluendo.com>
20420 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
20421 (gst_dv1394src_base_init), (gst_dv1394src_class_init),
20422 (gst_dv1394src_init), (gst_dv1394src_dispose),
20423 (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
20424 (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
20425 (gst_dv1394src_event), (gst_dv1394src_get_formats),
20426 (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
20427 (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
20428 (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
20429 (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
20430 * ext/raw1394/gstdv1394src.h:
20431 Added conversion/query functions.
20432 Update buffer timestamps,
20434 Added uri dv:// so it might play from the firewire in playbin.
20435 Fix a possible leak.
20438 2004-10-15 Wim Taymans <wim@fluendo.com>
20440 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
20441 (gst_dv1394src_init), (gst_dv1394src_set_property),
20442 (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
20443 (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
20444 * ext/raw1394/gstdv1394src.h:
20445 Added AV/C VTR control support needed for some cameras.
20446 Added automatic port detection.
20447 Added properties for selecting the channel.
20448 The configure.ac script is not yet updated to reflect the
20449 new libavc1394 and librom1394 dependencies.
20451 2004-10-15 Wim Taymans <wim@fluendo.com>
20453 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
20454 (qtdemux_parse), (gst_qtdemux_handle_esds):
20455 An esds box is not a container.
20456 Fix parsing of mp4v boxes.
20457 Do not try to renegotiate fps for each frame. Need to
20458 find a better method. This should fix mp4 playback.
20460 2004-10-14 David Schleef <ds@schleef.org>
20462 * configure.ac: update for swfdec-0.3 and liboil-0.2
20463 * ext/swfdec/gstswfdec.c: update for swfdec-0.3
20464 * ext/swfdec/gstswfdec.h: same
20465 * gst/videofilter/gstvideobalance.c: update for liboil-0.2
20466 * gst/videotestsrc/videotestsrc.c: same
20468 2004-10-14 Wim Taymans <wim@fluendo.com>
20470 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
20471 (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
20472 (is_sync_frame), (gst_multifdsink_new_client),
20473 (gst_multifdsink_handle_client_write),
20474 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
20475 (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
20476 Turn warnings into info.
20477 Don't allow a state change in the streaming thread.
20479 2004-10-14 Thomas Vander Stichele <thomas at apestaart dot org>
20481 * ext/vorbis/oggvorbisenc.c:
20482 * ext/vorbis/vorbisdec.c:
20483 fix template sample rate
20485 2004-10-13 Wim Taymans <wim@fluendo.com>
20487 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
20488 Decoding the header first fixes some problems in resyncing
20491 2004-10-12 Wim Taymans <wim@fluendo.com>
20493 * gst/playback/gstplaybin.c: (gen_video_element),
20494 (gen_vis_element), (remove_sinks), (setup_sinks):
20495 Added vis plugin support, need to configure the vis
20496 element to activate it.
20498 2004-10-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20500 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
20501 (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
20503 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
20504 (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
20505 (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
20506 (gst_avi_demux_stream_index), (gst_avi_demux_skip),
20507 (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
20508 (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
20509 * gst/avi/gstavidemux.h:
20510 Support for openDML-2.0 indx/ix## chunks. Support for broken index
20511 recovery (where, if part of the index is broken, we will still read
20512 the rest of the index and recover the broken part by stream
20513 scanning). More broken media support. EOS workarounds. General AVI
20514 braindamage headache recovery. Aspirin included.
20516 2004-10-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20518 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
20519 (cdparanoia_event), (cdparanoia_query):
20520 Get rid of hideous lead-in.
20522 2004-10-11 Wim Taymans <wim@fluendo.com>
20524 * gst/playback/gstplaybasebin.c: (setup_source):
20525 Wrong var used to get g_list_next.
20527 2004-10-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20529 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
20530 (cdparanoia_get), (cdparanoia_open):
20531 Report discid as metadata, add duration.
20533 2004-10-11 Wim Taymans <wim@fluendo.com>
20535 * gst/playback/gstplaybasebin.c: (setup_source):
20536 Cleanup the previous pipeline a little earlier for the
20537 case that a source element provides raw data.
20539 2004-10-11 Benjamin Otte <otte@gnome.org>
20541 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
20542 reset v1 tag offset when there is no v1 tag. Fixes id3demux always
20543 consuming the last 128 bytes, even though it was valid mp3 data.
20545 2004-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20547 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
20548 (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
20549 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
20550 Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
20552 2004-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20554 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
20555 Fix for webcams that support only specific width or height
20557 2004-10-09 Tim-Philipp Müller <t.i.m@zen.co.uk>
20559 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20561 * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
20562 Fix wrong discont event setup (fixes #154967).
20564 2004-10-09 Sebastien Cote <sc5@hermes.usherb.ca>
20566 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20568 * gst/auparse/gstauparse.c: (gst_auparse_chain):
20569 Error out on invalid data (fixes #154807).
20571 2004-10-09 Tim-Philipp Müller <t.i.m@zen.co.uk>
20573 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20575 * ext/dvdread/dvdreadsrc.c: (_read):
20576 Make titles > 0 work again (fixes #154834).
20578 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20580 * gst-libs/gst/riff/riff-media.c:
20581 (gst_riff_create_video_template_caps):
20582 WMV3 missing in template caps.
20584 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20586 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20587 OK, so the original code was too strict. It makes random AVI files
20588 hang for seconds upon opening, which is unacceptable and is far
20589 beyond the original goal of getting multiple chunks for one-chunk
20590 sounc stream files. So now do just that.
20592 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20594 * gst/playback/gstplaybasebin.c: (setup_source),
20595 (gst_play_base_bin_change_state):
20596 Actually clean up streaminfo if output fails. This would trigger
20597 if, for example, there was no CD in the drive. No preroll, so
20598 a streaminfo structure is created, but the subsequent state change
20599 of the thread fails.
20600 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
20601 Don't change state if parent failed.
20603 2004-10-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20605 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
20606 (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
20607 (gen_video_element), (remove_sinks):
20608 Add small bits of code for screenshot handling.
20610 2004-10-08 Wim Taymans <wim@fluendo.com>
20612 * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
20613 (gen_video_element), (gen_audio_element), (setup_sinks):
20614 Don't assume the user provided sinks are named "sink"...
20616 2004-10-08 Wim Taymans <wim@fluendo.com>
20618 * gst/playback/gstplaybasebin.c: (gen_preroll_element),
20619 (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
20620 (gst_play_base_bin_link_stream):
20621 Do not try to autoplug sources that generate raw streams like
20623 disconnect the preroll overrun signal when we don't need it anymore.
20625 2004-10-08 Milosz Derezynski <internalerror.rez@fhtw-berlin.de>
20627 * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20628 Added reworked patch from #154903 from milosz derezynski (deadchip).
20630 2004-10-08 Wim Taymans <wim@fluendo.com>
20632 * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20633 (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
20634 (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
20635 (cdparanoia_convert), (cdparanoia_uri_get_type),
20636 (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
20637 (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
20638 * ext/cdparanoia/gstcdparanoia.h:
20639 This adds the cdda://<tracknum> uri.
20641 2004-10-08 Wim Taymans <wim@fluendo.com>
20643 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20644 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20645 (try_to_link_1), (no_more_pads), (close_link), (type_found):
20646 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
20647 (unknown_type), (gst_play_base_bin_remove_element),
20648 (gst_play_base_bin_link_stream):
20649 * gst/playback/gstplaybasebin.h:
20650 * gst/playback/gstplaybin.c: (gst_play_bin_init),
20651 (gst_play_bin_set_property), (gen_video_element),
20652 (gen_audio_element), (setup_sinks):
20653 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
20654 (gst_stream_info_get_type), (gst_stream_info_class_init),
20655 (gst_stream_info_init), (gst_stream_info_new),
20656 (gst_stream_info_dispose), (stream_info_mute_pad),
20657 (gst_stream_info_set_property), (gst_stream_info_get_property):
20658 * gst/playback/gststreaminfo.h:
20659 Reuse the audio and video bins.
20660 Some internal cleanups in the stream selection code.
20662 2004-10-08 Julien MOUTTE <julien@moutte.net>
20664 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20665 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20666 * sys/ximage/ximagesink.h:
20667 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20668 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20669 * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
20670 not coming from those elements. Moreover these elements should not keep
20671 the xid they have been given when in NULL state.
20673 2004-10-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20675 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20676 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20677 * sys/ximage/ximagesink.h:
20678 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20679 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20680 * sys/xvimage/xvimagesink.h:
20681 Actually only create a new toplevel window if we're not gonna
20682 embed it right after.
20684 2004-10-07 Wim Taymans <wim@fluendo.com>
20686 * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
20687 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
20688 * gst/playback/gstplaybin.c: (setup_sinks):
20689 Implement muting/unmuting of streams, mute streams that are not
20692 2004-10-07 Wim Taymans <wim@fluendo.com>
20694 * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
20696 Added lame audio/x-ac3 typefind function.
20698 2004-10-06 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
20703 === release 0.8.5 ===
20705 2004-10-06 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
20710 releasing 0.8.5, "Take You On"
20712 2004-10-06 Wim Taymans <wim@fluendo.com>
20714 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20715 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
20716 (no_more_pads), (close_link), (type_found):
20717 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20718 * gst/playback/gstplaybin.c: (gen_video_element):
20719 Do not signal the no_more_pads after the first pad when
20720 we are plugging a non dynamic element with multiple
20721 output pads (like swfdec, dvdec, ...).
20723 2004-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
20726 bump for prerelease
20728 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20730 * gst/wavparse/gstwavparse.c:
20731 add ATRAC3 to STATIC CAPS to fix a warning
20733 * gst/matroska/ebml-read.c:
20734 * gst-libs/gst/riff/riff-read.c:
20737 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20739 * gst-libs/gst/riff/riff-media.c:
20740 generate caps for ATRAC3 audio streams
20742 * gst/realmedia/rmdemux.c:
20743 generate caps for ATRAC3 audio streams
20745 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20747 * gst/wavparse/Makefile.am
20748 * gst/wavparse/riff.h
20749 * gst/wavparse/wavparse.vcproj
20750 riff.h removal (unused and duplication with riff-ids.h)
20752 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20754 * gst/wavparse/gstwavparse.h
20755 remove duplicated defines for audio codec codes
20757 * gst-libs/gst/riff/riff-ids.h
20758 * gst/wavenc/riff.h:
20759 add "4CC" code for ATRAC3 audio streams
20760 add "4CC" code for ITU_G721_ADPCM (unused for now)
20762 2004-10-06 Wim Taymans <wim@fluendo.com>
20764 * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
20765 Actually _do_ negotiation. Pass gdouble as arg instead
20766 of guint64 for the framerate.
20768 2004-10-06 Wim Taymans <wim@fluendo.com>
20770 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20771 (find_compatibles), (close_pad_link), (try_to_link_1),
20772 (no_more_pads), (close_link), (type_found):
20773 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20774 * gst/playback/gstplaybin.c: (gen_video_element),
20775 (gen_audio_element):
20776 Set state on newly added element to READY so that negotiation
20778 Addes some more debug info.
20779 Do not try to plug pads with multiple caps structures or ANY
20780 because it is too dangerous since we do not do dynamic
20783 2004-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
20785 written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
20789 add Oriya translation
20791 2004-10-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20793 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20794 Prevent overwrite of size member. Makes audio sound crappy.
20796 2004-10-05 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20798 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
20799 Add rmvb to the list of known RealMedia extensions
20801 2004-10-05 Wim Taymans <wim@fluendo.com>
20803 * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
20804 (mngdec_openstream), (mngdec_closestream),
20805 (mngdec_handle_sink_event), (mngdec_readdata),
20806 (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
20807 (mngdec_getcanvasline), (mngdec_refresh),
20808 (gst_mngdec_change_state):
20809 Set the framerate correctly.
20811 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20813 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20814 There was something wrong with the index massaging.
20816 2004-10-04 Wim Taymans <wim@fluendo.com>
20818 * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
20819 * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
20820 (gst_smokedec_chain):
20821 * ext/jpeg/gstsmokedec.h:
20822 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
20823 (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
20824 * ext/jpeg/gstsmokeenc.h:
20825 * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
20826 (smokecodec_decode_new), (smokecodec_info_free),
20827 (smokecodec_set_quality), (smokecodec_get_quality),
20828 (smokecodec_set_threshold), (smokecodec_get_threshold),
20829 (smokecodec_set_bitrate), (smokecodec_get_bitrate),
20830 (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
20831 (smokecodec_encode), (smokecodec_parse_id),
20832 (smokecodec_parse_header), (smokecodec_decode):
20833 * ext/jpeg/smokecodec.h:
20834 * ext/jpeg/smokeformat.h:
20835 Updated smoke, new bitstream, allows embedding in ogg.
20837 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20839 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
20840 Fix seeking in some files. All this code is no longer needed (and
20841 actually breaks stuff) because we now synchronize the full index
20842 right when reading the header.
20844 2004-10-04 Wim Taymans <wim@fluendo.com>
20847 configure update for libmng.
20849 2004-10-04 Wim Taymans <wim@fluendo.com>
20851 * ext/libmng/Makefile.am:
20852 * ext/libmng/gstmng.c: (plugin_init):
20853 * ext/libmng/gstmng.h:
20854 * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
20855 (gst_mngdec_base_init), (gst_mngdec_class_init),
20856 (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
20857 (gst_mngdec_loop), (gst_mngdec_get_property),
20858 (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
20859 (mngdec_closestream), (mngdec_handle_sink_event),
20860 (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
20861 (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
20862 (gst_mngdec_change_state):
20863 * ext/libmng/gstmngdec.h:
20864 * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
20865 (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
20866 (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
20867 (gst_mngenc_chain), (gst_mngenc_get_property),
20868 (gst_mngenc_set_property):
20869 * ext/libmng/gstmngenc.h:
20870 Added basic MNG decoder. Needs more work. The encoder does
20873 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20875 * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
20876 (gst_rmdemux_loop), (gst_rmdemux_add_stream),
20877 (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
20878 Don't hang on length=0 chunks. Some negotiation fixes. Signal
20881 2004-10-04 Thomas Vander Stichele <thomas at apestaart dot org>
20884 you need at least 1.0.4 of speex
20886 2004-10-04 Iain <iaingnome@gmail.com>
20888 * ext/speex/gstspeexdec.h: Revert the includes changes.
20890 * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
20892 2004-09-30 Iain <iaingnome@gmail.com>
20894 * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
20895 found during init or set as a property instead of hardcoding /dev/audio
20897 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20899 * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
20900 (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
20901 (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
20902 (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
20903 (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
20904 (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
20905 (gst_rmdemux_dump_data):
20906 Use debug category, fix EOS handling. filesrc ! rmdemux now
20909 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20911 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
20912 (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
20913 (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
20914 Improve allocation, cutting and sorting of the index. How takes a
20915 few seconds instead of minutes.
20917 2004-10-03 Christophe Fergeau <teuf@gnome.org>
20919 * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
20922 2004-10-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20924 * gst-libs/gst/riff/riff-media.c:
20925 (gst_riff_create_video_caps_with_data),
20926 (gst_riff_create_video_template_caps):
20927 Add wing commander format mimetype/fourccs.
20928 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20929 Don't crash if some value is 0.
20931 2004-10-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20933 * gst-libs/gst/riff/riff-media.c:
20934 (gst_riff_create_video_caps_with_data),
20935 (gst_riff_create_video_template_caps):
20936 Add DIB fourcc (raw, palettized 8-bit RGB).
20937 * gst-libs/gst/riff/riff-read.c:
20938 (gst_riff_read_strf_vids_with_data):
20939 Oops, fix strf_data reading bug.
20940 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
20941 Use a non-NULL tag.
20942 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
20943 Time for hacks. Sorry Dave. At least one quicktime movie (a
20944 trailer) that I've encountered contains multiple video tracks.
20945 One of those is the actual video track, the other are one-frame
20946 tracks (images). Unfortunately, the number of frames according
20947 to the trak header is 1 for each, so that doesn't help. So
20948 instead, I look at the duration and discard tracks with a
20949 duration shorter than 20% of the length of the stream. Better
20952 2004-10-01 Christian Schaller <christian@fluendo.com>
20954 * ext/ivorbis/vorbis.c:
20955 Patch from Phil Blundell (Bug 152341)
20957 2004-10-01 Wim Taymans <wim@fluendo.com>
20959 * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
20960 (speex_dec_get_formats), (speex_dec_convert),
20961 (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
20962 (speex_dec_chain), (gst_speexdec_get_property),
20963 (gst_speexdec_set_property):
20966 2004-10-01 Wim Taymans <wim@fluendo.com>
20968 * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
20969 (gst_wavparse_stream_init), (gst_wavparse_fmt),
20970 (gst_wavparse_other), (gst_wavparse_loop),
20971 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
20972 (gst_wavparse_srcpad_event):
20973 * gst/wavparse/gstwavparse.h:
20974 Added some more debugging info.
20975 Fix the case where the length of the file is 0.
20976 Make sure we seek to sample borders.
20978 2004-10-01 Wim Taymans <wim@fluendo.com>
20980 * gst/playback/README:
20981 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
20982 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20983 (try_to_link_1), (no_more_pads), (close_link), (type_found):
20984 Add some debug info to decodebin, update README
20986 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20988 * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
20989 Don't use g_print(); use GST_DEBUG().
20991 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20993 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
20994 (gst_ogg_mux_queue_pads):
20995 Handle EOS properly.
20997 2004-10-01 Sebastien Cote <sc5@hermes.usherb.ca>
20999 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21001 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
21002 (gst_faad_chain), (gst_faad_change_state):
21003 * ext/faad/gstfaad.h:
21004 Allow playback of raw (unframed) MPEG AAC files (#148993).
21006 2004-10-01 Sebastien Cote <sc5@hermes.usherb.ca>
21008 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21010 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
21011 Throw error if we didn't recognize the stream. Fixes #152289.
21013 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21015 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
21018 2004-10-01 Francis Labonte <francis_labonte@hotmail.com>
21020 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21022 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
21025 2004-10-01 Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
21027 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21029 * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
21031 * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
21034 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21036 * gst-libs/gst/riff/riff-media.c:
21037 (gst_riff_create_video_caps_with_data),
21038 (gst_riff_create_audio_caps_with_data):
21039 Add codec_data handling (like asfdemux used to do).
21040 * gst/asfdemux/gstasf.c: (plugin_init):
21041 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
21042 (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
21043 Use riff-media for caps creation instead of our own (mostly
21044 broken) copy of its functions.
21046 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21048 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
21049 Don't actually error out if we get another return value than
21050 -EINVAL. Opposite to what I first thought, drivers have random
21051 return values for this, although -EINVAL is the expected return
21052 value. Since this is not fatal, we shouldn't use
21053 GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
21055 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21057 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
21058 (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
21059 (dvdreadsrc_get_property), (_open), (_seek), (_read),
21060 (dvdreadsrc_get), (dvdreadsrc_open_file),
21061 (dvdreadsrc_change_state):
21062 Fix. Don't do one big huge loop around the whole DVD, that will
21063 cache all data and thus eat sizeof(dvd) (several GB) before we
21065 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
21066 Actually NULL'ify event after using it.
21067 * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
21068 (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
21069 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
21070 (gst_ebml_read_seek), (gst_ebml_read_skip):
21072 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
21073 (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
21074 (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
21075 Fix timing (this will probably break if I seek using menus, but
21076 I didn't get there yet). VOBs and normal DVDs should now work.
21077 Add a mpeg2-only pad with high rank so this get autoplugged for
21079 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
21080 (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
21081 (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
21082 (gst_mpeg_demux_get_audio_stream),
21083 (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
21084 (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
21085 Use this as second rank for MPEG-1 and MPEG-2. Still use this for
21086 MPEG-1 but use dvddemux for MPEG-2.
21087 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
21088 (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
21089 (gst_mpeg_parse_parse_packhead):
21090 Timing. Only add pad template if it exists. Add sink template from
21091 class and not from ourselves. This means we will always use the
21092 correct sink template even if it is not the one defined in this
21095 2004-09-29 Wim Taymans <wim@fluendo.com>
21097 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
21098 (gst_mpeg_demux_parse_pes):
21099 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
21100 Fix playback of mpeg again, timestamps where screwed up by
21103 2004-09-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21105 * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
21106 Only return true if we actually filled something in. Prevents
21107 player applications from showing a random length for flac files.
21108 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
21109 (gst_riff_read_use_event), (gst_riff_read_handle_event),
21110 (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
21111 (gst_riff_read_strf_vids_with_data),
21112 (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
21113 OK, ok, so I implemented event handling. Apparently it's normal
21114 that we receive random events at random points without asking
21116 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
21117 (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
21118 (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
21119 (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
21120 (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
21121 (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
21122 (gst_avi_demux_stream_data), (gst_avi_demux_loop):
21123 * gst/avi/gstavidemux.h:
21124 Implement non-lineair chunk handling and subchunk processing.
21125 The first solves playback of AVI files where the audio and video
21126 data of individual buffers that we read are not synchronized.
21127 This should not happen according to the wonderful AVI specs, but
21128 of course it does happen in reality. It is also a prerequisite for
21129 the second. Subchunk processing allows us to cut chunks in small
21130 pieces and process each of these pieces separately. This is
21131 required because I've seen several AVI files with incredibly large
21132 audio chunks, even some files with only one audio chunk for the
21133 whole file. This allows for proper playback including seeking.
21134 This patch is supposed to fix all AVI A/V sync issues.
21135 * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
21136 (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
21138 * gst/modplug/gstmodplug.cc:
21139 Proper return value setting for the query() function.
21140 * gst/playback/gstplaybasebin.c: (setup_source):
21141 Being in non-playing state (after, e.g., EOS) is not necessarily
21142 a bad thing. Allow for that. This fixes playback of short files.
21143 They don't actually playback fully now, because the clock already
21144 runs. This means that small files (<500kB) with a small length
21145 (<2sec) will still not or barely play. Other files, such as mod
21146 or flx, will work correctly, however.
21148 2004-09-28 Wim Taymans <wim@fluendo.com>
21150 * ext/speex/gstspeex.c: (plugin_init):
21151 * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
21152 (gst_speex_dec_class_init), (speex_dec_get_formats),
21153 (speex_get_event_masks), (speex_get_query_types),
21154 (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
21155 (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
21156 (gst_speexdec_get_property), (gst_speexdec_set_property),
21157 (speex_dec_change_state):
21158 * ext/speex/gstspeexdec.h:
21159 * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
21160 (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
21161 (gst_speexenc_base_init), (gst_speexenc_class_init),
21162 (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
21163 (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
21164 (gst_speexenc_src_query), (gst_speexenc_init),
21165 (gst_speexenc_get_tag_value), (comment_init), (comment_add),
21166 (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
21167 (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
21168 (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
21169 (gst_speexenc_chain), (gst_speexenc_get_property),
21170 (gst_speexenc_set_property), (gst_speexenc_change_state):
21171 * ext/speex/gstspeexenc.h:
21172 Rewrote speex encoder, make sure it can be embedded in ogg.
21173 Implemented speex decoder.
21175 2004-09-28 Christian Schaller <christian@fluendo.com>
21178 Remove kioslave plugin. Markey is brewing a new working one
21179 * ext/Makefile.am: Remove kioslave plugin
21181 * gst-plugins.spec.in: remove kio plugin from spec
21183 2004-09-27 Wim Taymans <wim@fluendo.com>
21185 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21186 (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
21187 (is_sync_frame), (gst_multifdsink_client_queue_buffer),
21188 (gst_multifdsink_new_client),
21189 (gst_multifdsink_handle_client_write),
21190 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
21191 (gst_multifdsink_handle_clients):
21192 * gst/tcp/gstmultifdsink.h:
21193 Make syncing to keyframes actually work for new clients and lagging
21196 2004-09-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
21198 * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
21199 (gst_navigationtest_handle_src_event), (draw_box_planar411),
21200 (gst_navigationtest_planar411), (gst_navigationtest_change_state):
21201 * gst/debug/gstnavigationtest.h:
21202 make navigationtest display button-press and button-release events
21204 2004-09-26 Iain <iaingnome@gmail.com>
21206 * gst/interleave/interleave.c (all_channels_new_media): Checks if all
21207 the channels have received a new media event.
21208 (interleave_buffered_loop): Compresses a new media event on all
21211 2004-09-26 Iain <iaingnome@gmail.com>
21213 * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
21214 call the sinkpad's default event handler and not the srcpads. He also
21215 says this is confusing :)
21216 (gst_wavenc_stop_file): Company says that seek events only go upstream
21217 we should send a discontinuous downstream instead.
21219 2004-09-25 Christian Schaller <christian@fluendo.com>
21221 * Update SPEC file to be usable in conjunction with Fedora Core,
21222 Fedora.us and freshrpms packages
21223 * Fix typo in multifilesrc test Makefile
21225 2004-09-24 Wim Taymans <wim@fluendo.com>
21227 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
21228 Only signal the no_more_pads signal when we have
21229 added the stream to our list.
21231 2004-09-24 Wim Taymans <wim@fluendo.com>
21233 * gst/playback/gstplaybasebin.c: (remove_prerolls),
21235 * gst/playback/gstplaybasebin.h:
21236 * gst/playback/gstplaybin.c: (setup_sinks):
21237 Don't try to preroll or decode more than one audio/video
21240 2004-09-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21242 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
21243 Throw error if we failed to find a suitable output. This should
21244 throw an error if we successfully set up a pipeline (e.g. because
21245 we recognized a media file) but found no decodable streams in it
21246 (e.g. because it contains only media stream types for which we
21247 have no decoders, or because it's not a media type).
21249 2004-09-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21251 * ext/dirac/Makefile.am:
21252 * ext/dirac/gstdirac.cc:
21253 * ext/dirac/gstdiracdec.cc:
21254 * ext/dirac/gstdiracdec.h:
21255 Do something. Don't actually know if this works because I don't
21256 have a demuxer yet.
21257 * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
21258 Add channels=1 to caps returned from _getcaps().
21259 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
21260 (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
21261 (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
21262 (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
21263 (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
21264 (gst_ogm_parse_change_state):
21265 Separate between audio/video so ogmaudioparse actually uses the
21266 audio pad templates. Both audio and video work now, including
21267 autoplugging. Also use sometimes-srcpad hack.
21268 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
21269 Handle events better. Don't hang on infinite loops.
21270 * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
21271 (gst_avi_demux_init), (gst_avi_demux_reset),
21272 (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
21273 (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
21274 (gst_avi_demux_change_state):
21275 * gst/avi/gstavidemux.h:
21276 Improve A/V sync. Still not perfect.
21277 * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
21278 (gst_ebml_read_skip):
21279 Handle events better.
21280 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
21281 (gst_qtdemux_loop_header), (qtdemux_parse_trak),
21282 (qtdemux_audio_caps):
21283 Add IMA4. Improve event handling. Save offset after a seek when
21284 the headers are at the end of the file so that we don't end up in
21286 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
21287 Add low-priority typefind support for files with no length.
21289 2004-09-23 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21291 * testsuite/multifilesink/Makefile.am:
21294 2004-09-22 Julien MOUTTE <julien@moutte.net>
21296 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
21297 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
21298 mistakes from thaytan's patches.
21300 2004-09-23 Jan Schmidt <thaytan@mad.scientist.com>
21302 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
21303 For completeness, XSync in the destroy function as xvimage does.
21305 2004-09-23 Jan Schmidt <thaytan@mad.scientist.com>
21307 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
21308 Correct caps negotiation
21309 * gst/volume/gstvolume.c: (volume_chain_float),
21310 (volume_chain_int16):
21311 Modify debug output to be little more informative
21312 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
21313 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21314 (gst_xvimagesink_xvimage_destroy):
21315 Add XSync calls after detaching from the shared memory segment to
21318 2004-09-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21320 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
21321 (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
21322 * ext/vorbis/vorbis.c: (plugin_init):
21323 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
21324 (gst_vorbisenc_chain):
21325 * ext/vorbis/vorbisenc.h:
21326 remove explicit newmedia support from oggmux and vorbisenc
21327 add debug category to vorbisenc
21328 * gst/multifilesink/gstmultifilesink.c:
21329 (gst_multifilesink_class_init), (gst_multifilesink_init),
21330 (gst_multifilesink_dispose), (gst_multifilesink_set_location),
21331 (gst_multifilesink_set_property), (gst_multifilesink_next_file),
21332 (gst_multifilesink_handle_event), (gst_multifilesink_chain),
21334 * gst/multifilesink/gstmultifilesink.h:
21335 add support for streamheader in multifilesink
21337 2004-09-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21339 * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
21340 (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
21341 (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
21342 Prevent infinite loops. More correct error reporting.
21343 * gst/auparse/gstauparse.c: (gst_auparse_chain):
21344 Error out if negotiation fails.
21345 * gst/playback/gstplaybasebin.c: (setup_source),
21346 (gst_play_base_bin_change_state), (gst_play_base_bin_error),
21347 (gst_play_base_bin_found_tag):
21348 Error/tag forwarding. Pre-roll fixes for source errors on state
21349 changes (e.g. "file does not exist") to prevent hangs.
21351 2004-09-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21353 * testsuite/multifilesink/Makefile.am:
21354 * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
21355 (gst_newmedia_class_init), (gst_newmedia_init),
21356 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
21357 (newfile_signal), (test_signal), (main):
21358 * testsuite/multifilesink/multifilesrc_test.c: (main):
21359 * testsuite/multifilesink/oggtheora_test.c:
21360 (gst_newmedia_base_init), (gst_newmedia_class_init),
21361 (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
21362 (test_format), (newfile_signal), (test_signal), (main):
21363 * testsuite/multifilesink/oggvorbis_test.c:
21364 (gst_newmedia_base_init), (gst_newmedia_class_init),
21365 (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
21366 (test_format), (newfile_signal), (test_signal), (main):
21367 * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
21368 (gst_newmedia_class_init), (gst_newmedia_init),
21369 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
21370 (newfile_signal), (test_signal), (main):
21373 2004-09-20 Christian Schaller <christian@fluendo.com>
21375 * Fix mikmod license to LGPL as they have relicensed
21376 * Move Dirac and Effectv into LGPL section of README_license
21378 2004-09-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21380 * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
21381 (gst_mad_change_state):
21382 Allow for mp3 rate/channels changes. However, only very
21383 conservatively. Reason that we *have* to enable this is smiply
21384 because the mad find_sync() function is not good enough, it will
21385 regularly sync on random data as valid frames and therefore make
21386 us provide random caps as *final* caps of the stream. The best fix
21387 I could think of is to simply require several of the same stream
21388 changes in a row before we change caps.
21389 The actual testcase that works now is #
21390 * ext/ogg/Makefile.am:
21391 * ext/ogg/gstogg.c: (plugin_init):
21392 * ext/ogg/gstogmparse.c:
21393 OGM support (video only for now; I need an audio sample file).
21394 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
21395 (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
21396 (gst_asf_demux_add_video_stream):
21398 * gst/playback/gstplaybasebin.c: (unknown_type):
21399 Don't error out on single unknown-types after all. It's wrong.
21400 If we found type of video and audio but not of a subtitle stream,
21401 it will still error out (which is unwanted). Will find a better fix
21403 * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
21404 (ogmaudio_type_find), (plugin_init):
21407 2004-09-20 Johan Dahlin <johan@gnome.org>
21409 * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
21410 after setting caps.
21412 2004-09-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21414 * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
21415 * gst/wavenc/gstwavenc.h:
21416 Added newmedia support to wavenc
21418 2004-09-17 Wim Taymans <wim@fluendo.com>
21420 * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
21421 (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
21422 (gst_fdset_fd_can_write), (gst_fdset_wait):
21423 * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
21424 (gst_multifdsink_init), (gst_multifdsink_add),
21425 (gst_multifdsink_remove), (gst_multifdsink_get_stats),
21426 (gst_multifdsink_remove_client_link),
21427 (gst_multifdsink_client_queue_buffer),
21428 (gst_multifdsink_handle_client_write),
21429 (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
21430 (gst_multifdsink_close), (gst_multifdsink_change_state):
21431 * gst/tcp/gstmultifdsink.h:
21432 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
21433 (gst_tcpserversink_removed):
21434 Small cleanups in fdset.c
21435 Use a hastable to map fd to the client structure for faster
21436 lookup in _remove and get_stats.
21437 Added virtual function to close the fds.
21438 Handle clients even when the select/poll call was unblocked because
21440 Implement syncing to keyframe in the recovery procedure.
21442 2004-09-16 Iain <iaingnome@gmail.com>
21444 * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
21447 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21449 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
21450 Caps are only set if the type of the stream is unknown, but this
21451 is initialized in ->init_stream(), so set to UNKNOWN after calling
21452 ->init_stream() so that capsnego starts.
21454 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21456 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21457 (gst_avi_demux_stream_data):
21458 Just hardcode for raw audio then. AVI audio sucks.
21460 2004-09-15 Arwed v. Merkatz <v.merkatz@gmx.net>
21462 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
21463 * gst/matroska/matroska-mux.c: (audiosink_templ),
21464 (gst_matroska_mux_audio_pad_link):
21465 * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
21466 Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
21468 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21470 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21471 (gst_avi_demux_stream_data):
21472 Try to fix a/v sync issues.
21474 2004-09-15 David Schleef <ds@schleef.org>
21476 * configure.ac: remove NASM check, since we don't use it. Update
21478 * ext/dirac/gstdiracdec.cc: update to current 0.4 API
21479 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
21480 Initialized variables.
21481 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
21482 (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
21483 (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
21486 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21488 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21489 (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
21490 * gst/avi/gstavidemux.h:
21491 Fix for compressed audio (mp3) timestamp generation. How did this
21494 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21496 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
21497 Volume is a double not a float.
21499 2004-09-15 Wim Taymans <wim@fluendo.com>
21501 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
21502 (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
21503 Don't close the fd in multifdsink as we didn't open it in the
21504 first place. Some cleanups.
21506 2004-09-15 Wim Taymans <wim@fluendo.com>
21508 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
21509 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21510 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21511 Fix the case where the muxer would mark pages as delta
21512 frames when they are not (vorbis only ogg).
21514 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21516 * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
21517 (gst_play_base_bin_change_state):
21518 Handle the case where we failed to setup a clear pipeline. This
21519 will throw an error (or EOS, another nice case) and if you don't
21520 catch that, the app will wait for the signal forever (and thus
21523 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21525 * ext/gnomevfs/gstgnomevfssink.c:
21526 (gst_gnomevfssink_uri_get_protocols):
21527 * ext/gnomevfs/gstgnomevfssrc.c:
21528 (gst_gnomevfssrc_uri_get_protocols):
21529 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
21530 * ext/gnomevfs/gstgnomevfsuri.h:
21531 Use _uri_new() instead of _open(), so it doesn't take as long and
21532 Christophe's computer won't hang.
21533 * gst/playback/gstplaybasebin.c: (unknown_type):
21534 Throw error on unknown media type, so apps actually display it.
21536 2004-09-14 Brian Cameron <brian.cameron@sun.com
21538 * tools/gst-launch-ext-m.m: Changed ~ to $ENV{HOME} to allow
21539 this script to work on Solaris since bash shell handles echo
21540 differenly than bash.
21542 2004-09-17 Wim Taymans <wim@fluendo.com>
21544 * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
21545 (setup_source), (gst_play_base_bin_set_property),
21546 (gst_play_base_bin_add_element):
21547 * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
21548 Some more work on making sure seeking pauses the pipeline and
21549 that changing the uri actually does something.
21551 2004-09-17 Wim Taymans <wim@fluendo.com>
21553 * gst/tcp/gstfdset.c: (gst_fdset_wait):
21554 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
21555 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
21556 (gst_tcpserversink_close):
21557 Be a bit more paranoid when freeing memory.
21559 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21561 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
21562 (qtdemux_parse_trak):
21563 Don't crash by dividing by zero (see sample movie in #126922).
21565 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21567 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
21568 Don't touch non-existing data (fixes crash on file in #140147).
21570 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21572 * gst/playback/gstplaybasebin.c:
21573 (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
21574 Handle double disposals, and proper change of URIs.
21576 2004-09-13 Martin Eikermann <meiker@upb.de>
21578 * gst/mpegstream/gstmpegparse.c:
21579 fix synchronistation for streams recorded from digital PCR
21582 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21584 * ext/gnomevfs/Makefile.am:
21585 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
21586 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
21587 (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
21588 (gst_gnomevfssink_uri_get_type),
21589 (gst_gnomevfssink_uri_get_protocols),
21590 (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
21591 (gst_gnomevfssink_uri_handler_init),
21592 (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
21593 (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
21594 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
21595 (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
21596 (gst_gnomevfssrc_uri_get_type),
21597 (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
21598 (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
21599 (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
21600 (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
21601 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
21602 * ext/gnomevfs/gstgnomevfsuri.h:
21603 Add URI support to Gnome-VFS plugins. Tries to load a fixed list
21604 of fake URIs to see which this version of Gnome-VFS likes, and
21605 uses that for the Gst-URI interface. Makes playbin support http://
21606 streams. Also fix up some stupid behaviour in gnomevfssrc.
21608 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21610 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
21611 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
21612 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
21613 (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
21614 Update mixer (to sync with other sessions) if we try to obtain
21615 a new value. This makes alsamixer work accross applications.
21616 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
21617 Only call sync functions if we're running, else alsalib asserts.
21618 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
21619 Sometimes fails to compile. Possibly a gcc bug.
21620 * gst/playback/gstplaybin.c: (gen_video_element),
21621 (gen_audio_element):
21622 Add a reference to an application-provided object, because we lose
21623 this same reference if we add it to the bin. If we don't do this,
21624 we can only use this object once and thus crash if we go from
21625 ready to playing, back to ready and back to playing again.
21626 Also add an audioscale element because several cheap soundcards -
21627 like mine - don't support all samplerates.
21628 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
21629 (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
21630 Fix wrong order or PAR calls. Makes automatically obtained PAR
21631 from the X server atually being used.
21633 2004-09-12 David Schleef <ds@schleef.org>
21635 Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
21636 #151887, #152102, #152247.
21637 * examples/indexing/indexmpeg.c: 64-bit warning fixes.
21638 * examples/seeking/cdparanoia.c: same
21639 * examples/seeking/cdplayer.c: same
21640 * examples/seeking/seek.c: same
21641 * examples/seeking/spider_seek.c: same
21642 * examples/seeking/vorbisfile.c: same
21643 * examples/stats/mp2ogg.c: same
21644 * ext/esd/esdsink.c: (gst_esdsink_class_init),
21645 (gst_esdsink_dispose): Dispose of element properly.
21646 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
21648 * ext/nas/nassink.c: (gst_nassink_class_init),
21649 (gst_nassink_dispose): Dispose of element correctly.
21650 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
21651 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
21652 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
21653 Fix 64-bit warning.
21654 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21655 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
21656 Fix 64-bit warning.
21658 2004-09-12 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21660 * configure.ac : change speex detection as 1.1.6 now uses
21661 .pc/pkg-config and they changed their headers location.
21663 2004-09-09 Arwed v. Merkatz <v.merkatz@gmx.net>
21665 * gst/matroska/matroska-mux.h:
21666 * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
21667 (gst_matroska_mux_start), (gst_matroska_mux_finish),
21668 (gst_matroska_mux_write_data):
21669 Write multiple blocks/frames per cluster.
21670 Write meta-seek information (seek heads).
21672 2004-09-09 Scott Wheeler <wheeler@kde.org>
21674 * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
21675 (gst_play_bin_set_property), (gst_play_bin_get_property),
21676 (gen_audio_element), (gen_audio_element):
21677 Add a volume element / property to the pipeline.
21679 2004-09-07 Wim Taymans <wim@fluendo.com>
21681 * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
21682 Copy timestamps from the master pad to the output buffers.
21684 2004-09-03 Thomas Vander Stichele <thomas at apestaart dot org>
21686 * ext/raw1394/gstdv1394src.c:
21687 throw errors when applicable
21689 2004-09-01 Arwed v. Merkatz <v.merkatz@gmx.net>
21691 * gst/matroska/ebml-ids.h:
21692 * gst/matroska/ebml-read.c: (gst_ebml_read_date):
21693 * gst/matroska/ebml-write.c: (gst_ebml_write_date):
21694 * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
21695 automatically convert unix time <-> ebml time when reading/writing
21696 a date, use gst_ebml_write_uint to write CUETIME,
21697 not gst_ebml_write_date.
21698 * gst/matroska/matroska-ids.h:
21699 * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
21700 (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
21701 (gst_matroska_mux_track_header), (gst_matroska_mux_start),
21702 (gst_matroska_mux_write_data):
21703 Write track and segment UIDs, write muxing date, write
21704 TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
21705 Create cues for audio only files.
21707 2004-08-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21709 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
21710 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
21711 Re-commit ALSA switches.
21712 * gst/adder/gstadder.c: (gst_adder_loop):
21713 64-bit fix (#151416).
21714 * gst/debug/progressreport.c: (gst_progressreport_report):
21715 64-bit fix (#151419).
21716 * gst/matroska/matroska-demux.c:
21717 (gst_matroska_demux_parse_contents):
21718 64-bit fix (#151420).
21719 * gst/playback/test3.c: (update_scale):
21720 64-bit fix (#151421).
21722 2004-08-31 Thomas Vander Stichele <thomas at apestaart dot org>
21727 === release 0.8.4 ===
21729 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
21731 * configure.ac: releasing 0.8.4, "Alias"
21733 2004-08-31 Thomas Vander Stichele <thomas at apestaart dot org>
21735 * ext/theora/Makefile.am:
21736 fix makefile. Fixes #151462.
21738 2004-08-30 Wim Taymans <wim@fluendo.com>
21740 * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
21741 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21742 (gst_multifdsink_remove_client_link),
21743 (gst_multifdsink_client_queue_buffer),
21744 (gst_multifdsink_handle_client_write):
21745 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
21746 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
21747 Fix some memory leaks.
21749 2004-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
21751 Patch by: David Schleef
21755 rename our detection macro for V4L2. Fixes #151236.
21757 2004-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
21759 Patch by: David Schleef
21762 check to define LAMEPRESET. Fixes #151232.
21764 2004-08-27 David Schleef <ds@schleef.org>
21766 * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
21767 (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
21768 (gst_glimagesink_fixate): Move local variable declarations to
21769 make gcc-2.95 happy.
21771 2004-08-27 Thomas Vander Stichele <thomas at apestaart dot org>
21774 bump nano for prerelease
21776 2004-08-27 David Schleef <ds@schleef.org>
21778 * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
21779 * sys/sunaudio/gstsunaudiosrc.c:
21780 * sys/sunaudio/gstsunaudiosrc.h:
21782 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
21784 * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
21785 handle EOS correctly
21786 * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
21787 * gst/matroska/matroska-mux.h:
21788 added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
21789 VFW compatibility mode
21791 2004-08-27 Thomas Vander Stichele <thomas at apestaart dot org>
21793 patch by: Zaheer Abbas Merali
21795 * ext/ogg/gstoggmux.c:
21796 * ext/vorbis/vorbisenc.c:
21797 * ext/vorbis/vorbisenc.h:
21800 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
21802 * gst/matroska/ebml-write.c: (gst_ebml_write_float),
21803 fix byte order reversion on little endian machines.
21804 * gst/matroska/matroska-mux.c: (audiosink_templ),
21805 (gst_matroska_mux_audio_pad_link):
21806 add TTA codec to the list of supported codecs.
21807 * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
21808 (gst_matroska_mux_start), (gst_matroska_mux_finish),
21809 (gst_matroska_mux_write_data):
21810 * gst/matroska/matroska-mux.h:
21811 write segment duration correctly, write muxing app string, fixes bugs
21812 #140897 and #140898.
21813 * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
21814 wait for all pads to be negotiated before starting to mux.
21816 2004-08-26 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21818 * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
21819 * ext/lame/gstlame.h:
21820 Added new media support to lame
21822 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
21824 * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
21825 send vorbis headers at the beginning of a stream, fixes bug #141554.
21826 Interpret BLOCKDURATION and set buffer duration accordingly, fixes
21828 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
21829 (gst_matroska_demux_plugin_init):
21830 * gst/matroska/matroska-ids.h:
21831 enable demuxing of TTA audio streams, fixes bug #148951.
21832 * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
21833 enable typefinding for TTA audio files, fixes bug #148711.
21834 * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
21835 set XVID_LOWDELAY flag for decoding so xvid always returns an image,
21836 fixes playback of packed bitstream and xvid with bframes, bug #135407.
21838 2004-08-24 Sebastien Cote <sc5@hermes.usherb.ca>
21840 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
21841 (gst_riff_read_element_data), (gst_riff_read_seek),
21842 (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
21843 #144616, patch reviewed by Ronald and committed by Christophe Fergeau
21846 2004-08-23 Iain <iaingnome@gmail.com>
21848 * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
21849 tags. They appear to be handled differently to normal.
21850 (tag_list_to_id3_tag_foreach): Ditto.
21852 2004-08-22 Wim Taymans <wim@fluendo.com>
21854 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21855 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21856 Make sure we never send -1 granulepos.
21858 2004-08-20 Wim Taymans <wim@fluendo.com>
21860 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21861 (gst_ogg_mux_loop):
21862 I will accept bitchslappings with non sharp objects.
21864 2004-08-20 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21867 Clean up the test for lame presets
21869 2004-08-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21872 * ext/lame/Makefile.am:
21873 * ext/lame/gstlame.c: (gst_lame_class_init),
21874 (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
21875 Only enable lame presets if version of lame has presets in API
21877 2004-08-19 Jan Schmidt <thaytan@mad.scientist.com>
21878 * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
21879 * gst/udp/gstudpsrc.h:
21880 Don't call gst_pad_push in a get function. Fixes #150449
21882 2004-08-18 Wim Taymans <wim@fluendo.com>
21884 * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
21885 (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
21886 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
21887 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21888 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21890 * gst/tcp/gstfdset.h:
21891 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21892 (gst_multifdsink_client_queue_buffer),
21893 (gst_multifdsink_handle_client_write):
21894 * gst/tcp/gstmultifdsink.h:
21895 Some extra checks in gstfdset.
21896 Only use send() when the fd is a socket. Don't try to
21897 read from write only fds.
21899 2004-08-18 Wim Taymans <wim@fluendo.com>
21901 * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
21902 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
21903 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21904 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21906 Add more locking and bounds checking.
21908 2004-08-18 Wim Taymans <wim@fluendo.com>
21910 * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
21911 Realloc test fdset in the lock and right before starting
21912 the poll call. Bump the limit to 4096.
21914 2004-08-17 David Schleef <ds@schleef.org>
21916 * sys/sunaudio/Makefile.am:
21917 * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
21918 of rates and channels. Make debugging less obnoxious.
21920 Patch from Balamurali Viswanathan implementing a mixer for
21921 Sun audio. (bug #144091):
21922 * sys/sunaudio/gstsunelement.c:
21923 * sys/sunaudio/gstsunelement.h:
21924 * sys/sunaudio/gstsunmixer.c:
21925 * sys/sunaudio/gstsunmixer.h:
21927 2004-08-17 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21929 * gst/audioscale/gstaudioscale.c:
21930 * gst/audioscale/gstaudioscale.h:
21931 made audioscale resample from any sample rate to any sample rate
21933 2004-08-17 Thomas Vander Stichele <thomas at apestaart dot org>
21935 * ext/libpng/gstpngdec.c:
21936 error out on unsupported types
21938 2004-08-17 Iain <iaingnome@gmail.com>
21940 * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
21941 mid_side and loose_mid_side properties if its a stereo stream.
21943 2004-08-17 Wim Taymans <wim@fluendo.com>
21945 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
21946 (theora_get_formats), (theora_dec_src_convert),
21947 (theora_dec_sink_convert), (theora_dec_src_query),
21948 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
21951 2004-08-17 Wim Taymans <wim@fluendo.com>
21953 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
21954 (gst_ogg_pad_push):
21955 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
21956 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
21957 (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
21958 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21959 Mark delta units in the muxer.
21960 Try to decode the packet after an out-of-sync error from
21963 2004-08-17 Wim Taymans <wim@fluendo.com>
21965 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21966 (gst_multifdsink_init), (gst_multifdsink_add),
21967 (gst_multifdsink_client_queue_buffer),
21968 (gst_multifdsink_set_property), (gst_multifdsink_get_property):
21969 * gst/tcp/gstmultifdsink.h:
21970 Added option to send a keyframe to clients as the first buffer.
21971 Make timeout property writable.
21973 2004-08-17 Thomas Vander Stichele <thomas at apestaart dot org>
21975 patch by: Wim Taymans
21977 * gst/tcp/gstfdset.c:
21978 * gst/tcp/gstmultifdsink.c:
21979 fix index comparison, should include 0
21981 2004-08-16 Wim Taymans <wim@fluendo.com>
21983 * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
21984 (gst_fdset_add_fd), (gst_fdset_remove_fd),
21985 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21986 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21988 copy when reallocing for poll so the select arguments don't get
21989 changed during the call
21991 2004-08-16 Wim Taymans <wim@fluendo.com>
21993 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
21994 (gst_theora_enc_class_init), (theora_enc_sink_link),
21995 (theora_buffer_from_packet), (theora_enc_chain):
21996 Fix bug where buffers were not marked as keyframes
21999 2004-08-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22001 * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
22002 (gst_lame_preset_get_type), (gst_lame_class_init):
22003 describe the enum values for vbr mode and presets more verbosely
22005 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22007 * ext/lame/gstlame.c: (gst_lame_mode_get_type),
22008 (gst_lame_quality_get_type), (gst_lame_padding_get_type),
22009 (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
22010 (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
22011 * ext/lame/gstlame.h:
22012 add preset property to lame so it can use lame presets
22014 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22016 * ext/lame/gstlame.c: (gst_lame_get_property):
22017 whoops forgot break, thanks teuf
22019 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22021 * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
22022 (gst_lame_class_init), (gst_lame_src_getcaps),
22023 (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
22024 (gst_lame_get_property), (gst_lame_setup):
22025 * ext/lame/gstlame.h:
22026 fix lame's broken vbr stuff, allow it to resample if need be, and also
22027 make xing header optional
22029 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22031 * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
22032 added getcaps function so samplerate doesnt get fixated to silly values
22034 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22036 * ext/lame/gstlame.c: (gst_lame_src_link):
22037 revert previous fix
22039 2004-08-12 Johan Dahlin <johan@gnome.org>
22041 * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
22042 checks. Doesn't matter what state we are in. Interfaces are a
22043 compile time thing, not runtime. It also broke the python bindings.
22045 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22047 * ext/lame/gstlame.c: (gst_lame_src_link):
22048 made source pad link function check if sinkpad is ok..fixes the problem
22049 where core fixates the output rate of lame stupidly
22051 2004-08-12 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
22053 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
22054 * sys/v4l/v4l_calls.c:
22055 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
22056 fix fixate function to handle nonsimple caps.
22057 remove bogus check in _link
22060 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22062 * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
22063 set default compression ratio parameter to 0.0 so bitrate parameter
22066 2004-08-11 David Schleef <ds@schleef.org>
22068 * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
22070 2004-08-11 David Schleef <ds@schleef.org>
22072 * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
22075 2004-08-11 David Schleef <ds@schleef.org>
22077 * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
22079 2004-08-11 David Schleef <ds@schleef.org>
22081 * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
22083 * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
22084 * gst-libs/gst/video/gstvideosink.c: Change copyright block to
22086 * gst/auparse/gstauparse.c: Fix plugin license field.
22087 * gst/monoscope/gstmonoscope.c: Fix plugin license field.
22088 * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
22089 * gst/rtp/gstrtp.c: Fix plugin license field.
22091 2004-08-11 Wim Taymans <wim@fluendo.com>
22093 * gst/tcp/Makefile.am:
22094 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
22095 (ensure_size), (gst_fdset_new), (gst_fdset_free),
22096 (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
22097 (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
22098 (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
22099 (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
22100 (gst_fdset_fd_can_write), (gst_fdset_wait):
22101 * gst/tcp/gstfdset.h:
22102 * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
22103 (gst_multifdsink_class_init), (gst_multifdsink_init),
22104 (gst_multifdsink_add), (gst_multifdsink_remove),
22105 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
22106 (gst_multifdsink_remove_client_link),
22107 (gst_multifdsink_handle_client_read),
22108 (gst_multifdsink_client_queue_data),
22109 (gst_multifdsink_client_queue_caps),
22110 (gst_multifdsink_client_queue_buffer),
22111 (gst_multifdsink_handle_client_write),
22112 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
22113 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
22114 (gst_multifdsink_get_property), (gst_multifdsink_init_send),
22115 (gst_multifdsink_close):
22116 * gst/tcp/gstmultifdsink.h:
22117 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
22118 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
22119 (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
22120 (gst_tcpserversink_close):
22121 * gst/tcp/gsttcpserversink.h:
22122 Abstracted away the select call, implemented poll (yes we ran into
22123 the 1024 limit in production).
22125 2004-08-11 Thomas Vander Stichele <thomas at apestaart dot org>
22127 * gst/tcp/gsttcp.c:
22128 * gst/tcp/gsttcpplugin.c:
22129 improve debuggging, remove assert
22131 2004-08-10 Wim Taymans <wim@fluendo.com>
22133 * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
22134 (gst_client_status_get_type), (gst_multifdsink_class_init),
22135 (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
22136 (gst_multifdsink_handle_client_read),
22137 (gst_multifdsink_handle_client_write),
22138 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
22139 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
22140 (gst_multifdsink_get_property):
22141 * gst/tcp/gstmultifdsink.h:
22142 * gst/tcp/gsttcp-marshal.list:
22143 Starting to prepare for specifying buffer time in other units
22144 than buffers. Expose remove reason in signal.
22146 2004-08-10 Wim Taymans <wim@fluendo.com>
22148 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
22149 (gst_multifdsink_remove), (gst_multifdsink_clear),
22150 (gst_multifdsink_remove_client_link),
22151 (gst_multifdsink_handle_client_read),
22152 (gst_multifdsink_client_queue_data),
22153 (gst_multifdsink_client_queue_buffer),
22154 (gst_multifdsink_handle_client_write),
22155 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
22156 (gst_multifdsink_chain), (gst_multifdsink_close):
22157 * gst/tcp/gstmultifdsink.h:
22158 Added more debugging info. Changed the way clients are
22159 removed from the lists. Fixed a bug where a bad file descriptor
22160 could cause many clients to be removed.
22162 2004-08-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
22164 * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
22165 allow all pixel-aspect-ratios, not just 1:1
22167 2004-08-09 David Schleef <ds@schleef.org>
22169 * sys/glsink/ARB_multitexture.h: Remove old files.
22170 * sys/glsink/EXT_paletted_texture.h:
22171 * sys/glsink/NV_register_combiners.h:
22172 * sys/glsink/gstgl_nvimage.c:
22173 * sys/glsink/gstgl_pdrimage.c:
22174 * sys/glsink/gstgl_rgbimage.c:
22175 * sys/glsink/gstglsink.c:
22176 * sys/glsink/gstglsink.h:
22177 * sys/glsink/gstglxwindow.c:
22178 * sys/glsink/regcomb_yuvrgb.c:
22180 2004-08-09 David Schleef <ds@schleef.org>
22182 Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
22183 GL sink plugin. (Bug #147302)
22185 * configure.ac: Test for OpenGL
22186 * sys/Makefile.am: Use test for OpenGL
22187 * sys/glsink/Makefile.am:
22188 * sys/glsink/glimagesink.c: rewrite
22189 * sys/glsink/glimagesink.h: rewrite
22191 2004-08-09 David Schleef <ds@schleef.org>
22193 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init): Only allow
22195 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
22196 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
22197 * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
22199 2004-08-09 Wim Taymans <wim@fluendo.com>
22201 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22202 (gst_multifdsink_add), (gst_multifdsink_get_stats),
22203 (gst_multifdsink_client_remove),
22204 (gst_multifdsink_handle_client_read),
22205 (gst_multifdsink_handle_client_write),
22206 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22207 Do a bit more logging, make the client_read code more robust.
22209 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22211 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
22212 (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
22213 (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
22214 (gst_jpegdec_init), (gst_jpegdec_chain):
22215 * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
22216 (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
22217 cleanups, debugging fixes and memleak plugging
22219 2004-08-09 Wim Taymans <wim@fluendo.com>
22221 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22222 (theora_get_formats), (theora_dec_src_convert),
22223 (theora_dec_sink_convert), (theora_dec_src_query),
22224 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
22225 (theora_dec_change_state):
22226 Don't crash on missing header packets.
22228 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22232 Added Albanian translation (Laurent Dhima)
22236 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22238 * ext/lame/gstlame.c:
22241 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22243 * sys/ximage/ximagesink.c:
22244 * sys/xvimage/xvimagesink.c:
22245 assign all TOO_LAZY's to a real category. Thanks to Warthy Warthog.
22247 2004-08-06 Wim Taymans <wim@fluendo.com>
22249 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22250 (gst_multifdsink_add), (gst_multifdsink_get_stats),
22251 (gst_multifdsink_client_remove),
22252 (gst_multifdsink_handle_client_read),
22253 (gst_multifdsink_handle_client_write),
22254 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22255 Make sure we don't try to read more from a client that what
22256 ioctl says us or we deadlock.
22258 2004-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
22260 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
22261 (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
22262 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
22263 decouple running_time and n_frames so it can handle changing
22264 framerate while running
22266 2004-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
22270 updated translations
22272 2004-08-04 Benjamin Otte <otte@gnome.org>
22274 * gst/videotestsrc/gstvideotestsrc.c:
22275 (gst_videotestsrc_get_capslist), (generate_capslist),
22277 generate the list of supported caps at startup and reuse it instead
22278 of always generating it
22280 2004-07-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
22282 * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
22283 whoops, last checkin broke normal build
22285 2004-08-03 Benjamin Otte <otte@gnome.org>
22287 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
22288 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
22289 (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
22290 (gst_alsa_mixer_get_option):
22291 * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
22292 (dvdnavsrc_print_event):
22293 * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
22294 * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
22295 (gst_ogg_mux_pad_unlink):
22296 * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
22297 (gst_multipart_mux_pad_unlink):
22298 * gst/videofilter/gstvideobalance.c:
22299 (gst_videobalance_colorbalance_set_value):
22300 * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
22301 (gst_videomixer_pad_unlink):
22303 * sys/oss/gstossmixer.c:
22304 * sys/v4l/gstv4lcolorbalance.c:
22305 * sys/v4l/gstv4ltuner.c:
22306 * sys/v4l/v4lsrc_calls.c:
22307 * sys/v4l2/gstv4l2colorbalance.c:
22308 * sys/v4l2/gstv4l2tuner.c:
22309 compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
22311 2004-08-03 Benjamin Otte <otte@gnome.org>
22313 * examples/dynparams/filter.c: (ui_control_create):
22314 * examples/gstplay/player.c: (print_tag):
22315 * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
22316 * ext/gdk_pixbuf/gstgdkanimation.c:
22317 (gst_gdk_animation_iter_may_advance):
22318 * ext/jack/gstjack.c: (gst_jack_request_new_pad):
22319 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
22320 (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
22321 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
22322 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
22323 * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
22324 * gst-libs/gst/media-info/media-info-test.c: (print_tag):
22325 * gst/sine/demo-dparams.c: (main):
22326 * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
22327 * testsuite/alsa/formats.c: (create_pipeline):
22328 * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
22329 fixes for G_DISABLE_ASSERT and friends
22330 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
22331 (mp3_type_frame_length_from_header), (mp3_type_find),
22333 require mp3 typefinding to have at least MIN_HEADERS valid headers
22334 add typefinding for AAC adts files
22336 2004-08-04 Jan Schmidt <thaytan@mad.scientist.com>
22338 * sys/ximage/ximagesink.c:
22339 (gst_ximagesink_calculate_pixel_aspect_ratio):
22340 * sys/xvimage/xvimagesink.c:
22341 (gst_xvimagesink_calculate_pixel_aspect_ratio):
22342 Make sure we calculate pixel-aspect-ratio using floating point maths
22344 2004-08-03 Thomas Vander Stichele <thomas at apestaart dot org>
22347 updated translation
22349 2004-08-03 Thomas Vander Stichele <thomas at apestaart dot org>
22351 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
22352 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
22353 add debugging for display PAR calculation
22355 2004-08-02 David Schleef <ds@schleef.org>
22357 * configure.ac: Fix mikmod CFLAGS.
22359 2004-07-27 Benjamin Otte <otte@gnome.org>
22361 * gst/audioscale/gstaudioscale.c:
22362 - fix templates to only support S16, it's the only format that works
22363 - make caps nego code use try_set_caps_nonfixed and fixation instead
22364 of try_set_caps twice, which is not nice for autopluggers
22365 - change rank to secondary, so autopluggers can pick it up after
22368 2004-08-02 Iain <iain@prettypeople.org>
22370 * gst/interleave/interleave.c (interleave_init),
22371 (interleave_request_new_pad),
22372 (interleave_pad_removed),
22373 (interleave_buffered_loop): Use the real pad count, not the artificial
22376 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22378 * configure.ac: bump nano back to development
22380 === release 0.8.3 ===
22382 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22384 * configure.ac: releasing 0.8.3, "Water"
22386 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22388 * sys/xvimage/xvimagesink.c:
22389 (gst_xvimagesink_calculate_pixel_aspect_ratio),
22390 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
22391 (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
22392 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22393 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22394 * sys/xvimage/xvimagesink.h:
22395 apply similar PAR fixes as to ximagesink
22397 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22399 patch from: Benjamin Otte
22401 * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
22402 add link function to lame. Fixes #148986.
22404 2004-08-02 Johan Dahlin <johan@gnome.org>
22406 * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
22409 2004-07-30 David Schleef <ds@schleef.org>
22411 * gst/videomixer/Makefile.am: Fix things that should have been
22412 fixed in the last checkin.
22414 2004-07-30 David Schleef <ds@schleef.org>
22416 * gst/multipart/Makefile.am: Fix things that should have been
22417 fixed in the last checkin.
22419 2004-07-30 David Schleef <ds@schleef.org>
22421 * testsuite/multifilesink/Makefile.am: Fix unused variable.
22423 2004-07-30 Thomas Vander Stichele <thomas at apestaart dot org>
22426 bump nano for prerelease
22438 2004-07-30 Wim Taymans <wim@fluendo.com>
22440 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22441 (gst_multifdsink_add), (gst_multifdsink_remove),
22442 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
22443 (gst_multifdsink_client_remove),
22444 (gst_multifdsink_handle_client_write),
22445 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22446 * gst/tcp/gstmultifdsink.h:
22447 Recover from a select with a bad file descriptor by removing
22450 2004-07-30 Thomas Vander Stichele <thomas at apestaart dot org>
22453 fix requirement of core
22454 * gst-libs/gst/play/play.c: (gst_play_error_plugin),
22455 (gst_play_pipeline_setup):
22456 don't use colorspace element. do use hermescolorspace element.
22457 make macro to get a colorspace element.
22458 mark strings for translation.
22470 update translations
22472 2004-07-30 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22474 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
22475 fix default for newmedia flag
22477 2004-07-30 Wim Taymans <wim@fluendo.com>
22479 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22480 (gst_theora_dec_init), (theora_get_formats),
22481 (theora_dec_src_convert), (theora_dec_sink_convert),
22482 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22483 (theora_dec_chain), (theora_dec_set_property),
22484 (theora_dec_get_property):
22485 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
22486 (gst_theora_enc_class_init), (gst_theora_enc_init),
22487 (theora_enc_sink_link), (theora_enc_chain),
22488 (theora_enc_set_property), (theora_enc_get_property):
22489 Added cropping option to theora decoder.
22490 Added border option to theora encoder.
22492 2004-07-30 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22494 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22495 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22496 (gst_pngenc_set_property):
22497 * ext/libpng/gstpngenc.h:
22498 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
22500 2004-07-30 Wim Taymans <wim@fluendo.com>
22502 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
22503 (theora_enc_sink_link), (theora_enc_chain),
22504 (theora_enc_set_property), (theora_enc_get_property):
22505 Fix encoding of non-multiple-of-16 video.
22507 2004-07-29 David Schleef <ds@schleef.org>
22509 * configure.ac: make test for audiofile more strict
22511 2004-07-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
22513 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
22514 give different names to typefind functions
22516 2004-07-28 Thomas Vander Stichele <thomas at apestaart dot org>
22518 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22519 (gst_ximagesink_calculate_pixel_aspect_ratio),
22520 (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
22521 (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
22522 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
22523 (gst_ximagesink_get_property), (gst_ximagesink_init):
22524 * sys/ximage/ximagesink.h:
22525 allocate PAR's dynamically.
22526 use autodetected PAR if no object-set PAR is given.
22527 add workaround for directfb's X not setting physical size.
22528 fix to xvimagesink will follow tomorrow.
22530 2004-07-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22532 * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
22533 * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
22534 (gst_shout2send_get_type), (gst_shout2send_set_clock),
22535 (gst_shout2send_class_init), (gst_shout2send_init),
22536 (set_shout_metadata), (gst_shout2send_set_metadata),
22537 (gst_shout2send_chain), (gst_shout2send_set_property),
22538 (gst_shout2send_get_property), (gst_shout2send_connect),
22539 (gst_shout2send_change_state):
22540 * ext/shout2/gstshout2.h:
22541 - fix for sending mp3 audio to icecast2 server, if pad link function not
22542 called before PAUSED state
22543 - added option to use GStreamer clock sync (as opposed to libshout's own sync)
22544 - added tagging support for mp3 audio broadcasted
22545 * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
22548 2004-07-28 Wim Taymans <wim@fluendo.com>
22550 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
22551 (gst_ogg_demux_push):
22552 Return query failure when we don't know the length of
22553 an ogg stream insteda of returning TRUE with a bogus value.
22555 2004-07-28 Wim Taymans <wim@fluendo.com>
22557 * ext/theora/theoradec.c: (theora_get_formats),
22558 (theora_dec_src_convert), (theora_dec_sink_convert),
22559 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22560 (theora_dec_chain):
22561 Don't screw up the 1 Chroma for 1 luma sample situation when we
22562 have an odd offset/width by adding a black border in those cases.
22564 2004-07-28 Wim Taymans <wim@fluendo.com>
22566 * ext/theora/theoradec.c: (theora_get_formats),
22567 (theora_dec_src_convert), (theora_dec_sink_convert),
22568 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22569 (theora_dec_chain):
22570 * ext/theora/theoraenc.c: (theora_enc_sink_link):
22571 Added first attempt at cropping of the image as required by the
22572 theora spec. We need more properties in the caps (offset_x,
22573 offset_y,stride) to implement this correctly.
22575 2004-07-28 Jan Schmidt <thaytan@mad.scientist.com>
22577 * ext/dvdnav/README:
22578 Update the README to use dvddemux
22579 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
22580 Ensure getcaps returns a subset of the template caps
22581 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
22582 (gst_mpeg2subt_init):
22583 Ensure getcaps returns a subset of the template caps
22584 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
22585 (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
22586 (gst_dvd_demux_get_subpicture_stream),
22587 (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
22588 * gst/mpegstream/gstdvddemux.h:
22589 Set the explicit caps on the current_video pad before pushing
22591 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
22592 (gst_mpeg_demux_get_audio_stream):
22593 Free caps used to gst_pad_set_explicit_caps, which takes a const
22596 2004-07-28 Thomas Vander Stichele <thomas at apestaart dot org>
22598 * configure.ac: update GStreamer requirement to 0.8.4 because of
22601 2004-07-28 Wim Taymans <wim@fluendo.com>
22603 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
22604 (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
22605 Add the pad to the element after setting up the caps. This
22606 makes it a lot easier to autoplug.
22608 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
22610 * gst/median/gstmedian.c:
22611 * gst/mpeg2subt/gstmpeg2subt.c:
22612 * gst/mpegaudioparse/gstmpegaudioparse.c:
22613 * gst/mpegstream/gstdvddemux.c:
22614 * gst/mpegstream/gstmpegdemux.c:
22615 * gst/mpegstream/gstmpegpacketize.c:
22616 * gst/rtjpeg/gstrtjpeg.c:
22617 * gst/rtjpeg/gstrtjpegdec.c:
22618 * gst/rtjpeg/gstrtjpegenc.c:
22619 * gst/sine/gstsinesrc.c:
22620 * gst/smooth/gstsmooth.c:
22621 * gst/smpte/gstsmpte.c:
22622 * gst/smpte/gstsmpte.h:
22623 * gst/stereo/gststereo.c:
22624 * gst/videofilter/gstgamma.c:
22625 * gst/videofilter/gstvideobalance.c:
22626 * gst/videofilter/gstvideofilter.c:
22627 * gst/videofilter/gstvideoflip.c:
22628 * gst/videoscale/gstvideoscale.c:
22629 * gst/videoscale/videoscale.c:
22630 * gst/videotestsrc/gstvideotestsrc.c:
22631 * gst/videotestsrc/videotestsrc.c:
22632 * gst/wavenc/gstwavenc.c:
22633 * gst/wavparse/gstwavparse.c:
22634 fix local includes and 64 bits constants
22636 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
22639 * gst-libs/gst/*/*.vcproj:
22641 more working plugins
22643 2004-07-27 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22645 * testsuite/alsa/Makefile.am:
22646 * testsuite/alsa/srcstate.c:
22647 add test for alsasrc changing state
22649 2004-07-27 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22651 * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
22653 * gst/silence/gstsilence.h:
22654 fix silence generation for 16bit raw audio
22656 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22658 * gst/matroska/matroska-demux.c:
22659 (gst_matroska_demux_parse_metadata),
22660 (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
22661 * gst/mpegaudio/common.c:
22662 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
22663 (gst_videoscale_getcaps), (gst_videoscale_link),
22664 (gst_videoscale_src_fixate), (gst_videoscale_init),
22665 (gst_videoscale_finalize):
22666 * gst/videoscale/gstvideoscale.h:
22667 * gst/videotestsrc/gstvideotestsrc.c:
22668 (gst_videotestsrc_get_capslist):
22669 * gst/wavenc/gstwavenc.c:
22670 * sys/oss/gstossmixer.c: (fill_labels):
22671 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22672 (gst_ximagesink_handle_xevents),
22673 (gst_ximagesink_calculate_pixel_aspect_ratio),
22674 (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
22675 (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
22676 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
22677 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
22678 (gst_ximagesink_init), (gst_ximagesink_class_init):
22679 * sys/ximage/ximagesink.h:
22680 * sys/xvimage/xvimagesink.c:
22681 (gst_xvimagesink_calculate_pixel_aspect_ratio),
22682 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
22683 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
22684 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22685 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22686 * sys/xvimage/xvimagesink.h:
22687 first batch of pixel aspect ratio commits.
22689 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22691 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22692 (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
22693 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
22694 handle stride, needs work if we want to move stride handling
22695 upstream, but works correctly for our purposes.
22697 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22699 * gst/videoscale/README:
22700 add testing examples
22701 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
22702 (gst_videoscale_chain):
22703 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22704 (gst_videoscale_get_size):
22705 add get_size function that handles stride like videotestsrc.
22706 fixes conversion for YUV formats for as much as I can test them.
22708 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22710 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22711 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
22712 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22713 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
22714 (gst_xvimagesink_xvimage_put):
22715 further cleanups, logging, error handling and synchronizing
22717 2004-07-27 Wim Taymans <wim@fluendo.com>
22719 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
22720 (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
22721 (gst_videomixer_pad_set_property),
22722 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
22723 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
22724 (gst_videomixer_class_init), (gst_videomixer_init),
22725 (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
22726 (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
22727 (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
22728 (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
22729 (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
22730 (gst_videomixer_loop), (plugin_init):
22731 Be a nicer negotiation citizen and provide a getcaps function on
22732 the srcpad. This also fixes a crash when resizing.
22734 2004-07-27 Julien MOUTTE <julien@moutte.net>
22736 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22737 (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
22739 2004-07-27 Wim Taymans <wim@fluendo.com>
22741 * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
22742 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22743 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22744 (gst_pngenc_set_property):
22745 * ext/libpng/gstpngenc.h:
22746 Added snapshot property to pngenc.
22747 removed g_print from pngdec
22749 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
22751 * gst/ac3parse/ac3parse.vcproj
22752 * gst/adder/adder.vcproj
22753 * gst/alpha/alpha.vcproj
22754 * gst/alpha/alphacolor.vcproj
22755 * gst/asfdemux/asf.vcproj
22756 * gst/audioconvert/audioconvert.vcproj
22757 * gst/audiorate/audiorate.vcproj
22758 * gst/audioscale/audioscale.vcproj
22759 * gst/auparse/auparse.vcproj
22760 * gst/avi/avi.vcproj
22761 * gst/cdxaparse/cdxaparse.vcproj
22762 * gst/chart/chart.vcproj
22763 * gst/colorspace/colorspace.vcproj
22764 * gst/cutter/cutter.vcproj
22765 * gst/debug/debug.vcproj
22766 * gst/debug/efence.vcproj
22767 * gst/debug/navigationtest.vcproj
22768 * gst/deinterlace/deinterlace.vcproj
22769 * gst/effectv/effectv.vcproj
22770 * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
22771 * gst/filter/filter.vcproj
22772 * gst/flx/flxdec.vcproj
22773 * gst/goom/goom.vcproj
22774 * gst/interleave/interleave.vcproj
22775 * gst/law/alaw.vcproj
22776 * gst/law/mulaw.vcproj
22777 * gst/matroska/matroska.vcproj
22778 * gst/median/median.vcproj
22779 * gst/mixmatrix/mixmatrix.vcproj
22780 * gst/mpeg1sys/mpeg1systemencode.vcproj
22781 * gst/mpeg1videoparse/mp1videoparse.vcproj
22782 * gst/mpeg2sub/mpeg2subt.vcproj
22783 * gst/mpegaudio/mpegaudio.vcproj
22784 * gst/mpegaudioparse/mpegaudioparse.vcproj
22785 * gst/mpegstream/mpegstream.vcproj
22786 * gst/multifilesink/multifilesink.vcproj
22787 * gst/multipart/multipart.vcproj
22788 * gst/oneton/oneton.vcproj
22789 * gst/overlay/overlay.vcproj
22790 * gst/passthrough/passthrough.vcproj
22791 * gst/qtdemux/qtdemux.vcproj
22792 * gst/realmedia/rmdemux.vcproj
22793 * gst/rtjpeg/rtjpeg.vcproj
22794 * gst/rtp/rtp.vcproj
22795 * gst/silence/silence.vcproj
22796 * gst/sine/sinesrc.vcproj
22797 * gst/smooth/smooth.vcproj
22798 * gst/smpte/smpte.vcproj
22799 * gst/spectrum/spectrum.vcproj
22800 * gst/speed/speed.vcproj
22801 * gst/stereo/stereo.vcproj
22802 * gst/switch/switch.vcproj
22803 * gst/tags/tagedit.vcproj
22804 * gst/tcp/tcp.vcproj
22805 * gst/typefind/typefindfunctions.vcproj
22806 * gst/udp/udp.vcproj
22807 * gst/videobox/videobox.vcproj
22808 * gst/videocrop/videocrop.vcproj
22809 * gst/videodrop/videodrop.vcproj
22810 * gst/videofilter/gamma.vcproj
22811 * gst/videofilter/videobalance.vcproj
22812 * gst/videofilter/videofilter.vcproj
22813 * gst/videofilter/videoflip.vcproj
22814 * gst/videoflip/videoflip.vcproj
22815 * gst/videomixer/videomixer.vcproj
22816 * gst/videorate/videorate.vcproj
22817 * gst/videoscale/videoscale.vcproj
22818 * gst/videotestsrc/videotestsrc.vcproj
22819 * gst/virtualdub/virtualdub.vcproj
22820 * gst/volenv/volenv.vcproj
22821 * gst/volume/volume.vcproj
22822 * gst/wavenc/wavenc.vcproj
22823 * gst/wavparse/wavparse.vcproj
22824 * gst/y4m/y4menc.vcproj
22825 * gst-libs/gst/audio/audio.vcproj
22826 * gst-libs/gst/audio/audiofilter.vcproj
22827 * gst-libs/gst/colorbalance/colorbalance.vcproj
22828 * gst-libs/gst/idct/idtc.vcproj
22829 * gst-libs/gst/media-info/media-info.vcproj
22830 * gst-libs/gst/mixer/mixer.vcproj
22831 * gst-libs/gst/navigation/navigation.vcproj
22832 * gst-libs/gst/play/play.vcproj
22833 * gst-libs/gst/propertyprobe/propertyprobe.vcproj
22834 * gst-libs/gst/resample/resample.vcproj
22835 * gst-libs/gst/riff/riff.vcproj
22836 * gst-libs/gst/tuner/tuner.vcproj
22837 * gst-libs/gst/video/video.vcproj
22838 * gst-libs/gst/xoverlay/xoverlay.vcproj
22839 avoid problems with math.h, fix release dependancy
22840 rename GStreamer-0.8.lib to libgstreamer.lib
22842 2004-07-27 Julien MOUTTE <julien@moutte.net>
22844 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
22845 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
22846 the atom is not available we have to unlock the mutex. Fixes #148023
22848 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22850 * gst-libs/gst/media-info/media-info.h:
22851 issue for a vararg macro with MSVC
22853 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22855 * gst/effectv/effectv.vcproj
22856 * gst-libs/gst/idct/idct.vcproj:
22857 * gst-libs/gst/media-info/media-info.vcproj:
22858 * gst-libs/gst/navigation/navigation.vcproj:
22859 * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
22860 * gst-libs/gst/video/video.vcproj:
22861 * gst-libs/gst/xoverlay/xoverlay.vcproj:
22862 fixes for build problems
22864 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22866 * gst-libs/gst/audio/audio.def:
22867 * gst-libs/gst/audio/riff.def:
22868 add some definitions needed by plugins
22870 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22872 * gst/asfdemux/gstasfmux.c
22873 Fix some 64 bits constants to be glib friendly
22875 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22877 * gst/ac3parse/gstac3parse.c
22878 * gst/audioscale/gstaudioscale.c
22879 * gst/auparse/gstauparse.c
22880 * gst/colorspace/gstcolorspace.c
22881 * gst/colorspace/yuv2rgb.h
22882 local include fixes
22884 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22887 add more plugins to the build
22889 2004-07-26 Julien MOUTTE <julien@moutte.net>
22891 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22892 (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
22894 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22896 * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
22897 (gst_level_set_property), (gst_level_get_property),
22898 (gst_level_base_init), (gst_level_class_init):
22899 add debugging categories. cleanups.
22901 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22903 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22904 (gst_videoscale_planar411), (gst_videoscale_planar400),
22905 (gst_videoscale_packed422), (gst_videoscale_packed422rev),
22906 (gst_videoscale_scale_nearest_str1),
22907 (gst_videoscale_scale_nearest_str2),
22908 (gst_videoscale_scale_nearest_str4),
22909 (gst_videoscale_scale_nearest_16bit),
22910 (gst_videoscale_scale_nearest_24bit):
22911 fixed stride issues
22912 tested with 320x240 -> 321, 322, 324 x240
22913 tested with YV12, I420, YUY2, UYVY
22914 fixed packed422rev (don't think it could have worked before)
22915 by testing with UYVY
22917 2004-07-26 Benjamin Otte <otte@gnome.org>
22919 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
22920 (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
22922 add debugging category, add error checks like checking return values
22923 of setup calls, make sure it still works after
22924 PLAYING=>NULL=>PLAYING, fix encoding of mono streams
22926 2004-07-26 Wim Taymans <wim@fluendo.com>
22928 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
22929 (gst_mpeg_demux_get_audio_stream),
22930 (gst_mpeg_demux_process_private):
22931 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
22932 Check for error codes from the negotiation functions. Make sure
22933 we really set the pad caps when a new pad is created.
22935 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22937 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
22938 (gst_ffmpeg_caps_to_pix_fmt):
22939 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
22940 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22941 (gst_ffmpegcolorspace_pad_link):
22942 don't make function do two things at the same time without reason.
22944 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22946 * gst/ac3parse/ac3parse.vcproj
22947 * gst/adder/adder.vcproj
22948 * gst/alpha/alpha.vcproj
22949 * gst/alpha/alphacolor.vcproj
22950 * gst/asfdemux/asf.vcproj
22951 * gst/audioconvert/audioconvert.vcproj
22952 * gst/audiorate/audiorate.vcproj
22953 * gst/audioscale/audioscale.vcproj
22954 * gst/auparse/auparse.vcproj
22955 * gst/avi/avi.vcproj
22956 * gst/cdxaparse/cdxaparse.vcproj
22957 * gst/chart/chart.vcproj
22958 * gst/colorspace/colorspace.vcproj
22959 * gst/cutter/cutter.vcproj
22960 * gst/debug/debug.vcproj
22961 * gst/debug/efence.vcproj
22962 * gst/debug/navigationtest.vcproj
22963 * gst/deinterlace/deinterlace.vcproj
22964 * gst/effectv/effectv.vcproj
22965 * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
22966 * gst/filter/filter.vcproj
22967 * gst/flx/flxdec.vcproj
22968 * gst/goom/goom.vcproj
22969 * gst/interleave/interleave.vcproj
22970 * gst/law/alaw.vcproj
22971 * gst/law/mulaw.vcproj
22972 * gst/matroska/matroska.vcproj
22973 * gst/median/median.vcproj
22974 * gst/mixmatrix/mixmatrix.vcproj
22975 * gst/mpeg1sys/mpeg1systemencode.vcproj
22976 * gst/mpeg1videoparse/mp1videoparse.vcproj
22977 * gst/mpeg2sub/mpeg2subt.vcproj
22978 * gst/mpegaudio/mpegaudio.vcproj
22979 * gst/mpegaudioparse/mpegaudioparse.vcproj
22980 * gst/mpegstream/mpegstream.vcproj
22981 * gst/multifilesink/multifilesink.vcproj
22982 * gst/multipart/multipart.vcproj
22983 * gst/oneton/oneton.vcproj
22984 * gst/overlay/overlay.vcproj
22985 * gst/passthrough/passthrough.vcproj
22986 * gst/qtdemux/qtdemux.vcproj
22987 * gst/realmedia/rmdemux.vcproj
22988 * gst/rtjpeg/rtjpeg.vcproj
22989 * gst/rtp/rtp.vcproj
22990 * gst/silence/silence.vcproj
22991 * gst/sine/sinesrc.vcproj
22992 * gst/smooth/smooth.vcproj
22993 * gst/smpte/smpte.vcproj
22994 * gst/spectrum/spectrum.vcproj
22995 * gst/speed/speed.vcproj
22996 * gst/stereo/stereo.vcproj
22997 * gst/switch/switch.vcproj
22998 * gst/tags/tagedit.vcproj
22999 * gst/tcp/tcp.vcproj
23000 * gst/typefind/typefindfunctions.vcproj
23001 * gst/udp/udp.vcproj
23002 * gst/videobox/videobox.vcproj
23003 * gst/videocrop/videocrop.vcproj
23004 * gst/videodrop/videodrop.vcproj
23005 * gst/videofilter/gamma.vcproj
23006 * gst/videofilter/videobalance.vcproj
23007 * gst/videofilter/videofilter.vcproj
23008 * gst/videofilter/videoflip.vcproj
23009 * gst/videoflip/videoflip.vcproj
23010 * gst/videomixer/videomixer.vcproj
23011 * gst/videorate/videorate.vcproj
23012 * gst/videoscale/videoscale.vcproj
23013 * gst/videotestsrc/videotestsrc.vcproj
23014 * gst/virtualdub/virtualdub.vcproj
23015 * gst/volenv/volenv.vcproj
23016 * gst/volume/volume.vcproj
23017 * gst/wavenc/wavenc.vcproj
23018 * gst/wavparse/wavparse.vcproj
23019 * gst/y4m/y4menc.vcproj
23020 more plugins supported under windows
23022 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
23024 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
23025 (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
23026 (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
23027 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
23028 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
23029 Add debugging statements. Use the sizes as returned by the
23030 *CreateImage calls.
23032 2004-07-26 Johan Dahlin <johan@gnome.org>
23034 * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
23035 the pad is negotiated.
23037 * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
23039 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
23041 * gst-libs/gst/colorbalance/colorbalance.vcproj:
23042 * gst-libs/gst/idct/idct.vcproj:
23043 * gst-libs/gst/media-info/media-info.vcproj:
23044 * gst-libs/gst/mixer/mixer.vcproj:
23045 * gst-libs/gst/navigation/navigation.vcproj:
23046 * gst-libs/gst/play/play.vcproj:
23047 * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
23048 * gst-libs/gst/resample/resample.vcproj:
23049 * gst-libs/gst/tuner/tuner.vcproj:
23050 * gst-libs/gst/video/video.vcproj:
23051 * gst-libs/gst/xoverlay/xoverlay.vcproj:
23052 more plugins supported under windows
23054 2004-07-25 Iain <iain@prettypeople.org>
23056 * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
23057 pad now rather than when the pad is created because state changes wipe
23058 explicit caps (fixes #148043).
23060 2004-07-25 Sebastien Cote <sc5@hermes.usherb.ca>
23062 reviewed by Benjamin Otte <otte@gnome.org>
23064 * ext/mad/gstmad.c:
23065 fix mad plugin crashing on Sun (fixes #148289)
23067 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23070 * gst/avi/avi.vcproj:
23071 * gst/matroska/matroska.def:
23072 * gst/matroska/matroska.vcproj:
23073 remove unused .def files
23075 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23077 * gst-libs/gst/audio/gstaudiofilter.c:
23078 Clean the local include
23080 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23083 * gst-libs/gst/audio/audio.def:
23084 * gst-libs/gst/audio/audio.vcproj:
23085 * gst-libs/gst/audio/audiofilter.vcproj:
23086 * gst-libs/gst/audio/riff.def:
23087 * gst-libs/gst/audio/riff.vcproj:
23088 * gst-libs/gst/gst-libs.def:
23089 * gst-libs/gst/gst-libs.vcproj:
23090 * gst/avi/avi.vcproj:
23091 * gst/avi/avi.vcproj:
23092 Copy the files where needed after building, cleaner projects
23094 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23096 * gst/matroska/ebml-write.c:
23097 Fix some 64 bits constants to be glib friendly
23099 2004-07-24 Steve Lhomme <steve.lhomme@free.fr>
23102 * gst-libs/gst/gst-libs.def:
23103 * gst-libs/gst/gst-libs.vcproj:
23104 * gst/matroska/matroska.def:
23105 * gst/matroska/matroska.vcproj:
23106 Add the preliminary canvas to build plugins on Win32
23108 2004-07-23 Benjamin Otte <otte@gnome.org>
23110 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
23111 don't enfore negotiation from source side, it breaks
23112 sinesrc ! audioconvert ! osssink
23114 2004-07-22 David Schleef <ds@schleef.org>
23116 * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
23117 for ELF files, since they can easily be recognized as audio/mpeg.
23120 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
23122 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
23123 (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
23124 (gst_videoscale_scale_nearest_24bit),
23125 (gst_videoscale_scale_nearest_16bit):
23126 fix 16bit and 24bit for stride (24bit might need testing)
23127 don't pretend we do more than one algorithm
23129 2004-07-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
23133 * gst/multifilesink/Makefile.am:
23134 * gst/multifilesink/gstmultifilesink.c:
23135 (gst_multifilesink_get_formats),
23136 (gst_multifilesink_get_query_types), (_do_init),
23137 (gst_multifilesink_base_init), (gst_multifilesink_class_init),
23138 (gst_multifilesink_init), (gst_multifilesink_dispose),
23139 (gst_multifilesink_set_location), (gst_multifilesink_set_property),
23140 (gst_multifilesink_get_property), (gst_multifilesink_open_file),
23141 (gst_multifilesink_close_file), (gst_multifilesink_next_file),
23142 (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
23143 (gst_multifilesink_chain), (gst_multifilesink_change_state),
23144 (gst_multifilesink_uri_get_type),
23145 (gst_multifilesink_uri_get_protocols),
23146 (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
23147 (gst_multifilesink_uri_handler_init), (plugin_init):
23148 * gst/multifilesink/gstmultifilesink.h:
23149 * testsuite/Makefile.am:
23150 * testsuite/multifilesink/Makefile.am:
23151 * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
23152 (gst_newmedia_class_init), (gst_newmedia_init),
23153 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
23154 (newfile_signal), (test_signal), (main):
23155 multifilesink plugin for creating new files every time a new media
23156 discontinuity event occurs
23158 2004-07-22 Wim Taymans <wim@fluendo.com>
23160 * gst/alpha/Makefile.am:
23161 * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
23162 (gst_alpha_color_base_init), (gst_alpha_color_class_init),
23163 (gst_alpha_color_init), (gst_alpha_color_set_property),
23164 (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
23165 (transform), (gst_alpha_color_chain),
23166 (gst_alpha_color_change_state), (plugin_init):
23167 Stupid plugin to to RGBA to AYUV conversion because none of
23168 the colorspace plugins can handle that yet.
23170 2004-07-22 Wim Taymans <wim@fluendo.com>
23172 * examples/seeking/seek.c: (update_scale), (main):
23173 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23174 (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
23175 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
23176 (gst_decode_bin_init), (gst_decode_bin_dispose),
23177 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23178 (no_more_pads), (close_link), (type_found),
23179 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23181 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23182 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23183 (gst_play_base_bin_dispose), (queue_overrun),
23184 (gen_preroll_element), (remove_prerolls), (unknown_type),
23185 (no_more_pads), (new_stream), (setup_source),
23186 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
23187 (play_base_eos), (gst_play_base_bin_change_state),
23188 (gst_play_base_bin_add_element),
23189 (gst_play_base_bin_remove_element),
23190 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23191 (gst_play_base_bin_unlink_stream),
23192 (gst_play_base_bin_get_streaminfo):
23193 * gst/playback/gstplaybin.c: (gen_video_element),
23194 (gen_audio_element):
23195 * gst/playback/gststreaminfo.h:
23196 More playback updates, attempt to fix things after the state change
23199 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
23201 * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
23202 (gst_videoscale_scale_nearest_16bit):
23205 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
23207 * gst/videotestsrc/gstvideotestsrc.c:
23208 (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
23209 (gst_videotestsrc_init), (gst_videotestsrc_get),
23210 (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
23211 (gst_videotestsrc_get_property):
23212 * gst/videotestsrc/gstvideotestsrc.h:
23213 * gst/videotestsrc/videotestsrc.c:
23214 * gst/videotestsrc/videotestsrc.h:
23215 cleanup and commenting
23217 2004-07-21 Wim Taymans <wim@fluendo.com>
23219 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
23220 (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
23221 (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
23222 (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
23223 (_find_chain_get_unknown_part), (_find_streams_check),
23224 (gst_ogg_demux_push), (gst_ogg_pad_push):
23225 * ext/theora/theoradec.c: (theora_get_formats),
23226 (theora_dec_src_convert), (theora_dec_sink_convert),
23227 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
23228 (theora_dec_chain):
23229 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
23230 (vorbis_dec_convert), (vorbis_dec_src_query),
23231 (vorbis_dec_src_event), (vorbis_dec_event):
23232 More seeking fixes, oggdemux now supports seeking to time and
23233 uses the downstream element to convert granulepos to time.
23234 Seeking in theora-only ogg files now works.
23236 2004-07-21 Wim Taymans <wim@fluendo.com>
23238 * ext/theora/theoradec.c: (gst_theora_dec_init),
23239 (theora_get_formats), (theora_get_event_masks),
23240 (theora_get_query_types), (theora_dec_src_convert),
23241 (theora_dec_sink_convert), (theora_dec_src_query),
23242 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
23243 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
23244 (vorbis_get_event_masks), (vorbis_get_query_types),
23245 (gst_vorbis_dec_init), (vorbis_dec_convert),
23246 (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
23247 Added query/convert/formats functions to vorbis and theora decoders
23248 so that the outside world can use them too. Fixed seeking on an
23249 ogg/theora/vorbis file by disabling the seeking seeking on the
23252 2004-07-21 Julien MOUTTE <julien@moutte.net>
23254 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
23255 (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
23256 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
23257 images creation for both elements. We don't create the image on caps
23258 nego or renego, we just destroy the internal one if present if it does
23259 not match the needs. The chain function takes care of creating a new
23261 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
23262 (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
23263 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
23264 (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
23265 the image format information. The buffer pool checks for the context
23266 image format and discard images with different formats.
23267 * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
23269 2004-07-21 Thomas Vander Stichele <thomas at apestaart dot org>
23271 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23272 (gst_ffmpegcolorspace_chain):
23273 no point in doing any chaining if the pad we want to push from
23276 2004-07-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
23278 * gst-libs/gst/riff/riff-media.c:
23279 (gst_riff_create_audio_caps_with_data):
23280 Fix double end-to-native symbol conversion (#148021).
23282 2004-07-20 David Schleef <ds@schleef.org>
23284 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
23285 Don't use an Atom that doesn't exist.
23287 2004-07-20 Wim Taymans <wim@fluendo.com>
23289 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23290 (gst_multifdsink_add), (gst_multifdsink_get_stats),
23291 (gst_multifdsink_client_remove),
23292 (gst_multifdsink_handle_client_write),
23293 (gst_multifdsink_queue_buffer):
23294 * gst/tcp/gstmultifdsink.h:
23295 More multifdsink stats. Avoid deadlock by releasing locks
23296 before sending out a signal.
23298 2004-07-20 Thomas Vander Stichele <thomas at apestaart dot org>
23302 added Hungarian translation (Laszlo Dvornik)
23304 2004-07-20 Wim Taymans <wim@fluendo.com>
23306 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23307 (gst_multifdsink_add), (gst_multifdsink_client_remove),
23308 (gst_multifdsink_handle_client_write),
23309 (gst_multifdsink_queue_buffer):
23310 * gst/tcp/gsttcp-marshal.list:
23311 Fixed the stupid marshal definition.
23313 2004-07-20 Wim Taymans <wim@fluendo.com>
23315 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23316 (gst_multifdsink_init), (gst_multifdsink_add),
23317 (gst_multifdsink_client_remove),
23318 (gst_multifdsink_handle_client_write),
23319 (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
23320 (gst_multifdsink_set_property), (gst_multifdsink_get_property),
23321 (gst_multifdsink_init_send):
23322 * gst/tcp/gstmultifdsink.h:
23323 Added more stats, added timeout for a client, fixed some typos
23324 and added some comments.
23326 2004-07-20 Wim Taymans <wim@fluendo.com>
23328 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23329 (gst_multifdsink_add), (gst_multifdsink_get_stats),
23330 (gst_multifdsink_client_remove),
23331 (gst_multifdsink_handle_client_write):
23332 * gst/tcp/gstmultifdsink.h:
23333 * gst/tcp/gsttcp-marshal.list:
23334 Added get_stats method that returns a GValueArray of
23337 2004-07-19 Benjamin Otte <otte@gnome.org>
23339 * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
23340 make sure longname, description and author are valid UTF-8
23342 2004-07-19 Thomas Vander Stichele <thomas at apestaart dot org>
23344 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
23345 (gst_ximagesink_set_property):
23346 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
23347 (gst_xvimagesink_set_property):
23348 make sure SYNCHRONOUS is respected after getting the X context
23350 2004-07-18 Thomas Vander Stichele <thomas at apestaart dot org>
23352 * gst/matroska/matroska-demux.c:
23353 (gst_matroska_demux_handle_src_event),
23354 (gst_matroska_demux_parse_blockgroup):
23355 * gst/matroska/matroska-ids.h:
23356 add BlockReference tag and ignore it to clear out log.
23357 ignore NAVIGATION events to clear out log.
23359 2004-07-18 Thomas Vander Stichele <thomas at apestaart dot org>
23361 * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
23362 (gst_matroska_demux_add_stream):
23363 * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
23364 add debug categories
23366 2004-07-16 Wim Taymans <wim@fluendo.com>
23368 * ext/libpng/Makefile.am:
23369 * ext/libpng/gstpng.c: (plugin_init):
23370 * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
23371 (gst_pngdec_get_type), (gst_pngdec_base_init),
23372 (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
23373 (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
23374 * ext/libpng/gstpngdec.h:
23377 2004-07-16 Julien MOUTTE <julien@moutte.net>
23379 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
23380 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
23381 (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
23382 (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
23383 (gst_ximagesink_buffer_alloc):
23384 * sys/ximage/ximagesink.h:
23385 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
23386 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
23387 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
23388 (gst_xvimagesink_buffer_alloc):
23389 * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
23390 again. Using internal data pointer of the x(v)image to store image's
23391 data to be coherent with the buffer alloc mechanism. Investigated the
23392 image destruction code to be sure that everything gets freed correctly.
23394 2004-07-16 Wim Taymans <wim@fluendo.com>
23396 * gst-libs/gst/riff/riff-read.c:
23397 (gst_riff_read_strf_vids_with_data),
23398 (gst_riff_read_strf_auds_with_data):
23399 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
23400 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
23401 Make sure we don't create 0 sized subbuffers in riff-read.
23402 Signal the no more pads signal after reading the avi header.
23404 2004-07-16 Wim Taymans <wim@fluendo.com>
23406 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23407 (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
23408 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
23409 (gst_decode_bin_init), (gst_decode_bin_dispose),
23410 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23411 (no_more_pads), (close_link), (type_found),
23412 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23413 (gst_decode_bin_change_state), (plugin_init):
23414 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23415 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23416 (gst_play_base_bin_dispose), (queue_overrun),
23417 (gen_preroll_element), (remove_prerolls), (unknown_type),
23418 (no_more_pads), (new_stream), (setup_source),
23419 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
23420 (play_base_eos), (gst_play_base_bin_change_state),
23421 (gst_play_base_bin_add_element),
23422 (gst_play_base_bin_remove_element),
23423 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23424 (gst_play_base_bin_unlink_stream),
23425 (gst_play_base_bin_get_streaminfo):
23426 * gst/playback/gstplaybasebin.h:
23427 Better error recovery. Added configurable preroll queue size. Faster
23428 detection of no-more-pads.
23430 2004-07-16 Wim Taymans <wim@fluendo.com>
23432 * gst-libs/gst/video/video.h:
23433 Added 32 bits RGBA. Not sure if we should use another mime-type
23434 for alpha rgb. Currently the presence of the alpha_mask property
23435 signals an alpha channel.
23437 2004-07-16 Wim Taymans <wim@fluendo.com>
23439 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
23440 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
23441 FPS seems to be 0.0 to MAX everywhere else.
23443 2004-07-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
23445 * gst-libs/gst/riff/riff-media.c:
23446 (gst_riff_create_video_caps_with_data):
23447 mp42/mp43 (no caps) exist too.
23448 * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
23449 Set pixel_width/height; we've got them in-caps.
23450 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
23451 * gst/wavparse/gstwavparse.c: (plugin_init):
23452 Both are valid primary.
23453 * sys/oss/gstossmixer.c:
23454 Remove i18n hack and enable translations.
23456 2004-07-15 Benjamin Otte <otte@gnome.org>
23458 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
23459 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
23460 fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
23462 2004-07-15 Benjamin Otte <otte@gnome.org>
23464 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
23465 (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
23466 (gst_alsa_close_audio):
23467 disable some of the debugging code for now. Writing debugging to a
23468 buffer is broken in current alsalib releases.
23470 2004-07-12 Benjamin Otte <otte@gnome.org>
23472 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
23475 2004-07-14 Thomas Vander Stichele <thomas at apestaart dot org>
23477 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
23478 (theora_dec_src_query), (theora_dec_event):
23479 * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
23480 add debugging categories. Remove \n's.
23482 2004-07-13 Johan Dahlin <johan@gnome.org>
23484 * gst/playback/gstplaybin.c (gst_play_bin_set_property)
23485 (gst_play_bin_get_property): Impl.
23487 2004-07-13 Wim Taymans <wim@fluendo.com>
23489 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
23490 When trying to find the stream length, seek back N pages
23491 instead of just one, where N is the number of streams in
23494 2004-07-13 Wim Taymans <wim@fluendo.com>
23496 * gst-libs/gst/riff/riff-media.c:
23497 (gst_riff_create_audio_caps_with_data),
23498 (gst_riff_create_audio_caps),
23499 (gst_riff_create_audio_template_caps):
23500 * gst-libs/gst/riff/riff-media.h:
23501 * gst-libs/gst/riff/riff-read.c:
23502 (gst_riff_read_strf_vids_with_data),
23503 (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
23504 * gst-libs/gst/riff/riff-read.h:
23505 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
23506 (gst_avi_demux_add_stream):
23507 Set codec_data on caps for avidemuxer.
23509 2004-07-12 David Schleef <ds@schleef.org>
23511 * configure.ac: Fix test for Objective C
23513 2004-07-12 Jan Schmidt <thaytan@mad.scientist.com>
23514 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
23515 (gst_gdk_pixbuf_chain):
23516 Add svg and pcx to template caps, and ensure that getcaps returns a
23517 subset of the template caps.
23518 Copy each row manually for output, as gdkpixbuf may pad the
23519 rowstride to a 32-bit word boundary.
23521 2004-07-12 Wim Taymans <wim@fluendo.com>
23523 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
23524 (gst_riff_create_video_template_caps):
23525 Fix the template caps to include some more media types.
23527 2004-07-12 Wim Taymans <wim@fluendo.com>
23529 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23530 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23531 (compare_ranks), (print_feature), (gst_decode_bin_init),
23532 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23533 (try_to_link_1), (new_pad), (close_link), (type_found),
23534 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23535 (gst_decode_bin_change_state), (plugin_init):
23536 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23537 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23538 (gst_play_base_bin_dispose), (queue_overrun),
23539 (gen_preroll_element), (remove_prerolls), (no_more_pads),
23540 (new_stream), (setup_source), (gst_play_base_bin_set_property),
23541 (gst_play_base_bin_get_property), (play_base_eos),
23542 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
23543 (gst_play_base_bin_remove_element),
23544 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23545 (gst_play_base_bin_unlink_stream),
23546 (gst_play_base_bin_get_streaminfo):
23547 * gst/playback/gstplaybasebin.h:
23548 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23549 (gst_play_bin_class_init), (gst_play_bin_init),
23550 (gst_play_bin_dispose), (gst_play_bin_set_property),
23551 (gst_play_bin_get_property), (gen_video_element),
23552 (gen_audio_element), (remove_sinks), (setup_sinks),
23553 (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
23554 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23555 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23556 (gst_play_bin_query), (plugin_init):
23557 * gst/playback/test4.c: (main):
23558 More fixes on reusing of the element.
23560 2004-07-11 Benjamin Otte <otte@gnome.org>
23562 * ext/mad/gstmad.c: (normal_seek):
23563 allow seeking for other methods than just SET
23565 2004-07-11 Andy Wingo <wingo@pobox.com>
23567 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
23568 float, "any" caps -> buffer_frames=[0,MAX].
23570 * gst/interleave/interleave.c (interleave_getcaps): Seems the core
23571 doesn't intersect our caps with the template any more. Do it
23573 (interleave_buffered_loop): Use g_newa instead of malloc/free.
23575 2004-07-09 Wim Taymans <wim@fluendo.com>
23577 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23578 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23579 (compare_ranks), (print_feature), (gst_decode_bin_init),
23580 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23581 (try_to_link_1), (new_pad), (close_link), (type_found),
23582 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23583 (gst_decode_bin_change_state), (plugin_init):
23584 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23585 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23586 (gst_play_base_bin_dispose), (queue_overrun),
23587 (gen_preroll_element), (remove_prerolls), (no_more_pads),
23588 (new_stream), (setup_source), (gst_play_base_bin_set_property),
23589 (gst_play_base_bin_get_property), (play_base_eos),
23590 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
23591 (gst_play_base_bin_remove_element),
23592 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23593 (gst_play_base_bin_unlink_stream),
23594 (gst_play_base_bin_get_streaminfo):
23595 * gst/playback/gstplaybasebin.h:
23596 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23597 (gst_play_bin_class_init), (gst_play_bin_init),
23598 (gst_play_bin_dispose), (gst_play_bin_set_property),
23599 (gst_play_bin_get_property), (gen_video_element),
23600 (gen_audio_element), (remove_sinks), (setup_sinks),
23601 (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
23602 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23603 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23604 (gst_play_bin_query), (plugin_init):
23605 * gst/playback/test4.c: (main):
23606 Work on object reuse and seeking.
23608 2004-07-09 Wim Taymans <wim@fluendo.com>
23610 * examples/seeking/seek.c: (iterate):
23611 Don't consume all CPU in the idle loop.
23613 2004-07-09 Wim Taymans <wim@fluendo.com>
23615 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
23616 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
23617 Add pad to element *after* setting the pad functions so that
23618 the scheduler can use the correct ones.
23620 2004-07-09 Wim Taymans <wim@fluendo.com>
23622 * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23623 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
23624 Sync to keyframe after seek
23626 2004-07-09 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23628 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
23629 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
23630 (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
23631 * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
23632 * ext/libvisual/visual.c: (gst_visual_change_state):
23633 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
23634 * ext/theora/theoradec.c: (theora_dec_change_state):
23635 * ext/theora/theoraenc.c: (theora_enc_change_state):
23636 * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
23637 * gst-libs/gst/navigation/navigation.c:
23638 * gst/adder/gstadder.c: (gst_adder_change_state):
23639 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
23640 (gst_audio_convert_get_buffer):
23641 * gst/multipart/multipartdemux.c:
23642 (gst_multipart_demux_change_state):
23643 * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
23644 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
23645 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
23646 * gst/videoscale/gstvideoscale.c:
23647 (gst_videoscale_handle_src_event):
23648 * gst/volume/gstvolume.c: (volume_chain_int16):
23649 don't assert in state change, this should be done by the base
23651 various debugging fixes.
23653 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23656 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23657 (gst_play_dispose), (gst_play_set_location),
23658 (gst_play_set_data_src), (gst_play_set_video_sink),
23659 (gst_play_set_audio_sink), (gst_play_set_visualization),
23660 (gst_play_connect_visualization), (gst_play_get_sink_element),
23661 (gst_play_get_all_by_interface):
23662 * gst-libs/gst/play/play.h:
23663 add new method to get elements implementing an interface.
23664 add various error logging
23666 2004-07-08 Wim Taymans <wim@fluendo.com>
23668 * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
23669 (make_mpeg_pipeline), (make_mpegnt_pipeline),
23670 (make_playerbin_pipeline), (query_durations_elems),
23671 (query_durations_pads), (query_positions_elems),
23672 (query_positions_pads), (update_scale), (iterate), (stop_seek),
23674 Added playbin seeking example.
23676 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23678 * gst-libs/gst/play/play.c: (gst_play_set_location),
23679 (gst_play_set_data_src), (gst_play_set_video_sink),
23680 (gst_play_set_audio_sink), (gst_play_set_visualization),
23681 (gst_play_connect_visualization), (gst_play_get_framerate):
23682 use a macro to look up elements from hash table
23684 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23686 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23687 (gst_play_get_length_callback), (gst_play_set_location),
23688 (gst_play_seek_to_time), (gst_play_set_data_src),
23689 (gst_play_set_video_sink), (gst_play_set_audio_sink),
23690 (gst_play_set_visualization), (gst_play_connect_visualization),
23691 (gst_play_get_sink_element):
23692 - add debugging info
23693 - fix looking up sink elements by iterating over complete caps
23694 - put everything except for source and autoplugger in a complete bin
23696 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23698 * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
23699 * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
23700 (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
23701 (gst_alsa_sink_write), (gst_alsa_sink_loop):
23702 * ext/alsa/gstalsasink.h:
23703 - add debugging info
23704 - clean up schizophrenia of data/buffer/event
23705 - fix double event unref error
23707 2004-07-08 Wim Taymans <wim@fluendo.com>
23709 * gst/playback/Makefile.am:
23710 Add headers to noinst
23712 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23714 * tools/gst-launch-ext-m.m:
23715 * tools/gst-launch-ext.1.in:
23716 convert to the third millenium
23718 2004-07-07 David Schleef <ds@schleef.org>
23720 * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
23722 2004-07-07 Wim Taymans <wim@fluendo.com>
23724 * gst/playback/Makefile.am:
23725 * gst/playback/README:
23726 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23727 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23728 (compare_ranks), (print_feature), (gst_decode_bin_init),
23729 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23730 (try_to_link_1), (new_pad), (close_link), (type_found),
23731 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23733 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23734 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23735 (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
23736 (gen_preroll_element), (no_more_pads), (new_stream),
23737 (setup_source), (gst_play_base_bin_set_property),
23738 (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
23739 (gst_play_base_bin_add_element),
23740 (gst_play_base_bin_remove_element),
23741 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23742 (gst_play_base_bin_unlink_stream),
23743 (gst_play_base_bin_get_streaminfo):
23744 * gst/playback/gstplaybasebin.h:
23745 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23746 (gst_play_bin_class_init), (gst_play_bin_init),
23747 (gst_play_bin_dispose), (gst_play_bin_set_property),
23748 (gst_play_bin_get_property), (gen_video_element),
23749 (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
23750 (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
23751 (gst_play_bin_get_formats), (gst_play_bin_convert),
23752 (gst_play_bin_get_query_types), (gst_play_bin_query),
23754 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
23755 (gst_stream_info_get_type), (gst_stream_info_class_init),
23756 (gst_stream_info_init), (gst_stream_info_new),
23757 (gst_stream_info_dispose), (gst_stream_info_set_property),
23758 (gst_stream_info_get_property):
23759 * gst/playback/gststreaminfo.h:
23760 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
23762 * gst/playback/test2.c: (main):
23763 * gst/playback/test3.c: (update_scale), (main):
23764 More playbin fixes. Added README. Do better element filtering.
23765 Added base class to preroll media. Added test apps.
23767 2004-07-07 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23769 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
23770 * ext/mpeg2dec/gstmpeg2dec.h:
23771 various debugging improvements. Reset stream to next picture
23772 instead of sequence header, otherwise seeks cannot work.
23774 2004-07-07 Wim Taymans <wim@fluendo.com>
23776 * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
23777 (gst_video_box_class_init), (gst_video_box_set_property),
23778 (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
23779 Use pad_alloc where possible.
23781 2004-07-07 Wim Taymans <wim@fluendo.com>
23783 * sys/oss/gstosselement.c: (gst_osselement_reset),
23784 (gst_osselement_parse_caps):
23785 * sys/oss/gstosselement.h:
23786 * sys/oss/gstosssrc.c: (gst_osssrc_get):
23787 Fix offset on osssrc.
23789 2004-07-07 Wim Taymans <wim@fluendo.com>
23791 * ext/theora/theora.c: (plugin_init):
23792 * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23793 (theora_dec_src_query), (theora_dec_chain):
23794 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
23795 (theora_enc_sink_link), (theora_buffer_from_packet),
23796 (theora_push_packet), (theora_enc_chain):
23797 Fix theora granulepos calculation.
23798 Fix overflow in duration/position calculation.
23799 Bump rank to PRIMARY for theoradec.
23800 Use granulepos of last packet to calculate position.
23801 Set keyframe flag on buffers when needed.
23803 2004-07-06 David Schleef <ds@schleef.org>
23805 * gst/playback/Makefile.am: 'test' in bin_PROGRAMS? Are you
23806 serious? (Fixed, obviously.)
23808 2004-07-06 Thomas Vander Stichele <thomas at apestaart dot org>
23812 added Czech translation (Miloslav Trmac)
23814 2004-07-05 Wim Taymans <wim@fluendo.com>
23816 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23817 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23818 (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23819 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23820 (close_link), (type_found), (gst_decode_bin_set_property),
23821 (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
23822 (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
23823 (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
23824 (gst_decode_bin_query), (plugin_init):
23825 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23826 (gst_play_bin_class_init), (gst_play_bin_init),
23827 (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
23828 (get_video_element), (new_pad), (setup_source),
23829 (gst_play_bin_set_property), (gst_play_bin_get_property),
23830 (gst_play_bin_change_state), (gst_play_bin_add_element),
23831 (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23832 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23833 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23834 (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23835 * gst/playback/test.c: (main):
23836 More fixes, cleaned up playbin, make it use decodebin. Added
23837 threaded property to playbin.
23839 2004-07-05 Wim Taymans <wim@fluendo.com>
23842 * gst/playback/Makefile.am:
23843 * gst/playback/decodetest.c: (main):
23844 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23845 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23846 (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23847 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23848 (close_link), (type_found), (gst_decode_bin_set_property),
23849 (gst_decode_bin_get_property), (gst_decode_bin_change_state),
23850 (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
23851 (gst_decode_bin_get_formats), (gst_decode_bin_convert),
23852 (gst_decode_bin_get_query_types), (gst_decode_bin_query),
23854 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23855 (gst_play_bin_class_init), (gst_play_bin_init),
23856 (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
23857 (collect_sink_pads), (find_compatibles), (close_pad_link),
23858 (try_to_link_1), (new_pad), (close_link), (type_found),
23859 (setup_source), (gst_play_bin_set_property),
23860 (gst_play_bin_get_property), (gst_play_bin_factory_filter),
23861 (compare_ranks), (gst_play_bin_collect_factories),
23862 (gst_play_bin_change_state), (gst_play_bin_add_element),
23863 (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23864 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23865 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23866 (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23867 * gst/playback/test.c: (main):
23868 Added some playback helper elements and some test apps, very alpha
23871 2004-07-04 Benjamin Otte <otte@gnome.org>
23873 * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23874 only restart audio when we indeed have an xrun to fix repeated
23875 xruns. Fix suggested by Giuliano Pochini.
23877 2004-07-03 David Schleef <ds@schleef.org>
23879 * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
23880 call to gst_debug_log() if debugging is disabled (bug #145118)
23882 2004-07-03 Benjamin Otte <otte@gnome.org>
23884 * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23885 use our own functions for restarting the alsa device.
23886 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23887 I should apply patches myself - use MIN for the third argument, not
23888 the second, this fixes seeking
23890 2004-07-02 David Schleef <ds@schleef.org>
23892 * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
23893 (gst_flacdec_write): Actually, GST_PAD_CAPS() has nothing to
23896 2004-07-02 David Schleef <ds@schleef.org>
23898 * ext/flac/gstflacdec.c: (gst_flacdec_write): Set duration on
23899 output buffers. Fix logic mistake. (bug #144866)
23901 2004-07-02 David Schleef <ds@schleef.org>
23903 * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
23904 on X. (bug #144753)
23906 2004-07-02 David Schleef <ds@schleef.org>
23908 * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
23909 (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
23911 * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
23912 (gst_osselement_rate_probe_check): Add another workaround for
23913 buggy drivers (bug #145336)
23915 2004-07-02 David Schleef <ds@schleef.org>
23917 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
23918 Most systems don't have MSG_NOSIGNAL.
23920 2004-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
23923 * gst-libs/gst/colorbalance/Makefile.am:
23924 * gst-libs/gst/mixer/Makefile.am:
23925 * gst-libs/gst/play/Makefile.am:
23926 * gst-libs/gst/tuner/Makefile.am:
23927 (hopefully) fix both install and dist and make error message useful.
23928 needs testing across automakes.
23930 2004-07-02 Benjamin Otte <otte@gnome.org>
23932 * ext/ogg/gstogg.c: (plugin_init):
23933 we require bytestream now
23934 * ext/ogg/gstoggdemux.c:
23935 huge diff to implement chain setup in a fast and generic way. This
23936 improves tag reading and startup of huge files (read: Theora videos)
23937 quite a bit. It probably contains bugs, too, so please test.
23938 Seeking is not improved to the fast method.
23940 2004-06-29 Wim Taymans <wim@fluendo.com>
23942 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
23943 * ext/ogg/gstoggmux.c:
23944 Fix memleak in oggdemux when running unconnected pads.
23945 doc update in mux, start working on keyframe mode.
23947 2004-06-29 Benjamin Otte <otte@gnome.org>
23949 * sys/oss/gstosssink.c:
23950 * sys/oss/gstosssrc.c:
23951 advertise correct template caps - we indeed do non-native endianness
23952 and 8bit audio has no endianness
23953 * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
23954 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
23955 avoid (wrong) duplications in getcaps function and return
23958 2004-06-29 Wim Taymans <wim@fluendo.com>
23960 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23961 (gst_multifdsink_class_init), (gst_multifdsink_add),
23962 (gst_multifdsink_remove), (gst_multifdsink_clear),
23963 (gst_multifdsink_client_remove),
23964 (gst_multifdsink_handle_client_read),
23965 (gst_multifdsink_client_queue_data),
23966 (gst_multifdsink_client_queue_caps),
23967 (gst_multifdsink_client_queue_buffer),
23968 (gst_multifdsink_handle_client_write),
23969 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
23970 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
23971 (gst_multifdsink_init_send), (gst_multifdsink_close):
23972 Fix wrong GList iteration that could crash the server when
23973 more then 2 clients disconnect at the same time. Read all the
23974 pending commands in one batch to recover from command storms under
23977 2004-06-28 Wim Taymans <wim@fluendo.com>
23979 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
23980 (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
23981 (gst_videomixer_pad_set_property),
23982 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
23983 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
23984 (gst_videomixer_class_init), (gst_videomixer_init),
23985 (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
23986 (pad_zorder_compare), (gst_videomixer_sort_pads),
23987 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
23988 (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
23989 (gst_videomixer_update_queues), (gst_videomixer_loop),
23991 Avoid divide by zero, choose masterpad as the pad with the highest
23994 2004-06-27 Julien Moutte <julien@moutte.net>
23996 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
23997 (gst_ximagesink_xwindow_new):
23998 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
23999 (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
24000 function directly. We might want to call it from somewhere else one day.
24002 2004-06-27 Julien Moutte <julien@moutte.net>
24004 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
24005 (gst_ximagesink_xwindow_new):
24006 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
24007 (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
24008 window decorations.
24010 2004-06-27 Wim Taymans <wim@fluendo.com>
24012 * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
24013 (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
24014 (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
24015 (gst_dvdec_set_property), (gst_dvdec_get_property):
24016 * ext/dv/gstdvdec.h:
24017 Implement drop_factor property to lower the framerate with
24020 2004-06-27 Thomas Vander Stichele <thomas at apestaart dot org>
24022 * gst-libs/gst/colorbalance/Makefile.am:
24023 * gst-libs/gst/mixer/Makefile.am:
24024 * gst-libs/gst/play/Makefile.am:
24025 * gst-libs/gst/tuner/Makefile.am:
24026 unbreak Company's fix that didn't install the -enum.h files
24028 2004-06-27 Wim Taymans <wim@fluendo.com>
24030 * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
24031 (gst_dvdec_change_state):
24032 * ext/dv/gstdvdec.h:
24033 Fix timestamp, duration and offset of the buffers.
24035 2004-06-27 Wim Taymans <wim@fluendo.com>
24037 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
24038 (gst_multifdsink_class_init), (gst_multifdsink_add),
24039 (gst_multifdsink_remove), (gst_multifdsink_clear),
24040 (gst_multifdsink_client_remove),
24041 (gst_multifdsink_handle_client_read),
24042 (gst_multifdsink_client_queue_data),
24043 (gst_multifdsink_client_queue_caps),
24044 (gst_multifdsink_client_queue_buffer),
24045 (gst_multifdsink_handle_client_write),
24046 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
24047 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
24048 (gst_multifdsink_init_send), (gst_multifdsink_close):
24049 * gst/tcp/gstmultifdsink.h:
24050 * gst/tcp/gsttcpserversink.c:
24051 (gst_tcpserversink_handle_server_read),
24052 (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
24053 More multifdsink fixes, more recovery policy fixes.
24054 Removed stupid g_print
24056 2004-06-26 Wim Taymans <wim@fluendo.com>
24058 * gst/tcp/Makefile.am:
24059 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
24060 (gst_multifdsink_get_type), (gst_multifdsink_base_init),
24061 (gst_multifdsink_class_init), (gst_multifdsink_init),
24062 (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
24063 (gst_multifdsink_handle_client_read),
24064 (gst_multifdsink_client_queue_data),
24065 (gst_multifdsink_client_queue_caps),
24066 (gst_multifdsink_client_queue_buffer),
24067 (gst_multifdsink_handle_client_write),
24068 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
24069 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
24070 (gst_multifdsink_chain), (gst_multifdsink_set_property),
24071 (gst_multifdsink_get_property), (gst_multifdsink_init_send),
24072 (gst_multifdsink_close), (gst_multifdsink_change_state):
24073 * gst/tcp/gstmultifdsink.h:
24074 * gst/tcp/gsttcpplugin.c: (plugin_init):
24075 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
24076 (gst_tcpserversink_class_init), (gst_tcpserversink_init),
24077 (gst_tcpserversink_handle_server_read),
24078 (gst_tcpserversink_handle_select),
24079 (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
24080 (gst_tcpserversink_init_send), (gst_tcpserversink_close):
24081 * gst/tcp/gsttcpserversink.h:
24082 Added multifdsink, made tcpserversink a subclass of fdsink, removed
24083 one of the locks, added recovery policy to multifdsink.
24085 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
24087 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
24088 fix decision for when getting frames with same timestamp
24089 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
24090 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24091 (gst_v4lsrc_get_property):
24092 * sys/v4l/gstv4lsrc.h:
24093 add latency offset property
24095 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
24097 * gst/videorate/gstvideorate.c: (gst_videorate_chain),
24099 fix debugging. add category.
24101 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
24103 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
24106 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
24108 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24109 (gst_alsa_src_get_time), (gst_alsa_src_loop),
24110 (gst_alsa_src_change_state):
24111 return a time that is in sync with the element's processing
24113 2004-06-25 Wim Taymans <wim@fluendo.com>
24115 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
24116 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
24117 (gst_tcpserversink_client_remove),
24118 (gst_tcpserversink_handle_client_read),
24119 (gst_tcpserversink_client_queue_data),
24120 (gst_tcpserversink_client_queue_caps),
24121 (gst_tcpserversink_client_queue_buffer),
24122 (gst_tcpserversink_handle_client_write),
24123 (gst_tcpserversink_queue_buffer),
24124 (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
24125 (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
24126 (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
24127 (gst_tcpserversink_close):
24128 * gst/tcp/gsttcpserversink.h:
24129 Serversink rewrite. Really do non blocking writes to clients and
24130 maintain an internal queue to handle slower clients while not
24131 disturbing fast clients.
24133 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
24135 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24136 better debug, don't override OFFSET and OFFSET_END
24138 2004-06-25 Iain <iain@prettypeople.org>
24140 * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
24141 name=source for the wavparse pipeline.
24143 2004-06-24 Johan Dahlin <johan@gnome.org>
24145 * ext/theora/theoraenc.c (theora_enc_chain): Call
24146 gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
24147 streamheader caps are set correctly.
24149 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
24151 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
24152 (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
24153 respect minimum bitrate; same could be done for max bitrate
24155 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
24157 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
24158 (gst_vorbisenc_setup):
24159 fix sample rate range
24161 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
24163 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
24164 (gst_oggvorbisenc_setup):
24165 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
24166 (gst_vorbisenc_setup):
24167 resolve ambiguities in code and description
24169 2004-06-24 Wim Taymans <wim@fluendo.com>
24171 * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
24172 * ext/alsa/gstalsa.h:
24173 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24174 (gst_alsa_src_update_avail), (gst_alsa_src_loop):
24175 Use alsa trigger_tstamp to get the timestamp of the first
24176 sample in the buffer for more precise sync. Some cleanups.
24178 2004-06-24 Wim Taymans <wim@fluendo.com>
24180 * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
24181 (gst_audiorate_init), (gst_audiorate_chain),
24182 (gst_audiorate_set_property), (gst_audiorate_get_property):
24183 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24184 (gst_videorate_chain):
24185 Added some logging, fixed an overflow bug in videorate.
24187 2004-06-24 Benjamin Otte <otte@gnome.org>
24189 * ext/kio/Makefile.am:
24190 fix for builddir != srcdir and distcheck
24192 2004-06-24 Benjamin Otte <otte@gnome.org>
24194 * gst-libs/gst/colorbalance/Makefile.am:
24195 * gst-libs/gst/mixer/Makefile.am:
24196 * gst-libs/gst/play/Makefile.am:
24197 * gst-libs/gst/tuner/Makefile.am:
24198 * gst/tcp/Makefile.am:
24199 * sys/dxr3/Makefile.am:
24200 don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
24202 Also add all *.list files that were missing.
24204 add a distcheck hook to ensure the above doesn't happen again.
24206 2004-06-23 David I. Lehn <dlehn@users.sourceforge.net>
24208 * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
24210 2004-06-23 Colin Walters <walters@redhat.com>
24212 * m4/Makefile.am: Distribute gst-fionread.m4.
24214 2004-06-23 Thomas Vander Stichele <thomas at apestaart dot org>
24216 * configure.ac: back to dev
24218 2004-06-23 Wim Taymans <wim@fluendo.com>
24220 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
24221 (gst_alsa_xrun_recovery):
24222 * ext/alsa/gstalsa.h:
24223 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
24224 (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
24225 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24226 (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
24227 (gst_alsa_src_loop):
24228 Add clock to alsasrc. Take new capture timestamp when
24229 restarting after an overrun. Split up some functions between
24230 alsasrc and alsasink.
24232 === release 0.8.2 ===
24234 2004-06-23 Thomas Vander Stichele <thomas at apestaart dot org>
24236 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
24237 (gst_alsa_change_state), (gst_alsa_update_avail),
24238 (gst_alsa_xrun_recovery):
24239 * ext/alsa/gstalsa.h:
24240 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24241 merge back changes from release
24243 2004-06-23 Wim Taymans <wim@fluendo.com>
24245 * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
24246 (gst_audiorate_init), (gst_audiorate_chain),
24247 (gst_audiorate_set_property), (gst_audiorate_get_property):
24248 Implement sample dropping and notify
24250 2004-06-22 Wim Taymans <wim@fluendo.com>
24252 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
24253 (theora_enc_sink_link), (theora_buffer_from_packet),
24254 (theora_push_packet), (theora_enc_chain):
24255 Some cleanups, make sure the timestamps are correct.
24257 2004-06-22 Wim Taymans <wim@fluendo.com>
24259 * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
24260 (gst_alsa_change_state), (gst_alsa_update_avail),
24261 (gst_alsa_xrun_recovery):
24262 * ext/alsa/gstalsa.h:
24263 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
24264 Cleanups, take queued samples into account when reporting
24267 2004-06-22 Wim Taymans <wim@fluendo.com>
24269 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24270 (gst_videorate_init):
24271 Initialize the property as well.
24273 2004-06-22 Wim Taymans <wim@fluendo.com>
24275 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24276 (gst_videorate_init), (gst_videorate_chain),
24277 (gst_videorate_set_property), (gst_videorate_get_property):
24278 Add property to make videorate silent.
24279 Add property to prefer new frames over old ones.
24281 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24283 * sys/osxvideo/Makefile.am:
24284 Workaround so that the osxvideo .so file gets linked with the
24285 Cocoa, OpenGL and QuickTime frameworks
24287 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24289 * sys/osxaudio/Makefile.am:
24290 Workaround so that the osxaudio .so file gets linked with the
24291 CoreAudio framework
24293 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24296 Whoops, my fault...fixed build issues
24298 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24301 Add objective-c support if running in Darwin/Mac OS X
24304 * sys/osxvideo/Makefile.am:
24305 * sys/osxvideo/osxvideosink.h:
24306 * sys/osxvideo/osxvideosink.m:
24307 * sys/osxvideo/cocoawindow.h:
24308 * sys/osxvideo/cocoawindow.m:
24309 Add osxvideosink, a cocoa-based osx video sink
24312 2004-06-19 Jan Schmidt <thaytan@mad.scientist.com>
24313 * ext/dvdnav/gst-dvd:
24314 Grab the gconf key from the right spot
24315 * gst/debug/gstnavseek.c: (gst_navseek_init),
24316 (gst_navseek_segseek), (gst_navseek_handle_src_event),
24317 (gst_navseek_chain):
24318 * gst/debug/gstnavseek.h:
24319 Add 's', 'e' and 'l' keypresses to navseek to define the start,end
24320 and loop parameters of a segment seek.
24321 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
24322 (gst_videotestsrc_get_event_masks),
24323 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
24324 * gst/videotestsrc/gstvideotestsrc.h:
24325 Add seeking support to videotestsrc
24326 Initialise the timestamp_offset variable.
24328 2004-06-18 Wim Taymans <wim@fluendo.com>
24330 * ext/sidplay/gstsiddec.cc:
24331 Fix negotiation and set correct end offset.
24333 2004-06-18 Thomas Vander Stichele <thomas at apestaart dot org>
24335 * configure.ac: branch and prerelease
24337 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24339 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
24340 (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
24341 (gst_tcpclientsrc_init_receive):
24342 * gst/tcp/gsttcpclientsrc.h:
24343 read caps when connecting to server for GDP so we set them correctly
24345 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24347 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
24348 notify drops and duplicates
24349 * gst/videoscale/videoscale.c: (videoscale_get_structure):
24350 no good reason to limit ourselves to 100x100
24352 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24354 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
24355 (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
24356 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24357 (gst_v4lsrc_get_property):
24358 * sys/v4l/gstv4lsrc.h:
24359 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24360 (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
24361 (gst_v4l_set_audio):
24362 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
24363 (gst_v4lsrc_try_capture):
24364 * sys/v4l/v4lsrc_calls.h:
24365 change try_palette to more general try_capture
24366 add autoprobe option so we can turn off autoprobing
24369 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24373 * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
24374 (gst_ximagesink_class_init):
24375 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
24376 (gst_xvimagesink_class_init):
24377 run them as finalize, not dispose, since dispose can be invoked
24380 2004-06-17 Wim Taymans <wim@fluendo.com>
24382 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
24383 (gst_alsa_get_time), (gst_alsa_xrun_recovery):
24384 * ext/alsa/gstalsa.h:
24385 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
24386 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
24387 (gst_alsa_src_change_state):
24388 * ext/alsa/gstalsasrc.h:
24389 Make the xrun code timestamp and offset the buffers correctly.
24390 moved the clock to the base class, use alsa methods to get time.
24391 Do correct timestamping on outgoing buffers.
24393 2004-06-17 Wim Taymans <wim@fluendo.com>
24395 * gst/audiorate/Makefile.am:
24396 * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
24397 (gst_audiorate_base_init), (gst_audiorate_class_init),
24398 (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
24399 (gst_audiorate_set_property), (gst_audiorate_get_property),
24400 (gst_audiorate_change_state), (plugin_init):
24401 Added an audiorate converter that fills in gaps.
24403 2004-06-17 Johan Dahlin <johan@gnome.org>
24405 * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
24407 2004-06-16 Wim Taymans <wim@fluendo.com>
24409 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
24410 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
24411 (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
24412 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24413 (gst_v4lsrc_get_property):
24414 * sys/v4l/gstv4lsrc.h:
24415 Added a copy mode to v4lsrc where it will output a copied version
24416 of its internal hardware buffer.
24417 Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
24420 2004-06-16 Wim Taymans <wim@fluendo.com>
24422 * sys/oss/gstosssrc.c: (gst_osssrc_get):
24425 2004-06-16 Wim Taymans <wim@fluendo.com>
24427 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
24428 (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
24429 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24430 (gst_v4lsrc_get_property):
24431 * sys/v4l/gstv4lsrc.h:
24432 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
24433 Added a sync mode enum property to control v4lsrc timestamp method
24434 Removed the use-fixed-fps property and moved functionality in
24436 Don't error on an error value from v4l-conf, it might not always
24439 2004-06-16 Wim Taymans <wim@fluendo.com>
24441 * gst/videorate/Makefile.am:
24442 * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
24443 (gst_videorate_base_init), (gst_videorate_class_init),
24444 (gst_videorate_getcaps), (gst_videorate_link),
24445 (gst_videorate_init), (gst_videorate_chain),
24446 (gst_videorate_set_property), (gst_videorate_get_property),
24447 (gst_videorate_change_state), (plugin_init):
24448 Added a video timestamp corrector.
24450 2004-06-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24452 fixed a potential leak with previous commit
24454 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
24456 2004-06-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24458 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
24459 Added missing refcount, fixes bug #144425
24460 Cheers Tim for finding the bug
24462 2004-06-15 Thomas Vander Stichele <thomas at apestaart dot org>
24464 * sys/v4l/gstv4l.c: (plugin_init):
24465 * sys/v4l/gstv4lcolorbalance.c:
24466 * sys/v4l/gstv4lcolorbalance.h:
24467 * sys/v4l/gstv4lelement.c:
24468 * sys/v4l/gstv4lelement.h:
24469 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
24470 * sys/v4l/gstv4lmjpegsink.h:
24471 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
24472 * sys/v4l/gstv4lmjpegsrc.h:
24473 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
24474 (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
24475 (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
24476 * sys/v4l/gstv4lsrc.h:
24477 * sys/v4l/gstv4ltuner.c:
24478 * sys/v4l/gstv4ltuner.h:
24479 * sys/v4l/gstv4lxoverlay.c:
24480 * sys/v4l/gstv4lxoverlay.h:
24481 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
24482 (gst_v4l_set_window), (gst_v4l_enable_overlay):
24483 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24484 (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
24485 (gst_v4l_set_audio):
24486 * sys/v4l/v4l_calls.h:
24487 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
24488 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
24489 (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
24490 (gst_v4lmjpegsink_playback_init),
24491 (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
24492 (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
24493 (gst_v4lmjpegsink_playback_stop),
24494 (gst_v4lmjpegsink_playback_deinit):
24495 * sys/v4l/v4lmjpegsink_calls.h:
24496 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
24497 (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
24498 (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
24499 (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
24500 (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
24501 (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
24502 * sys/v4l/v4lmjpegsrc_calls.h:
24503 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
24504 (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
24505 (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
24506 (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
24507 (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
24508 (gst_v4lsrc_try_palette):
24509 * sys/v4l/v4lsrc_calls.h:
24510 bunch of paranoia cleanups
24512 2004-06-14 David Schleef <ds@schleef.org>
24514 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
24515 (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
24516 Send discont events and change timestamps appropriately when
24517 we get a seek event. (bug #144240)
24518 * ext/cdparanoia/gstcdparanoia.h:
24520 2004-06-14 Benjamin Otte <otte@gnome.org>
24522 * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
24523 snd_pcm_hw_params_set_rate since the latter fails for no good
24524 reason on some setups.
24526 2004-06-14 David Schleef <ds@schleef.org>
24528 * gst/volume/demo.c: (value_changed_callback): exp10() is not
24529 standard. Thank you for playing.
24531 2004-06-14 Wim Taymans <wim@fluendo.com>
24533 * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
24534 Patch 1.3 broke the ordering of the colorspace info and
24535 made the plugin basically work by coincidence, reordered
24538 2004-06-14 Thomas Vander Stichele <thomas at apestaart dot org>
24540 * ext/lame/gstlame.c:
24541 * ext/mad/gstmad.c:
24542 sync caps. Make sure mad can only output a list of rates, not
24543 a full range. In the future, have three caps lists for each of the
24544 mpeg versions. Change mpegversion to a double as well.
24546 2004-06-14 Thomas Vander Stichele <thomas at apestaart dot org>
24548 * gst/volume/.cvsignore:
24549 * gst/volume/Makefile.am:
24550 * gst/volume/demo.c: (value_changed_callback), (idler),
24551 (setup_gui), (main):
24552 added small demo app
24554 2004-06-13 Jan Schmidt <thaytan@mad.scientist.com>
24555 * ext/esd/esdsink.c: (gst_esdsink_change_state):
24556 * ext/esd/esdsink.h:
24557 Close the esd connection on pause, because esd will just wait -
24558 blocking all other esd clients indefinitely.
24560 2004-06-12 Christophe Fergeau <teuf@gnome.org>
24562 * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
24563 previous commit with GST_DEBUG
24565 2004-06-12 Thomas Vander Stichele <thomas at apestaart dot org>
24568 add a header check for a dvdread header in dvdnav. Fixes #133002
24570 2004-06-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24572 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
24573 * gst/tcp/gsttcpclientsink.h:
24574 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
24575 * gst/tcp/gsttcpclientsrc.h:
24576 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
24577 (gst_tcpserversink_handle_server_read),
24578 (gst_tcpserversink_init_send):
24579 * gst/tcp/gsttcpserversink.h:
24580 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
24581 * gst/tcp/gsttcpserversrc.h:
24582 Modified the tcp plugins so they are portable (IPv4,IPv6, any future
24585 2004-06-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24588 Added ogg library so that OSX detects libtheora properly
24590 2004-06-11 Wim Taymans <wim@fluendo.com>
24592 * ext/theora/theoradec.c: (theora_dec_chain),
24593 (theora_dec_change_state):
24594 Don't try to decode frames before we received a keyframe.
24596 2004-06-11 Wim Taymans <wim@fluendo.com>
24598 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
24599 (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
24600 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24601 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
24602 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
24603 Added property to set the maximum delay of a page.
24605 2004-06-10 Wim Taymans <wim@fluendo.com>
24607 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
24608 (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
24609 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24610 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
24611 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
24612 Added max-delay property to control the maximum amount
24613 of data to put in one page.
24615 2004-06-10 Wim Taymans <wim@fluendo.com>
24617 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
24618 (gst_theora_enc_init), (theora_enc_sink_link),
24619 (theora_buffer_from_packet), (theora_enc_set_property),
24620 (theora_enc_get_property):
24621 Set duration on encoded buffer, added some more properties
24623 2004-06-10 Wim Taymans <wim@fluendo.com>
24625 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
24626 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24627 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
24628 * ext/theora/theoraenc.c: (theora_enc_chain):
24629 Fix refcounting bugs
24631 2004-06-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
24633 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
24634 (gst_asf_demux_loop), (gst_asf_demux_process_file),
24635 (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
24636 (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
24637 (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
24638 (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
24639 (gst_asf_demux_change_state):
24640 * gst/asfdemux/gstasfdemux.h:
24641 You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
24642 feels like. I think we should set a new requirement for demuxers
24643 from now on to implement sane loop functions, data loops, query
24644 and seek functions before first commit into CVS. And this commit
24645 fixes all of the above.
24647 2004-06-10 Christophe Fergeau <teuf@gnome.org>
24649 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
24650 vorbis comments are properly encoded in UTF-8 before adding them
24653 2004-06-09 Benjamin Otte <otte@gnome.org>
24655 * ext/alsa/gstalsa.c: (add_channels):
24656 handle min <= max correctly
24657 * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
24658 (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
24659 add fixation functions so we fixate correctly. No preferring of alaw
24660 anymore because it's the first structure.
24661 * ext/alsa/gstalsa.h:
24662 * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
24663 (gst_alsa_hw_params_dump):
24664 add functions to ease debugging in alsalib
24665 * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24666 (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24667 (gst_alsa_start_audio):
24668 only specify hw params if we really setup a format (fixes #134007 -
24669 or at least works around it)
24671 2004-06-09 Wim Taymans <wim@fluendo.com>
24673 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
24674 (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
24675 (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
24676 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
24677 (gst_ogg_mux_loop):
24678 Use stream caps to setup the initial pages in the ogg stream.
24679 Correctly set the streamheader caps on the srcpad.
24681 2004-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
24683 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
24684 (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
24685 (gst_v4lsrc_getcaps):
24686 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24687 (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
24688 add querying of fps lists for webcams. Negotiating to a framerate
24691 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24693 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
24694 (theora_push_buffer), (theora_push_packet),
24695 (theora_set_header_on_caps), (theora_enc_chain):
24696 mark buffers and put on streamheader, raw theora streaming
24697 now works too, whee
24699 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24701 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24702 (gst_tcp_gdp_read_caps):
24703 do a looping read for caps and GDP headers too
24705 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24707 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24708 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
24709 return EOS instead of NULL in _get
24711 2004-06-08 Wim Taymans <wim@fluendo.com>
24713 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24714 (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
24715 (gst_tcp_gdp_write_caps):
24716 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24717 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
24718 (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
24721 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24723 * ext/vorbis/Makefile.am:
24724 * ext/vorbis/vorbis.c: (plugin_init):
24725 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
24726 (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
24727 (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
24728 (vorbis_parse_change_state):
24729 * ext/vorbis/vorbisparse.h:
24730 adding a vorbisparse element that marks the buffers, streaming
24731 raw vorbis using GDP now works, whee
24733 2004-06-08 Wim Taymans <wim@fluendo.com>
24735 * ext/jpeg/Makefile.am:
24737 * ext/jpeg/gstjpeg.c: (plugin_init):
24738 * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
24739 (gst_smokedec_base_init), (gst_smokedec_class_init),
24740 (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
24741 * ext/jpeg/gstsmokedec.h:
24742 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
24743 (gst_smokeenc_base_init), (gst_smokeenc_class_init),
24744 (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
24745 (gst_smokeenc_resync), (gst_smokeenc_chain),
24746 (gst_smokeenc_set_property), (gst_smokeenc_get_property):
24747 * ext/jpeg/gstsmokeenc.h:
24748 * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
24749 (smokecodec_flush_destination), (smokecodec_term_destination),
24750 (smokecodec_init_source), (smokecodec_fill_input_buffer),
24751 (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
24752 (smokecodec_term_source), (smokecodec_encode_new),
24753 (smokecodec_decode_new), (smokecodec_info_free),
24754 (smokecodec_set_quality), (smokecodec_get_quality),
24755 (smokecodec_set_threshold), (smokecodec_get_threshold),
24756 (smokecodec_set_bitrate), (smokecodec_get_bitrate),
24757 (find_best_size), (abs_diff), (put), (smokecodec_encode),
24758 (smokecodec_parse_header), (smokecodec_decode):
24759 * ext/jpeg/smokecodec.h:
24760 Added a new simple jpeg based codec
24762 2004-06-08 Wim Taymans <wim@fluendo.com>
24764 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24765 (gst_multipart_mux_loop):
24768 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24770 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24771 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
24772 (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
24773 (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
24774 (gst_tcpserversink_init_send), (gst_tcpserversink_close):
24775 * gst/tcp/gsttcpserversink.h:
24776 take streamheader into account
24778 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24780 * gst/level/Makefile.am:
24781 * gst/level/gstlevel.c: (gst_level_class_init):
24782 clean up marshal generation
24784 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24786 * gst/tcp/Makefile.am:
24787 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
24788 (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
24789 (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
24790 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
24791 (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
24792 (gst_tcpclientsrc_get_property):
24793 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
24794 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
24795 (gst_tcpserversink_handle_client_read),
24796 (gst_tcpserversink_handle_client_write),
24797 (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
24798 * gst/tcp/gsttcpserversink.h:
24799 add signals client-added and client-removed
24800 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
24801 (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
24802 (gst_tcpserversrc_get_property):
24803 uniformized, change default protocol to NONE
24804 * gst/tcp/gsttcp-marshal.list: added
24805 2004-06-07 Benjamin Otte <otte@gnome.org>
24807 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24808 handle discont events if they happen before caps nego
24810 2004-06-07 Wim Taymans <wim@fluendo.com>
24812 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
24813 (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
24814 (gst_multipart_demux_plugin_init):
24815 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24816 (gst_multipart_mux_init), (gst_multipart_mux_loop),
24817 (gst_multipart_mux_change_state):
24818 Small updates, fix a memleak
24820 2004-06-07 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24822 * configure.ac: OSS portability
24823 * ext/arts/gst_arts.c: idem
24824 * sys/oss/gstosselement.c: idem
24825 * sys/oss/gstossmixer.c: idem
24826 * sys/oss/gstosssink.c: idem
24827 * sys/oss/gstosssrc.c: idem
24828 * sys/oss/oss_probe.c: idem
24829 - check for soundcard.h in different places for some BSD
24831 2004-06-07 Jan Schmidt <thaytan@mad.scientist.com>
24834 Add me to the authors file
24836 Increase the libdv requirement to >= version 0.100
24837 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
24838 (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
24839 (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
24840 * ext/dv/gstdvdec.h:
24841 Add support for the new_media flag when sending DISCONT events
24842 Make the querying work when video pad is not linked
24844 2004-06-07 Tim-Philipp Müller <t.i.m@zen.co.uk>
24846 reviewed by Benjamin Otte <otte@gnome.org>
24848 * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
24849 create a NULL-initialized array of pads, so we don't think they
24850 exist already. (fixes #143130)
24852 2004-06-07 Benjamin Otte <otte@gnome.org>
24854 * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
24855 (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
24856 (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
24857 don't use // coments
24859 2004-06-07 Benjamin Otte <otte@gnome.org>
24861 * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
24862 cast to GstClockTime to get higher granularity
24863 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24864 use gst_element_set_time_delay to get the exact time
24865 * ext/mad/gstmad.c: (gst_mad_chain):
24866 use the negotiated rate instead of the current frame's rate which
24867 might be wrong because of bit errors. This avoids emitting totally
24868 bogus timestamps and screwing sync.
24871 2004-06-07 Tim-Philipp Müller <t.i.m@zen.co.uk>
24873 reviewed by Benjamin Otte <otte@gnome.org>
24875 * gst/adder/gstadder.c: (gst_adder_loop):
24876 properly error out when no negotiation has happened yet. (fixes
24879 2004-06-06 Benjamin Otte <otte@gnome.org>
24881 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
24882 forward correctly transformed offset in discont events. Based on
24883 patch by Arwed v. Merkatz. (fixes #142851)
24885 2004-06-06 David Schleef <ds@schleef.org>
24887 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
24888 G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS. Should fix compile
24889 problems on several systems.
24891 2004-06-06 Benjamin Otte <otte@gnome.org>
24893 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
24894 use explicit caps on the srcpad
24895 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
24896 properly error out if caps couldn't be set (fixes #142764)
24898 2004-06-06 Benjamin Otte <otte@gnome.org>
24900 * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24901 (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24902 (gst_alsa_start_audio):
24903 - don't call set_periods_integer anymore, it breaks the
24904 configuration randomly
24905 - call snd_pcm_hw_params_set_access directly instead of using masks
24906 - don't fail if the sw_params can't be set, just use the default
24907 params and hope it works. Alsalib has weird issues when you touch
24908 sw_params and does no proper error reporting about what failed.
24909 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
24910 (gst_alsa_close_audio):
24911 make our alsa debugging go via gst debugging and not conditionally
24913 * ext/alsa/gstalsa.h:
24914 add ALSA_DEBUG_FLUSH macro
24915 * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
24917 wrap alsa errors to be printed via the gst debugging system and not
24920 2004-06-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
24922 * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
24923 (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
24924 (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
24925 (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
24926 (qtdemux_parse_trak):
24927 * gst/qtdemux/qtdemux.h:
24928 Bitch. Also known as seeking, querying & co.
24929 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
24930 (gst_osssink_change_state):
24931 * sys/oss/gstosssink.h:
24932 Resyncing is for weenies, this hack is no longer needed and was
24933 broken anyway (since it - unintendedly - always leaves resync to
24936 2004-06-05 Andrew Turner <zxombie@hotpop.com>
24938 * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
24939 * gst/tcp/gsttcpclientsrc.h: idem
24940 - define MSG_NOSIGNAL if not done
24941 - include unistd.h for off_t
24944 2004-06-05 Benjamin Otte <otte@gnome.org>
24947 * ext/kio/Makefile.am:
24948 check for qt's moc preprocessor explicitly and use it
24950 2004-06-03 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
24952 * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
24953 don't get a signal for EPIPE on socket writes
24954 (somebody check if this works on other platforms)
24956 2004-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
24958 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
24959 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
24960 check error condition on available samples correctly
24962 2004-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
24964 * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
24966 * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
24967 (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
24968 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
24969 (gst_tcpserversrc_gdp_read_header):
24970 use ssize_t over size_t since the former is signed and thus the
24971 check for error codes can work
24973 2004-06-02 Wim Taymans <wim@fluendo.com>
24977 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24978 (gst_multipart_mux_loop):
24981 2004-06-02 Wim Taymans <wim@fluendo.com>
24983 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24984 (gst_multipart_mux_init), (gst_multipart_mux_loop),
24985 (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
24986 (gst_multipart_mux_change_state):
24987 Added configurable boundary specifier, added the value as a
24988 caps field as well.
24990 2004-06-02 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24992 * gst/tcp/gsttcp.c:
24993 * gst/tcp/gsttcpclientsrc.c:
24994 * gst/tcp/gsttcpclientsrc.h:
24995 * gst/tcp/gsttcpserversrc.c:
24996 - portability fix, to compile on OSX
24999 * sys/osxaudio/gstosxaudioelement.c:
25000 * sys/osxaudio/gstosxaudiosink.c:
25001 * sys/osxaudio/gstosxaudiosrc.c:
25002 - compilation warnings on OSX
25005 2004-06-02 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25007 * ext/vorbis/vorbisdec.c : sign warning fixes
25009 * gst-libs/gst/mixer/mixertrack.c :
25010 do no use defines which are glib 2.4 specific
25012 2004-06-01 Christophe Fergeau <teuf@gnome.org>
25014 * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
25015 buffer since libflac doesn't expect it (reports a sync error when
25016 it encounters that)
25019 2004-06-01 Owen Fraser-Green <owen@discobabe.net>
25021 * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
25022 * gst-libs/gst/mixer/mixertrack.c:
25023 (gst_mixer_track_get_property), (get_mixer_track_init),
25024 (get_mixer_track_get_property): Added property accessors
25025 * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
25026 * gst-libs/gst/mixer/mixeroptions.c:
25027 (gst_mixer_options_get_values): Added
25028 * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
25029 * gst-libs/gst/mixer/mixer.c: Fixed comment
25032 2004-06-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
25034 * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
25035 improve error messages on open
25038 2004-06-01 Thomas Vander Stichele <thomas at apestaart dot org>
25040 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
25041 check if v4l-conf is in path
25043 2004-06-01 Thomas Vander Stichele <thomas at apestaart dot org>
25045 * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
25046 change assert to a more readable error message
25048 2004-05-31 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25050 * gst-libs/gst/tuner/tunerchannel.h:
25051 - add a freq_multiplicator field to make the conversion
25052 between internal frequency unit and Hz
25053 * sys/v4l/gstv4lelement.c:
25054 * sys/v4l2/gstv4l2element.c:
25055 - change default video device to /dev/video0
25056 * sys/v4l/v4l_calls.c:
25057 * sys/v4l2/v4l2_calls.c:
25058 - we only expose frequency to the user in Hz instead of
25059 bastard v4lX unit (either 62.5kHz or 62.5Hz)
25061 2004-05-31 Jan Schmidt <thaytan@mad.scientist.com>
25062 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
25063 Initialise b_o_s and e_o_s variables
25064 * gst-libs/gst/riff/riff-media.c:
25065 (gst_riff_create_video_caps_with_data):
25066 Add some unusual fourcc's from mplayer avi's
25067 * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
25068 Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
25071 2004-05-28 Wim Taymans <wim@fluendo.com>
25074 * gst/alpha/Makefile.am:
25075 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
25076 (gst_alpha_get_type), (gst_alpha_base_init),
25077 (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
25078 (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
25079 (gst_alpha_chroma_key), (gst_alpha_chain),
25080 (gst_alpha_change_state), (plugin_init):
25081 A plugin to add an alpha channel to I420 video. Can optionally do
25083 * gst/multipart/Makefile.am:
25084 * gst/multipart/multipart.c: (plugin_init):
25085 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
25086 (gst_multipart_demux_class_init), (gst_multipart_demux_init),
25087 (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
25088 (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
25089 (gst_multipart_demux_change_state),
25090 (gst_multipart_demux_plugin_init):
25091 * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
25092 (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
25093 (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
25094 (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
25095 (gst_multipart_mux_pad_unlink),
25096 (gst_multipart_mux_request_new_pad),
25097 (gst_multipart_mux_handle_src_event),
25098 (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
25099 (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
25100 (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
25101 (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
25102 A Multipart demuxer/muxer. Not sure if it violates specs. Used to
25103 send multipart jpeg images to a browser.
25104 * gst/videobox/Makefile.am:
25105 * gst/videobox/README:
25106 * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
25107 (gst_video_box_get_type), (gst_video_box_base_init),
25108 (gst_video_box_class_init), (gst_video_box_init),
25109 (gst_video_box_set_property), (gst_video_box_get_property),
25110 (gst_video_box_sink_link), (gst_video_box_i420),
25111 (gst_video_box_ayuv), (gst_video_box_chain),
25112 (gst_video_box_change_state), (plugin_init):
25113 Crops or adds borders around an image. can do alpha channel
25115 * gst/videomixer/Makefile.am:
25116 * gst/videomixer/README:
25117 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
25118 (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
25119 (gst_videomixer_pad_get_sink_event_masks),
25120 (gst_videomixer_pad_get_property),
25121 (gst_videomixer_pad_set_property),
25122 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
25123 (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
25124 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
25125 (gst_videomixer_base_init), (gst_videomixer_class_init),
25126 (gst_videomixer_init), (gst_videomixer_request_new_pad),
25127 (gst_videomixer_handle_src_event),
25128 (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
25129 (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
25130 (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
25131 (gst_videomixer_loop), (gst_videomixer_get_property),
25132 (gst_videomixer_set_property), (gst_videomixer_change_state),
25134 Generic video mixer plugin, can handle multiple inputs all with
25135 different framerates and video sizes. Is fully alpha channel
25138 2004-05-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
25140 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
25141 Select first track as master track. Not sure how else to handle
25143 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
25144 Discard discont events. Should fix #142962.
25146 2004-05-26 Ronald Bultje <rbultje@ronald.bitfreak.net>
25148 * ext/alsa/Makefile.am:
25149 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
25150 (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
25151 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
25152 (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
25153 (gst_alsa_mixer_get_option):
25154 * ext/alsa/gstalsamixer.h:
25155 * ext/alsa/gstalsamixeroptions.c:
25156 (gst_alsa_mixer_options_get_type),
25157 (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
25158 (gst_alsa_mixer_options_new):
25159 * ext/alsa/gstalsamixeroptions.h:
25160 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
25161 * ext/alsa/gstalsamixertrack.h:
25162 Add enumerations (as GstMixerOptions). Make correct distinction
25163 between input/output tracks. Add capture/playback private flag.
25164 Use flag to decide on whether to set capture or playback volumes
25165 or switches. Use playback and record switches.
25166 * gst-libs/gst/mixer/Makefile.am:
25167 * gst-libs/gst/mixer/mixer-marshal.list:
25168 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
25169 (gst_mixer_set_option), (gst_mixer_get_option),
25170 (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
25171 (gst_mixer_volume_changed), (gst_mixer_option_changed):
25172 * gst-libs/gst/mixer/mixer.h:
25173 * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
25174 (gst_mixer_options_class_init), (gst_mixer_options_init),
25175 (gst_mixer_options_dispose):
25176 * gst-libs/gst/mixer/mixeroptions.h:
25177 Add GstMixerOptions.
25178 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
25179 Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
25180 broken device detection on computers with multiple OSS sound
25183 2004-05-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
25185 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
25186 fixate nicely even when the peer is not negotiating
25188 2004-05-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
25190 * gst/audioconvert/gstaudioconvert.c:
25191 (gst_audio_convert_parse_caps):
25192 make sure we don't allow depth > width
25193 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
25194 fixate endianness to G_BYTE_ORDER as default
25195 * gst/audioscale/gstaudioscale.c:
25196 we don't handle another endianness as host-endianness
25198 2004-05-25 David Schleef <ds@schleef.org>
25200 * gst/ffmpegcolorspace/mem.c: malloc() is in stdlib.h, not malloc.h
25202 2004-05-24 Benjamin Otte <otte@gnome.org>
25204 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
25205 (gst_oggvorbisenc_setup):
25206 properly fail when we can't setup the vorbis encoder due to
25207 unsupported settings
25208 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
25209 (gst_vorbisenc_setup):
25211 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
25212 fix case where warnings occured when one pad was unlinked while the
25213 other's link function was called
25215 2004-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
25217 * gst/tcp/Makefile.am:
25220 2004-05-24 Benjamin Otte <in7y118@public.uni-hamburg.de>
25222 * gst-libs/gst/resample/private.h:
25223 don't use optimizations that are #if 0'ed
25225 2004-05-24 Wim Taymans <wim@fluendo.com>
25227 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
25228 Fix potential division by zero error and hopefully get
25229 the position query right to get correct timestamps on avi
25232 2004-05-24 Wim Taymans <wim@fluendo.com>
25234 * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
25235 (gst_videoscale_scale_nearest_str2),
25236 (gst_videoscale_scale_nearest_str4),
25237 (gst_videoscale_scale_nearest_32bit),
25238 (gst_videoscale_scale_nearest_24bit),
25239 (gst_videoscale_scale_nearest_16bit):
25240 Fix the scaling algorithm and avoid a buffer overflow.
25241 removed the while loop in the scaling function as it
25242 was used for point sampling only.
25244 2004-05-24 Benjamin Otte <in7y118@public.uni-hamburg.de>
25246 * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
25247 (gst_id3_tag_class_init), (gst_id3_tag_init),
25248 (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
25249 (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
25250 (gst_id3_tag_send_tag_event):
25251 lots of fixes to make id3mux work and id3demux work correctly
25253 2004-05-24 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25256 add rules to build shout2send (was removed by accident
25257 when this module was no more marked experimental/broken)
25259 2004-05-24 Zaheer Abbas Merali <zaheerabbas at merali dot org>
25261 * ext/shout2/gstshout2.c:
25262 * ext/shout2/gstshout2.h:
25263 adding a "connection problem" signal to shout2send
25266 2004-05-21 Thomas Vander Stichele <thomas at apestaart dot org>
25268 * ext/kio/kioreceiver.cpp:
25269 * ext/kio/kioreceiver.h:
25270 fix sign comparison issues
25272 2004-05-21 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25274 * gst/cdxaparse/gstcdxaparse.c:
25275 * gst/cdxaparse/gstcdxaparse.h:
25277 add some checks/sanity
25278 prepare for seek addition
25280 * sys/sunaudio/gstsunaudio.c:
25281 remove exported dupe init function
25283 2004-05-21 Jan Schmidt <thaytan@mad.scientist.com>
25285 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
25286 (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
25287 Fix format conversion and position querying.
25288 * gst/debug/progressreport.c: (gst_progressreport_report):
25289 Don't output a bogus total value that we didn't query.
25290 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
25291 Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
25292 only a blank window after xine has been used.
25294 2004-05-21 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
25297 sync with upstream version to fix test on FC2
25298 readd with -ko to preserve Id header
25300 2004-05-20 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25303 test for FIONREAD ioctl in sys/filio.h for Solaris compat.
25304 * gst/tcp/gsttcpclientsrc.c: idem
25305 * gst/tcp/gsttcpserversink.c: idem
25306 * gst/tcp/gsttcpserversrc.c: idem
25307 * m4/gst-fionread.m4: idem
25309 * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
25311 * configure.ac: enable speex plugin for speex 1.1.5+
25312 * ext/speex/gstspeexenc.c: fix cast warning
25314 * ext/esd/README: fix typo
25316 2004-05-20 David Schleef <ds@schleef.org>
25318 * configure.ac: Minor cosmetic change to convince the buildbot to
25320 * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
25321 (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
25322 (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
25323 (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
25324 (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
25325 (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
25326 More hacking. Plays audio now.
25328 2004-05-20 David Schleef <ds@schleef.org>
25333 2004-05-20 David Schleef <ds@schleef.org>
25335 * sys/osxaudio/Makefile.am: New OS X audio plugin by Zaheer Abbas Merali
25336 * sys/osxaudio/gstosxaudio.c:
25337 * sys/osxaudio/gstosxaudioelement.c:
25338 * sys/osxaudio/gstosxaudioelement.h:
25339 * sys/osxaudio/gstosxaudiosink.c:
25340 * sys/osxaudio/gstosxaudiosink.h:
25341 * sys/osxaudio/gstosxaudiosrc.c:
25342 * sys/osxaudio/gstosxaudiosrc.h:
25344 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
25346 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
25347 (gst_vorbisenc_chain):
25348 put the codec headers on the caps as streamheader as well as
25351 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
25353 * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
25354 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
25355 (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
25356 split up push_packet into two functions
25358 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
25360 * gst/tcp/.cvsignore:
25362 * gst/tcp/Makefile.am:
25364 * gst/tcp/gsttcp.c:
25365 * gst/tcp/gsttcp.h:
25366 * gst/tcp/gsttcpclientsink.c:
25367 * gst/tcp/gsttcpclientsink.h:
25368 * gst/tcp/gsttcpclientsrc.c:
25369 * gst/tcp/gsttcpclientsrc.h:
25370 * gst/tcp/gsttcpplugin.c:
25371 * gst/tcp/gsttcpserversink.c:
25372 * gst/tcp/gsttcpserversink.h:
25373 * gst/tcp/gsttcpserversrc.c:
25374 * gst/tcp/gsttcpserversrc.h:
25375 add new tcp elements
25377 2004-05-19 Wim Taymans <wim@fluendo.com>
25379 * gst/law/mulaw-conversion.c: (mulaw_encode):
25380 Fix overflow bug in ulaw encoding.
25382 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25384 * ext/mad/gstmad.c: (gst_mad_handle_event):
25385 don't unref the event twice
25387 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25390 remove -Wno-sign-compare
25392 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25395 remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
25396 if you want to work against glib 2.2 and 2.4
25398 2004-05-19 Thomas Vander Stichele <thomas at apestaart dot org>
25400 * gst/tcp/Makefile.am:
25401 * gst/tcp/gsttcp.c:
25402 * gst/tcp/gsttcp.h:
25403 * gst/tcp/gsttcpsink.h:
25404 * gst/tcp/gsttcpsrc.h:
25405 gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
25407 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25409 * gst/debug/tests.c: (md5_get_value):
25410 fix segfault on gst-inspect
25412 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25414 * gst/debug/testplugin.c:
25415 * gst/debug/tests.c:
25416 * gst/debug/tests.h:
25417 add new extensible and configurable testing element. Current tests
25418 include buffer count, stream length, timestamp/duration matching and
25420 * gst/debug/Makefile.am:
25421 * gst/debug/gstdebug.c: (plugin_init):
25422 add infrastructure for new element
25424 2004-05-19 Johan Dahlin <johan@gnome.org>
25426 * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
25427 ending of the array. Fixes gst-inspect segfault on ppc.
25429 2004-05-19 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25431 * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
25433 * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
25435 2004-05-18 David Schleef <ds@schleef.org>
25437 * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
25438 warnings (bugs, actually) noticed by gcc but not forte.
25440 2004-05-18 David Schleef <ds@schleef.org>
25442 * sys/sunaudio/Makefile.am:
25443 * sys/sunaudio/gstsunaudio.c: New sunaudiosink
25445 2004-05-18 David Schleef <ds@schleef.org>
25447 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
25448 (gst_qtdemux_loop_header): Patch from dcm@acm.org (David Moore)
25449 to allow qtdemux to use non-seekable streams. (bug #142272)
25451 2004-05-18 David Schleef <ds@schleef.org>
25453 * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
25454 (gst_resample_sinc_ft_float): Remove use of static temporary
25455 buffer. This code was obviously not supposed to last long, but
25456 it's stuck in our ABI, so it required a little hack to make it
25457 ABI-compatible. Fixes #142585.
25458 * gst-libs/gst/resample/resample.h: same.
25460 2004-05-18 David Schleef <ds@schleef.org>
25462 * configure.ac: Add sunaudio
25463 * examples/Makefile.am: make gstplay depend on gconf
25464 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
25465 * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
25466 (convert_table_lookup), (img_convert): remove c99-isms
25467 * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
25468 unsigned, to fix a warning on Solaris
25469 * gst/mpeg1sys/systems.c: bcopy->memcpy
25470 * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
25471 * sys/Makefile.am: Add sunaudio
25473 2004-05-18 Wim Taymans <wim@fluendo.com>
25475 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
25476 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
25477 (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
25478 (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
25479 (gst_ogg_mux_loop):
25480 Fix an ugly memleak where the muxer didn't flush enough ogg
25481 pages. This also resulted in badly muxed ogg files.
25483 2004-05-18 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25485 * gst/asfdemux/asfheaders.c :
25486 * gst/asfdemux/asfheaders.h :
25487 * gst/asfdemux/gstasfdemux.c :
25488 - fix ASF_OBJ_PADDING guid
25489 - add 3 new object guids (language list, metadata,
25490 extended stream properties)
25491 - add a function to parse extended header objects
25493 2004-05-18 Benjamin Otte <in7y118@public.uni-hamburg.de>
25495 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
25496 remove leftover debugging g_print
25498 2004-05-17 Ronald Bultje <rbultje@ronald.bitfreak.net>
25500 * ext/mad/gstmad.c: (gst_mad_handle_event):
25501 Fix for when the first format in a discont event is not a
25502 byte-based one. Should fix #137710.
25504 2004-05-18 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25506 * m4/a52.m4 : fix compilation with -Wall -Werror
25507 * m4/libfame.m4 : idem
25508 * m4/libmikmod.m4 : idem
25510 2004-05-17 Benjamin Otte <otte@gnome.org>
25512 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25513 signal the new tags before giving up the reference
25515 2004-05-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
25517 * ext/shout2/gstshout2.c:
25518 use application/ogg instead of application/x-ogg (patch by Patrick
25519 Guimond, fixes #142432)
25520 * sys/oss/gstosselement.c: (gst_osselement_reset),
25521 (gst_osselement_sync_parms):
25522 don't set fragment size unless specified (fixes #142493)
25524 2004-05-17 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25526 * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
25529 2004-05-17 Benjamin Otte <otte@gnome.org>
25531 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
25532 compute offsets correctly for internal buffers so timestamps are set
25533 correctly when we can't seek. Also handle cases where there are no
25534 offsets. (based on a patch by David Moore, fixes #142507)
25536 2004-05-17 Benjamin Otte <otte@gnome.org>
25538 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25539 use correct variable when determining amount of data to skip so we
25540 don't skip into the void and segfault
25542 2004-05-16 Benjamin Otte <otte@gnome.org>
25544 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
25547 2004-05-16 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25549 * gst/asfdemux/gstasfdemux.c:
25550 - fix a mem leak and always propagate tags
25551 - add WMV3 to known video codecs (but no decoder yet)
25552 - replace "surplus data" at end of audio header for what
25553 it is : codec specific data
25556 2004-05-16 Arwed v. Merkatz <v.merkatz@gmx.net>
25558 reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net>
25560 * gst-libs/gst/audio/audioclock.c:
25561 Fix wrong return type (#142205).
25563 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
25565 * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
25566 Ignore CRCs by default (fixes #142566).
25568 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
25570 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
25571 (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
25572 (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
25573 (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
25574 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
25575 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
25576 Fix for cases where we fail to attach to a mixer.
25578 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
25580 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
25581 Don't touch events after not owning them anymore.
25582 * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
25583 (gst_wavparse_fmt), (gst_wavparse_other),
25584 (gst_wavparse_handle_seek), (gst_wavparse_loop),
25585 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
25586 (gst_wavparse_srcpad_event):
25587 * gst/wavparse/gstwavparse.h:
25588 Add seeking, fix querying.
25590 2004-05-16 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25592 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25593 - process comments even if they don't end with \0\0
25594 g_convert would ignore them if present and works well without them
25596 2004-05-16 Benjamin Otte <otte@gnome.org>
25598 * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
25601 2004-05-16 Benjamin Otte <otte@gnome.org>
25603 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25604 don't write to memory we might not write to - g_convert does that
25605 for us anyway (fixes #142613)
25606 (gst_asf_demux_audio_caps):
25607 comment out gst_util_dump_mem
25609 2004-05-16 Benjamin Otte <otte@gnome.org>
25611 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25612 compute correct expected timestamps after seek (broken since
25614 * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
25615 rename element and debugging category to gdkpixbufscale
25617 2004-05-16 Benjamin Otte <otte@gnome.org>
25619 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25620 add error checking to snd_pcm_delay and remove duplicate call to
25621 snd_pcm_delay that caused issues (see inline code comments)
25622 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
25623 make more readable and fix return value when snd_pcm_delay fails
25626 2004-05-15 Jan Schmidt <thaytan@mad.scientisti.com>
25627 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
25628 (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
25629 (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
25630 (gst_pixbufscale_link), (gst_pixbufscale_init),
25631 (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
25632 (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
25633 (gst_pixbufscale_get_property), (pixbufscale_init):
25634 * ext/gdk_pixbuf/pixbufscale.h:
25635 Add these files I forgot earlier
25637 2004-05-15 Jan Schmidt <thaytan@mad.scientist.com>
25638 * ext/gdk_pixbuf/Makefile.am:
25639 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
25640 * ext/gdk_pixbuf/gstgdkpixbuf.h:
25641 Add new pixbufscale element to scale RGB video
25642 using gdk_pixbuf, because gdk_pixbuf does BILINEAR
25643 and HYPER interpolation correctly.
25644 * ext/theora/theoraenc.c: (theora_enc_chain),
25645 Discard buffer and return if explicit caps could not be set
25646 (theora_enc_get_property):
25647 Make _get return kbps for the bitrate consistent with
25651 2004-05-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
25653 * ext/libvisual/visual.c: (gst_visual_chain):
25654 add missing visual_audio_analyze
25656 2004-05-14 David Schleef <ds@schleef.org>
25658 * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
25659 is killed while we're playing.
25660 * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
25661 gst_element_no_more_pads().
25663 2004-05-14 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25665 * gst-libs/gst/riff/riff-read.c :
25666 - fix INFO tag extraction in RIFF/AVI files
25667 because gst_event_unref (event) also freed taglist
25670 2004-05-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25672 * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
25673 * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
25675 * gst/auparse/gstauparse.c :
25676 - add code (commented for now) to support audio/x-adpcm on src pad
25677 (we have no decoder for those layout yet)
25679 * gst/cdxaparse/gstcdxaparse.c :
25680 * gst/cdxaparse/gstcdxaparse.h :
25681 - partial rewrite using RiffRead (ripped iain's wavparse code)
25683 * gst/rtp/gstrtpL16enc.c : typo
25684 * gst/rtp/gstrtpgsmenc.c : typo
25686 2004-05-13 Benjamin Otte <otte@gnome.org>
25689 check for exact version of libvisual, it's not supposed to be
25692 2004-05-13 Benjamin Otte <in7y118@public.uni-hamburg.de>
25694 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
25695 signal no-more-pads
25697 2004-05-13 Jan Schmidt <thaytan@mad.scientist.com>
25699 * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
25700 Report which format was used for GST_FORMAT_DEFAULT
25701 * gst/debug/Makefile.am:
25702 * gst/debug/gstdebug.c: (plugin_init):
25703 * gst/debug/progressreport.c: (gst_progressreport_base_init),
25704 (gst_progressreport_class_init), (gst_progressreport_init),
25705 (gst_progressreport_report), (gst_progressreport_set_property),
25706 (gst_progressreport_get_property), (gst_progressreport_chain),
25707 (gst_progressreport_plugin_init):
25708 Add progressreport element for testing.
25710 2004-05-13 Thomas Vander Stichele <thomas at apestaart dot org>
25712 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
25713 * sys/v4l/gstv4lsrc.h:
25714 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
25715 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
25716 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
25717 (gst_v4lsrc_grab_frame):
25719 send a discont at start
25721 2004-05-12 Colin Walters <walters@redhat.com>
25723 * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
25724 inflooping if we can't find a chunk. Or in other words, don't blow
25725 chunks if we don't have a chunk to blow.
25727 2004-05-13 Jan Schmidt <thaytan@mad.scientist.com>
25728 * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
25729 Remove old debug output
25730 * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
25731 (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
25732 (gst_dvdec_set_property), (gst_dvdec_get_property):
25733 Change the quality setting to an enum, so it works from gst-launch
25734 Don't renegotiate a non-linked pad. Allows audio only decoding.
25735 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
25736 (gst_deinterlace_link), (gst_deinterlace_init):
25737 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
25738 (gst_videodrop_link):
25739 Some caps negotiation fixes
25741 2004-05-12 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25743 * ext/tarkin/gsttarkin.c :
25744 - Change RANK from NONE to PRIMARY
25745 * ext/gdk_pixbuf/gstgdkpixbuf.c :
25746 - Change RANK from NONE to MARGINAL
25747 * ext/divx/gstdivxenc.c :
25748 - Change RANK from PRIMARY to NONE (encoder/spider issue)
25750 2004-05-12 Thomas Vander Stichele <thomas at apestaart dot org>
25752 * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
25753 (gst_vorbisenc_push_packet):
25754 copy a function that was added between 1.0 and 1.0.1 until we
25755 depend on worthwhile features of post-1.0
25757 2004-05-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
25760 enable shout2 by default
25761 * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
25762 (gst_shout2send_base_init), (gst_shout2send_init),
25763 (gst_shout2send_connect), (gst_shout2send_change_state):
25764 * ext/shout2/gstshout2.h:
25765 make this work again. Based on a patch by Zaheer Abbas Merali (fixes
25767 * ext/theora/theora.c: (plugin_init):
25768 don't set rank on encoders
25770 2004-05-11 Jeremy Simon <jesimon@libertysurf.fr>
25772 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
25773 Use codec_data property instead of flag1 and flag2 for wma
25775 2004-05-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25777 * gst/cdxaparse/gstcdxaparse.c :
25778 - Add mpegversion to CAPS to make it link
25779 - Rank is as GST_RANK_SECONDARY instead of NONE
25780 * gst/auparse/gstauparse.c :
25781 - Document all audio encoding we can encounter from Solaris 9
25782 headers and libsndfile information.
25783 - Increase max. rate from 48000 to 192000 (to match other elements)
25784 - Don't try to play junk data between header and samples
25786 2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
25788 * ext/libvisual/visual.c: (gst_visual_getcaps):
25789 use the right caps depending on endianness (I hope)
25790 * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
25791 use GST_RANK_NONE for all non-decoding elements or spider gets
25794 2004-05-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
25796 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25797 Fix some odd cases and fix BE metadata parsing of unicode16 text.
25799 2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
25801 * gst/switch/gstswitch.c: (gst_switch_release_pad),
25802 (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
25803 (gst_switch_loop), (gst_switch_get_type):
25804 whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
25805 HEADERS. Had to be said.
25807 2004-05-10 David Schleef <ds@schleef.org>
25809 * configure.ac: Add prototype Dirac support.
25811 * ext/dirac/Makefile.am:
25812 * ext/dirac/gstdirac.cc:
25813 * ext/dirac/gstdiracdec.cc:
25815 2004-05-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
25817 * gst/auparse/gstauparse.c: (gst_auparse_class_init),
25818 (gst_auparse_init), (gst_auparse_chain),
25819 (gst_auparse_change_state):
25820 Hack around spider. Remove me some day please.
25822 2004-05-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
25824 * gst/auparse/gstauparse.c: (gst_auparse_chain):
25825 Fix for some uninitialized variables in previous patch, also
25826 makes it work. Fixes #142286 while we're at it.
25828 2004-05-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25830 * gst/auparse/gstauparse.c:
25831 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
25832 only unsupported formats are ADPCM/CCITT G.72x
25834 * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
25836 2004-05-10 Wim Taymans <wim@fluendo.com>
25838 * ext/vorbis/Makefile.am:
25839 * ext/vorbis/README:
25840 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
25841 (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
25842 (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
25843 (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
25844 (gst_oggvorbisenc_convert_sink),
25845 (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
25846 (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
25847 (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
25848 (get_constraints_string), (update_start_message),
25849 (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
25850 (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
25851 (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
25852 * ext/vorbis/oggvorbisenc.h:
25853 * ext/vorbis/vorbis.c: (plugin_init):
25854 * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
25855 (raw_caps_factory), (gst_vorbisenc_class_init),
25856 (gst_vorbisenc_init), (gst_vorbisenc_setup),
25857 (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
25858 (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
25859 * ext/vorbis/vorbisenc.h:
25860 Added a raw vorbis encoder to be used with the oggmuxer.
25861 We still need the old encoder for some gnome applications,
25862 read the README to find out how that works.
25863 The raw encoder is called "rawvorbisenc" until 0.9.
25865 2004-05-10 Wim Taymans <wim@fluendo.com>
25867 * ext/ogg/gstogg.c: (plugin_init):
25868 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
25870 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
25871 (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
25872 (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
25873 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
25874 (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
25875 (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
25876 (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
25877 (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
25878 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
25879 (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
25880 Added an ogg muxer.
25881 Small typo fixes in the demuxer.
25883 2004-05-10 Wim Taymans <wim@fluendo.com>
25885 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
25886 (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
25887 (theora_enc_change_state), (theora_enc_set_property),
25888 (theora_enc_get_property):
25889 Mark the last packet with an EOS flag which is not really needed
25891 Do some better video framerate initialisation.
25892 Update the buffer timestamp.
25894 2004-05-10 Jan Schmidt <thaytan@mad.scientist.com>
25896 * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
25897 Return the result of the parent state change call
25899 2004-05-10 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25901 * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
25902 * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
25903 * gst/law/alaw-encode.c : (idem)
25904 * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
25905 * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
25906 * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
25908 2004-05-09 Benjamin Otte <otte@gnome.org>
25910 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
25911 don't use a fixed buffer size when writing variable length data to
25912 it. Fixes memory corruption and makes alsasrc work
25914 2004-05-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
25916 * ext/gnomevfs/gstgnomevfssink.c:
25917 (_gst_boolean_allow_overwrite_accumulator),
25918 (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
25919 Run glib's default signal handler (??) in RUN_CLEANUP rather than
25920 RUN_LAST, and don't use that to set the accumulator value because
25921 then it's always FALSE.
25923 2004-05-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
25925 * gst-libs/gst/riff/riff-media.c:
25926 (gst_riff_create_video_caps_with_data),
25927 (gst_riff_create_audio_caps),
25928 (gst_riff_create_audio_template_caps):
25929 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
25930 Fix for unaligned RIFF files (i.e. where all the chunks together
25931 in a LIST chunk are not of the same size as the size given in
25932 the LIST chunk header). Fixes several odd WAVE files. Also fix
25933 ADPCM (block_align property) in audio, so that wavparse based
25934 on this works now as it used to stand-alone.
25936 2004-05-09 Edward Hervey <bilboed@bilboed.com>
25938 reviewed by Benjamin Otte <otte@gnome.org>
25940 * ext/a52dec/gsta52dec.c:
25941 * ext/divx/gstdivxdec.c:
25942 * ext/divx/gstdivxenc.c:
25943 * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
25944 * ext/faac/gstfaac.c: (gst_faac_base_init):
25945 * ext/faad/gstfaad.c: (gst_faad_base_init):
25946 * ext/ivorbis/vorbisfile.c:
25947 * ext/lame/gstlame.c:
25948 * ext/libfame/gstlibfame.c:
25949 * ext/mpeg2enc/gstmpeg2enc.cc:
25950 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
25951 * ext/sidplay/gstsiddec.cc:
25952 * ext/speex/gstspeexdec.c:
25953 * ext/speex/gstspeexenc.c:
25954 * ext/xvid/gstxviddec.c:
25955 * ext/xvid/gstxvidenc.c:
25956 correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
25959 2004-05-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
25961 * ext/alsa/gstalsa.c: (device_list),
25962 (gst_alsa_class_probe_devices):
25963 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
25964 Fix alsa oddness in mixer after the combination of using mixer
25965 in source/sink elements and using hw:x,y instead of just hw:x.
25967 2004-05-09 Benjamin Otte <otte@gnome.org>
25969 * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
25970 (gst_wavparse_create_sourcepad):
25971 make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
25974 2004-05-09 Benjamin Otte <otte@gnome.org>
25976 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
25977 allow discont events before caps nego
25979 2004-05-08 Benjamin Otte <otte@gnome.org>
25981 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
25984 2004-05-08 Benjamin Otte <otte@gnome.org>
25986 * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
25987 (gst_level_change_state), (gst_level_init):
25988 * gst/level/gstlevel.h:
25989 figure out if we're initialized directly instead of keeping a
25990 variable that's wrong in 90% of cases
25991 don't initialize pads and then leak them and use a new unitialized
25992 pad. (fixes #142084)
25993 these were bugs so n00bish I didn't find them for an hour :/
25995 2004-05-08 Iain <iain@prettypeople.org>
25997 * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
25998 * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
25999 (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
26000 return the length that was read.
26001 (gst_riff_read_strf_auds): Allow fmt tags as well.
26003 2004-05-07 David Schleef <ds@schleef.org>
26005 * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
26006 signed char assumption in faad.h.
26008 2004-05-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
26010 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
26011 Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
26013 2004-05-07 Colin Walters <walters@redhat.com>
26015 * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
26016 * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
26018 * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
26019 Add dispose function.
26021 2004-05-08 Jan Schmidt <thaytan@mad.scientist.com>
26022 * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
26023 Fix caps nego and pad templates. RGB mode caps should
26025 * ext/dvdnav/gst-dvd:
26026 Move mpeg2dec inside the thread because otherwise the
26027 queue rejects cap changes mid-stream
26028 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
26029 (gst_mpeg2dec_flush_decoder):
26030 For mpeg2dec > 0.4.0, call the flush function instead of
26031 manually extracting all in-flight frames.
26032 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
26033 (gst_dv1394src_init), (gst_dv1394src_iso_receive):
26034 Change mime type video/dv go video/x-dv to match the
26035 rest of gst-plugins
26037 2004-05-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
26039 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
26040 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
26041 (gst_alsa_sink_class_init):
26042 * ext/alsa/gstalsasink.h:
26043 * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
26044 (gst_alsa_src_class_init):
26045 * ext/alsa/gstalsasrc.h:
26046 Make alsasink/src a subclass of alsamixer so that mixer stuff
26047 shows up in gst-rec. Needs some finetuning.
26049 2004-05-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
26051 * ext/lame/gstlame.c: (gst_lame_chain):
26053 * ext/mad/gstmad.c: (gst_mad_handle_event):
26055 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
26056 be able to detect mp3 files < 4096 bytes
26058 2004-05-06 Wim Taymans <wim@fluendo.com>
26060 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
26061 (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
26062 (theora_enc_set_property), (theora_enc_get_property):
26063 Also encode the first frame, cleanup some code.
26065 2004-05-06 Wim Taymans <wim@fluendo.com>
26067 * ext/mpeg2enc/gstmpeg2enc.cc:
26068 Forward events first before deciding that negotiation was
26071 2004-05-06 Wim Taymans <wim@fluendo.com>
26073 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
26074 First process the events before deciding that negotiation
26077 2004-05-06 Wim Taymans <wim@fluendo.com>
26079 * ext/theora/Makefile.am:
26080 * ext/theora/theora.c: (plugin_init):
26081 * ext/theora/theoradec.c: (theora_dec_change_state):
26082 * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
26083 (gst_theora_enc_class_init), (gst_theora_enc_init),
26084 (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
26085 (theora_enc_chain), (theora_enc_change_state),
26086 (theora_enc_set_property), (theora_enc_get_property):
26087 Added a theora encoder, grouped the encoder and decoder into the
26090 2004-05-05 Thomas Vander Stichele <thomas at apestaart dot org>
26092 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26093 (gst_jpegenc_chain):
26094 fix DURATION on outgoing buffers
26095 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
26096 debug using time formats
26097 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
26098 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26099 (gst_xvimagesink_sink_link):
26100 windows with width/height 0 generate X errors, so don't allow them
26102 2004-05-05 Wim Taymans <wim@fluendo.com>
26104 * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
26105 (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
26106 (gst_mpeg2dec_negotiate_format):
26107 * ext/mpeg2dec/gstmpeg2dec.h:
26108 removed the static pad template so that we can add the
26109 more accurate framerate value to the caps.
26112 2004-05-04 Benjamin Otte <otte@gnome.org>
26115 check for kdemacros.h, too (should fix #141821)
26116 * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
26117 don't crash if no header was sent, but nicely error out (fixes part
26120 2004-05-04 Wim Taymans <wim@fluendo.com>
26122 * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
26123 parent dispose function to avoid segfault on destroy.
26125 2004-05-04 Thomas Vander Stichele <thomas at apestaart dot org>
26127 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
26129 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
26130 (gst_xvimagesink_sink_link):
26131 clean up debugging caps
26132 also recreate xvimage when format has changed
26134 2004-05-04 Benjamin Otte <otte@gnome.org>
26136 * ext/libvisual/Makefile.am:
26137 * ext/libvisual/visual.c: (gst_visual_class_init),
26138 (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
26139 (gst_visual_srclink), (gst_visual_chain),
26140 (gst_visual_change_state), (plugin_init):
26141 use a GstAdapter to correctly adapt buffer sizes - allows using a
26144 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26146 * sys/v4l/gstv4lelement.h:
26147 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
26148 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
26149 (gst_v4lsrc_buffer_free):
26150 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
26151 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
26152 (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
26153 (gst_v4lsrc_requeue_frame):
26154 move some debugging categories around
26155 query for fps index and set accordingly if found
26157 2004-05-03 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
26159 * ext/lame/gstlame.c:
26160 correct defaults that lame_init puts out of range
26162 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26164 * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
26165 (gst_divxenc_class_init):
26166 fix range since -1 is the default
26167 * gst/mpeg1sys/gstmpeg1systemencode.c:
26168 (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
26169 * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
26170 (gst_rtjpegdec_chain):
26171 * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
26172 (gst_rtjpegenc_chain):
26173 * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
26174 (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
26175 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
26176 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
26177 * sys/v4l/gstv4lsrc.c:
26178 * sys/v4l/v4l_calls.c: (gst_v4l_open):
26179 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
26180 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
26181 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
26182 * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
26183 remove gst_info calls
26185 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26194 Updated translations
26196 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26198 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26199 refactor/comment code
26201 2004-05-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
26203 * gst/asfdemux/Makefile.am:
26204 * gst/asfdemux/asfheaders.c:
26205 * gst/asfdemux/asfheaders.h:
26206 * gst/asfdemux/gstasf.c: (plugin_init):
26207 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
26208 (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
26209 (gst_asf_demux_setup_pad):
26210 * gst/asfdemux/gstasfdemux.h:
26211 * gst/asfdemux/gstasfmux.c:
26212 * gst/asfdemux/gstasfmux.h:
26213 Add tagging support to demuxer, split out registration in its own
26214 file instead of in demux (hacky), and prevent having some tables
26215 in our memory multiple times (in asfheaders.h).
26217 2004-05-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
26219 * gst/matroska/matroska-demux.c:
26220 (gst_matroska_demux_parse_metadata):
26221 * gst/matroska/matroska-ids.h:
26222 Basic tag reading support.
26224 2004-04-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
26226 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
26227 Really detect ac-3 audio.
26228 * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
26229 really detect matroska files (off-by-1).
26231 2004-04-30 David Schleef <ds@schleef.org>
26233 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26234 (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
26235 (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
26236 (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
26237 (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
26238 hackage -- parse a lot more atoms, extract a few tags. One might even
26239 mistake this for tag support. Maybe it is.
26240 * gst/qtdemux/qtdemux.h:
26242 2004-04-30 Colin Walters <walters@verbum.org>
26244 * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
26246 2004-04-30 Thomas Vander Stichele <thomas at apestaart dot org>
26248 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26249 (gst_ffmpegcolorspace_getcaps):
26250 remove broken nego fix
26252 2004-04-30 Benjamin Otte <otte@gnome.org>
26256 * ext/libvisual/Makefile.am:
26257 * ext/libvisual/visual.c:
26258 add initial support for libvisual (http://libvisual.sourceforge.net)
26259 libvisual is still quite alpha, so expect crashes in there :)
26261 2004-04-29 David Schleef <ds@schleef.org>
26263 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
26264 (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
26265 up qtdemux to make it spit out codec_data. Do _not_ look at this
26266 code; you will no longer respect me.
26268 2004-04-29 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
26270 * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
26271 * ext/alsa/gstalsa.h :
26272 change alsa pcm device discovery to find more than 1 device
26273 per card. code review by Ronald.
26275 2004-04-29 David Schleef <ds@schleef.org>
26277 * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
26278 Add a check for a driver bug on FreeBSD. (bug #140565)
26280 2004-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
26282 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
26283 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26284 (gst_jpegenc_getcaps):
26285 move format setting to inner loop
26286 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26287 (gst_ffmpegcolorspace_getcaps):
26288 use GST_PAD_CAPS if available so that we use already negotiated
26290 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26291 (qtdemux_parse_moov), (qtdemux_parse):
26293 * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
26294 * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
26295 move hardcoded path to DEFINE
26297 2004-04-28 David Schleef <ds@schleef.org>
26299 * gst/speed/gstspeed.c: (speed_parse_caps): Fix caps parsing.
26302 2004-04-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
26304 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
26305 Don't probe for playback device if we're a source element. Fixes
26308 2004-04-29 Benjamin Otte <otte@gnome.org>
26310 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
26311 (gst_id3_tag_chain):
26312 rewrite buffer offset
26314 2004-04-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
26318 * ext/dts/Makefile.am:
26319 * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
26320 (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
26321 (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
26322 (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
26323 (gst_dtsdec_loop), (gst_dtsdec_change_state),
26324 (gst_dtsdec_set_property), (gst_dtsdec_get_property),
26326 * ext/dts/gstdtsdec.h:
26328 * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
26329 (gst_faad_srcconnect):
26330 Add ESDS atom handling (.m4a).
26332 2004-04-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
26334 * ext/divx/gstdivxdec.c: (plugin_init):
26335 Remove comment that makes no sense.
26336 * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
26337 Fix for obvious typo that resulted in warnings during gst-register.
26338 * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
26339 (gst_xviddec_sink_link):
26340 Fix caps negotiation a bit better.
26341 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
26342 We call this 'codec_data', not 'esds'.
26344 2004-04-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
26346 * gst/monoscope/gstmonoscope.c:
26347 make sure we only provide 256x128
26348 * gst/monoscope/monoscope.c: (monoscope_init):
26349 assert size of 256x128
26351 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
26354 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
26355 (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
26356 fixate to max width and height of device
26358 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
26361 * sys/v4l/gstv4l.c:
26362 * sys/v4l/gstv4lsrc.c:
26363 * sys/v4l/v4l_calls.c:
26364 * sys/v4l/v4lsrc_calls.c:
26365 fix for qc-usb driver which fakes having more than one buffer
26366 by handing the same buffer twice, which confused GStreamer's/v4lsrc
26367 buffer_free override
26370 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
26373 * gst/videotestsrc/gstvideotestsrc.c:
26374 (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
26375 (gst_videotestsrc_init), (gst_videotestsrc_get),
26376 (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
26377 * gst/videotestsrc/gstvideotestsrc.h:
26378 add num-buffers property
26380 2004-04-26 Benjamin Otte <otte@gnome.org>
26382 * ext/mad/gstid3tag.c: (plugin_init):
26383 set id3mux rank to NONE so it doesn't confuse spider
26384 require audio/mpeg,mpegversion=1 in id3mux
26386 2004-04-26 Benjamin Otte <otte@gnome.org>
26389 detect faad correctly as non-working if it's indeed non-working
26391 2004-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
26394 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26395 (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
26396 fix _getcaps so it only negotiates to its supported format
26398 2004-04-25 Benjamin Otte <otte@gnome.org>
26400 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26403 2004-04-23 Benjamin Otte <otte@gnome.org>
26405 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
26406 audio/x-raw-int with height rules! not. Now it's depth.
26408 2004-04-22 Ronald Bultje <rbultje@ronald.bitfreak.net>
26410 * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
26411 (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
26412 (gst_wavparse_loop):
26413 Missing variable initialization. Add handling of DVI ADPCM. Fix
26414 mis-parsing of LIST chunks. This works around a bug where we mis-
26415 parse non-aligning LIST chunks (so LIST chunks where the contents
26416 don't align with the actual LIST size). The correct fix is to use
26417 rifflib, I'm not going to fix wavparse - too much work. All this
26420 2004-04-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
26422 reviewed by Benjamin Otte <otte@gnome.org>
26424 * ext/shout/gstshout.c: (gst_icecastsend_change_state):
26425 fix shoutcast not working (fixes #140844)
26427 2004-04-22 Benjamin Otte <otte@gnome.org>
26429 * ext/hermes/gsthermescolorspace.c:
26430 (gst_hermes_colorspace_caps_remove_format_info):
26431 * gst/colorspace/gstcolorspace.c:
26432 (gst_colorspace_caps_remove_format_info):
26433 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26434 (gst_ffmpegcolorspace_caps_remove_format_info):
26435 s/gst_caps_simplify/gst_caps_do_simplify/
26437 2004-04-22 Benjamin Otte <otte@gnome.org>
26439 * gst-libs/gst/riff/riff-media.c:
26440 (gst_riff_create_video_caps_with_data):
26441 mpegversion is an int
26442 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
26443 don't try to create pad templates with NULL caps, use any caps
26446 2004-04-20 David Schleef <ds@schleef.org>
26448 * ext/sdl/Makefile.am: Link against libgstinterfaces, not
26449 libgstxoverlay. jmmv@menta.net (Julio M. Merino Vidal)
26452 2004-04-20 Daniel Gazard <daniel.gazard@epita.fr>
26454 reviewed by David Schleef
26456 * ext/mad/gstid3tag.c: Add stdlib.h
26457 * gst/rtp/gstrtpgsmenc.c: same
26458 * gst/tags/gstid3tag.c: same
26459 * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
26460 * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
26461 GST_DISABLE_LOADSAVE use.
26462 * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
26463 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
26464 * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
26466 * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
26467 * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
26469 * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
26470 * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
26472 * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
26475 2004-04-20 David Schleef <ds@schleef.org>
26477 * gst/realmedia/rmdemux.c: This was supposed to part of the
26478 last checkin. Same idea.
26480 2004-04-20 Daniel Gazard <daniel.gazard@epita.fr>
26482 reviewed by David Schleef
26484 * configure.ac: bump required gstreamer version to 0.8.1.1
26485 because of following changes [--ds]
26487 * gst-libs/gst/riff/riff-read.c: Include gst/gstutils.h.
26488 (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
26489 (gst_riff_read_header): Use GST_READ_UINT*
26490 macros to access possibly unaligned memory.
26492 * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
26493 (mp3_type_find): Use GST_READ_UINT*
26494 macros to access possibly unaligned memory.
26495 (mp3_type_find, mpeg1_parse_header, qt_type_find)
26496 (speex_type_find): Likewise
26498 * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
26500 * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
26501 (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
26502 (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
26503 (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
26504 (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
26505 (qtdemux_tree_get_sibling_by_type): Use GST_READ_UINT*
26506 macros to access possibly unaligned memory.
26508 * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
26511 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
26512 (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
26514 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
26517 * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
26518 (gst_mpeg2subt_chain_subtitle): Likewise.
26520 * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
26521 (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
26524 * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
26527 * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
26530 * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
26533 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
26536 update required version of GStreamer because of GST_TIME_FORMAT
26538 2004-04-20 Benjamin Otte <in7y118@public.uni-hamburg.de>
26540 * ext/mad/gstid3tag.c: (gst_id3_tag_init):
26541 remove leftover g_print
26542 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
26543 don't try setting only a subset of the caps. We don't want to kill
26544 autoplugging on purpose
26546 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
26548 * sys/ximage/ximagesink.c: (plugin_init):
26549 * sys/xvimage/xvimagesink.c: (plugin_init):
26550 add debugging categories
26552 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
26556 Adding en_GB translation (Gareth Owen)
26558 2004-04-20 David Schleef <ds@schleef.org>
26560 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
26561 (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
26562 (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
26563 (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
26564 A number of new features and hacks to extract the esds atom and
26565 put it into the caps. (bug #137724)
26567 2004-04-19 David Schleef <ds@schleef.org>
26569 * gconf/Makefile.am: Fix for non-GNU make
26570 * gst-libs/gst/Makefile.am: Change directory order to handle
26571 GstPlay linking with gstinterfaces
26572 * gst-libs/gst/audio/make_filter: make use of tr portable
26573 * gst-libs/gst/play/Makefile.am: Add intended \
26574 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
26575 (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
26576 function prototype instead of void *.
26577 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
26579 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26580 (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
26581 * gst/videofilter/make_filter: make use of tr portable
26582 * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
26584 2004-04-19 Thomas Vander Stichele <thomas at apestaart dot org>
26588 Added Ukrainian translation (Maxim V. Dziumanenko)
26590 2004-04-18 Ronald Bultje <rbultje@ronald.bitfreak.net>
26592 * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
26593 (gst_gsmdec_link), (gst_gsmdec_chain):
26594 Fix capsnego, simplify chain function slightly.
26595 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
26598 2004-04-18 Ronald Bultje <rbultje@ronald.bitfreak.net>
26600 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
26601 (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
26602 (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
26603 Hack to make wavparse work with spider (always -> sometimes pad).
26604 Fixes #135862 && #140411.
26606 2004-04-18 Benjamin Otte <otte@gnome.org>
26608 * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
26609 (gst_osselement_rate_probe_check),
26610 (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
26611 get rid of \n in debug output
26613 2004-04-17 Iain <iain@prettypeople.org>
26615 * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
26618 2004-04-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
26620 * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
26621 (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
26622 (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
26623 (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
26624 (gst_id3_tag_src_link), (gst_id3_tag_chain),
26625 (gst_id3_tag_change_state), (plugin_init):
26626 deprecate id3tag element and replace with id3demux/id3mux.
26627 great side effect: this ugly file is now even uglier, yay!
26628 * ext/mad/gstmad.h:
26629 remove non-available function
26630 update for new get_type
26632 2004-04-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
26635 require mpeg2dec >= 0.4.0
26637 2004-04-17 Benjamin Otte <otte@gnome.org>
26639 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26640 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
26641 (gst_xvimagesink_set_xwindow_id):
26642 call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
26643 assorted cleanup fixes.
26645 2004-04-16 David Schleef <ds@schleef.org>
26647 * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
26648 * sys/xvimage/xvimagesink.h: same
26650 2004-04-16 Thomas Vander Stichele <thomas at apestaart dot org>
26652 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26653 Fix GST_ELEMENT_ERROR with (NULL)
26655 2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
26657 * gst-libs/gst/riff/riff-media.c:
26658 (gst_riff_create_video_caps_with_data):
26659 Add div[3456] as fourccs for DivX 3 (fixes #140137).
26661 2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
26663 * gst-libs/gst/riff/riff-media.c:
26664 (gst_riff_create_video_caps_with_data),
26665 (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
26666 (gst_riff_create_video_template_caps),
26667 (gst_riff_create_audio_template_caps):
26668 * gst-libs/gst/riff/riff-media.h:
26669 * gst-libs/gst/riff/riff-read.c:
26670 (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
26671 * gst-libs/gst/riff/riff-read.h:
26672 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
26673 Add MS RLE support. I added some functions to read out strf chunks
26674 into strf chunks and the data behind it. This is usually color
26675 palettes (as in RLE, but also in 8-bit RGB). Also use those during
26676 caps creation. Lastly, add ADPCM (similar to wavparse - which
26677 should eventually be rifflib based).
26678 * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
26679 (gst_matroska_demux_init), (gst_matroska_demux_reset):
26680 * gst/matroska/matroska-demux.h:
26681 Remove placeholders for some prehistoric tagging system. Didn't add
26682 support for any tag system really anyway.
26683 * gst/qtdemux/qtdemux.c:
26684 Add support for audio/x-m4a (MPEG-4) through spider.
26685 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
26686 (gst_wavparse_loop):
26687 ADPCM support (#135862). Increase max. buffer size because we
26688 cannot split buffers for ADPCM (screws references) and I've seen
26689 files with 2048 byte chunks. 4096 seems safe for now.
26691 2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org>
26693 * configure.ac: bump nano to 1
26695 === release 0.8.1 ===
26697 2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org>
26699 * configure.ac: releasing 0.8.1, "Comforting Sounds"
26701 2004-04-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
26703 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26704 Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
26707 2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
26709 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
26710 lower rank of dvddemux so that it's not used for mpeg playback.
26712 2004-04-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
26715 save libs correctly when checking mad
26717 2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
26719 * ext/mad/gstid3tag.c: (plugin_init):
26720 lower rank of id3tag as proposed by Benjamin. Fixes #139926.
26722 2004-04-13 David Schleef <ds@schleef.org>
26724 * common/m4/gst-feature.m4: Call -config scripts with
26725 --plugin-libs if it is supported.
26726 * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
26727 JPEG images are image/jpeg.
26728 * gst/debug/Makefile.am:
26729 * gst/debug/negotiation.c: (gst_negotiation_class_init),
26730 (gst_negotiation_getcaps), (gst_negotiation_pad_link),
26731 (gst_negotiation_update_caps), (gst_negotiation_get_property),
26732 (gst_negotiation_plugin_init): Add a property that acts like
26734 * testsuite/gst-lint: Move license checking to be a standard
26737 2004-04-13 David Schleef <ds@schleef.org>
26739 * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
26740 patch from Sebastien Cote (bug #139958)
26742 2004-04-13 Thomas Vander Stichele <thomas at apestaart dot org>
26744 * examples/gstplay/Makefile.am:
26745 * examples/gstplay/player.c: (main):
26746 make the commandline player example use gconf settings
26748 2004-04-13 Thomas Vander Stichele <thomas at apestaart dot org>
26750 * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
26751 (gst_cacasink_sinkconnect), (gst_cacasink_init),
26752 (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
26753 init/end library during state transition, not object
26754 creation/disposal. get rid of custom dispose handler.
26757 2004-04-12 Christian Schaller <Uraeus@gnome.org>
26759 * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
26762 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26764 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
26765 Handle JUNK chunks inside data section. Prevents warnings.
26767 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26769 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
26770 (gst_riff_create_video_template_caps):
26772 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
26773 (gst_avi_demux_stream_data):
26774 Add support for "rec-list" chunks.
26776 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26778 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
26779 Fix another codecname mismatch.
26781 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26783 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26784 Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
26785 so that MJPEG plays back.
26787 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26789 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
26790 (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
26791 * gst/mpeg1videoparse/gstmp1videoparse.h:
26792 Fix for some slight mis-cuts in buffer parsing, and for some
26793 potential overflows or faults-causers. Adds disconts. Also fixes
26794 #139105 while we're at it.
26796 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26799 * sys/v4l2/gstv4l2element.h:
26800 Workaround for missing struct v4l2_buffer declaration in Suse 9
26801 and Mandrake 10 linux/videodev2.h header file (#135919).
26803 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26805 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26806 Bail out if no filename was given.
26808 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26810 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
26811 (gst_v4l2_fourcc_from_structure):
26812 Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
26815 2004-04-09 Benjamin Otte <otte@gnome.org>
26817 * ext/gnomevfs/gstgnomevfssink.c:
26818 (_gst_boolean_allow_overwrite_accumulator),
26819 (gst_gnomevfssink_class_init):
26820 fix erase signal - if any handler returns false the file will not be
26821 overwritten. If no handler is connected, the file will not be
26822 overwritten either.
26823 renamed signal to "allow-overwrite"
26824 * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
26825 free string when adding it to ID3 failed
26826 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
26827 unref event when done
26828 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26830 * gst/typefind/gsttypefindfunctions.c:
26831 (mpeg_video_stream_type_find):
26834 2004-04-08 David Schleef <ds@schleef.org>
26836 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26837 (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
26839 2004-04-08 David Schleef <ds@schleef.org>
26841 * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
26842 we don't support (bug #139532)
26844 2004-04-07 Thomas Vander Stichele <thomas at apestaart dot org>
26846 * ext/mad/gstmad.c: (gst_mad_handle_event),
26847 (gst_mad_check_caps_reset), (gst_mad_chain),
26848 (gst_mad_change_state):
26849 only set explicit caps if they haven't been set before for
26850 this stream. MPEG-audio sample rate/channels aren't allowed
26851 to change in-stream.
26854 2004-04-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
26856 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
26857 (_gst_boolean_did_something_accumulator),
26858 (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
26859 (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
26860 (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
26861 (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
26862 (gst_gnomevfssink_change_state):
26863 Fix erase signal. Don't erase by default. Remove handoff signal.
26864 Remove erase property. Don't segfault. General cleanup.
26866 2004-04-07 Benjamin Otte <otte@gnome.org>
26868 * gst-libs/gst/gconf/test-gconf.c: (main):
26869 add missing gst_init
26871 2004-04-07 Benjamin Otte <otte@gnome.org>
26873 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26874 free the mutexes, too
26876 2004-04-07 Benjamin Otte <otte@gnome.org>
26878 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26879 actually free the URI string
26880 * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
26881 compute offset correctly when passing discont events
26882 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26883 don't leak discont events
26884 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
26885 add some missing breaks so caps aren't copied randomly
26886 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
26887 if we realloc memory, we better use it
26889 2004-04-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
26891 * ext/mad/gstmad.c: (normal_seek):
26892 fix GST_FORMAT_TIME usage
26894 2004-04-05 David Schleef <ds@schleef.org>
26896 * ext/kio/kiosrc.cpp: Undefine KDE_DEPRECATED so we can use
26897 a deprecated function (hack!)
26899 2004-04-05 Benjamin Otte <otte@gnome.org>
26901 * ext/esd/esdmon.c: (gst_esdmon_get):
26902 fix nonterminated vararg and memleak
26904 2004-04-05 Benjamin Otte <otte@gnome.org>
26906 * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
26907 (gst_ladspa_init), (gst_ladspa_force_src_caps),
26908 (gst_ladspa_set_property), (gst_ladspa_get_property),
26909 (gst_ladspa_instantiate), (gst_ladspa_activate),
26910 (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
26913 2004-04-05 Stefan Kost <kost@imn.htwk-leipzig.de>
26915 reviewed by Benjamin Otte <otte@gnome.org>
26917 * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
26918 check for broken LADSPA parameters (fixes #138635)
26920 2004-04-05 Benjamin Otte <otte@gnome.org>
26922 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
26923 advertise buffer-frames correctly on sinkpads
26925 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
26927 * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
26928 (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
26929 (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
26930 (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
26931 (gst_mad_check_caps_reset), (gst_mad_chain):
26932 add more debugging, only reset caps when we're not in error state
26934 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
26936 * ext/mad/gstmad.c: add debugging category, comment + cleanups
26938 2004-04-05 Julio M. Merino Vidal <jmmv@menta.net>
26940 reviewed by Benjamin Otte <otte@gnome.org>
26943 fix == in test(1) operator
26945 2004-04-05 Julio M. Merino Vidal <jmmv@menta.net>
26947 reviewed by Benjamin Otte <otte@gnome.org>
26950 fix --export-symblos-regex to a working regex.
26952 2004-04-04 Benjamin Otte <otte@gnome.org>
26954 * sys/oss/.cvsignore:
26957 2004-04-03 Tim-Phillip Müller <t.i.m@zen.co.uk>
26959 reviewed by Benjamin Otte <otte@gnome.org>
26961 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26962 add missing 'new_media' argument (fixes #138168)
26963 * gst/matroska/matroska-demux.c:
26964 (gst_matroska_demux_handle_seek_event):
26965 add vararg terminator (fixes #138169)
26967 2004-04-02 David Schleef <ds@schleef.org>
26969 * ext/gdk_pixbuf/Makefile.am: Make sure gstgdkanimation.h is
26970 disted (bug #138914)
26972 2004-04-01 Benjamin Otte <otte@gnome.org>
26974 * ext/alsa/gstalsa.c: (gst_alsa_change_state),
26975 (gst_alsa_close_audio):
26976 handle case better where a soundcard can't pause
26977 * ext/ogg/gstoggdemux.c:
26978 don't crash when we get events but don't have pads yet
26980 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
26982 * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
26983 throw an error if we couldn't probe any caps.
26985 2004-04-01 Jan Schmidt <thaytan@mad.scientist.com>
26987 * ext/dvdnav/gst-dvd:
26988 Add a really simple sample DVD player
26990 2004-04-01 Jan Schmidt <thaytan@mad.scientist.com>
26992 * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
26993 (gst_a52dec_push), (gst_a52dec_handle_event),
26994 (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
26995 (gst_a52dec_change_state):
26996 * ext/a52dec/gsta52dec.h:
26997 Use a debug category, Output timestamps correctly
26998 Emit tag info, Handle events, tell liba52dec about cpu
26999 capabilities so it can use MMX etc.
27000 * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
27001 Fix a crasher accessing invalid memory
27002 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
27003 (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
27004 (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
27005 (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
27007 Some support for byte-format seeking.
27008 Small fixes for still frames and menu button overlays
27009 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
27010 (gst_mpeg2dec_alloc_buffer):
27011 Use a debug category. Adjust the report level of several items to
27012 LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
27013 so it doesn't lose the GstBuffer pointer
27014 * gst/debug/Makefile.am:
27015 * gst/debug/gstdebug.c: (plugin_init):
27016 * gst/debug/gstnavseek.c: (gst_navseek_get_type),
27017 (gst_navseek_base_init), (gst_navseek_class_init),
27018 (gst_navseek_init), (gst_navseek_seek),
27019 (gst_navseek_handle_src_event), (gst_navseek_set_property),
27020 (gst_navseek_get_property), (gst_navseek_chain),
27021 (gst_navseek_plugin_init):
27022 * gst/debug/gstnavseek.h:
27023 Add the navseek debug element for seeking back and forth in a
27024 video stream using arrow keys.
27025 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
27026 (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
27027 (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
27028 (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
27029 (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
27030 (gst_mpeg2subt_parse_header), (gst_get_nibble),
27031 (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
27032 (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
27033 (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
27034 (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
27035 * gst/mpeg2sub/gstmpeg2subt.h:
27036 Pretty much a complete rewrite. Now a loopbased element. May still
27037 require work to properly synchronise subtitle buffers.
27038 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
27039 (gst_dvd_demux_send_subbuffer):
27040 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
27041 Don't attempt to create subbuffers of size 0
27042 Reduce a couple of error outputs to warnings.
27043 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
27044 (gst_y4mencode_chain):
27045 Output the y4m frame header correctly.
27047 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
27049 * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
27050 throw errors instead of allowing SIGFPE
27052 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
27054 * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
27055 (gst_gconf_render_bin_from_key):
27056 leak plugging and style fixing
27058 2004-03-31 David Schleef <ds@schleef.org>
27060 * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
27061 (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
27063 * gst/debug/Makefile.am:
27064 * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
27065 * gst/debug/gstdebug.c: (plugin_init): Merge elements into one
27067 * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
27068 (gst_negotiation_base_init), (gst_negotiation_class_init),
27069 (gst_negotiation_init), (gst_negotiation_getcaps),
27070 (gst_negotiation_pad_link), (gst_negotiation_chain),
27071 (gst_negotiation_set_property), (gst_negotiation_get_property),
27072 (gst_negotiation_plugin_init): New element to talk about random
27073 negotiation things happening in a pipeline.
27075 2004-03-31 Thomas Vander Stichele <thomas at apestaart dot org>
27077 * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
27078 fix integer addition with help of Stefan Kost
27080 2004-03-31 Thomas Vander Stichele <thomas at apestaart dot org>
27082 * po/nl.po: updated Dutch translation (Elros Cyriatan)
27084 2004-03-30 David Schleef <ds@schleef.org>
27086 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
27087 (gst_mpeg2dec_negotiate_format): Handle Y42B-format MPEG
27088 video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
27090 * ext/mpeg2dec/gstmpeg2dec.h:
27092 2004-03-30 David Schleef <ds@schleef.org>
27094 * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
27096 2004-03-30 David Schleef <ds@schleef.org>
27098 * tools/gst-launch-ext-m.m: Applied patch from gnome@flyn.org (W.
27099 Michael Petullo) to handle .mov
27101 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27103 * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
27104 (gst_osselement_rate_check_rate):
27105 probe caps correctly for sound cards that only support one format
27107 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27109 * ext/kio/kiosrc.cpp: (process_events):
27110 update handling event processing if inside KDE - untested
27112 2004-03-29 David Schleef <ds@schleef.org>
27114 * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
27115 by 2 to not interfere with other colorspaces.
27116 * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
27117 * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
27118 one to not interfere with ffmpeg_colorspace.
27120 2004-03-29 David Schleef <ds@schleef.org>
27122 * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
27123 aren't in the caps.
27124 * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
27125 * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
27127 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27129 * gst-libs/gst/riff/riff-media.c:
27130 fail on error, don't try to set stuff on NULL caps
27132 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27136 * ext/kio/Makefile.am:
27137 * ext/kio/kioreceiver.cpp:
27138 * ext/kio/kioreceiver.h:
27139 * ext/kio/kiosrc.cpp:
27140 * ext/kio/kiosrc.h:
27141 add experimental kiosrc plugin
27142 * ext/alsa/gstalsaplugin.c: (plugin_init):
27143 initialize debugging category only when we're sure registering the
27146 2004-03-29 Thomas Vander Stichele <thomas at apestaart dot org>
27148 * examples/gstplay/player.c: (main):
27149 * gst-libs/gst/play/play.c: (gst_play_class_init),
27150 (gst_play_set_location), (gst_play_set_data_src),
27151 (gst_play_set_video_sink), (gst_play_set_audio_sink),
27152 (gst_play_set_visualization), (gst_play_connect_visualization):
27153 check return values of element_set_state and return FALSE where
27156 2004-03-29 Benjamin Otte <otte@gnome.org>
27158 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
27159 try harder to check if an event is really a discont
27161 2004-03-29 Thomas Vander Stichele <thomas at apestaart dot org>
27163 * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
27166 2004-03-28 Benjamin Otte <otte@gnome.org>
27168 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
27169 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
27170 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
27171 get rid of non-standard "..." ranges in case statements.
27173 2004-03-27 Martin Soto <martinsoto@users.sourceforge.net>
27175 * gst/mpegstream/gstmpegdemux.c:
27176 * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
27177 specific functionality split to the new dvddemux element.
27178 * gst/mpegstream/gstdvddemux.c:
27179 * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
27180 streams, derived from mpegdemux.
27181 * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
27182 up. SCR based timestamp rewriting can be turned off (will probably
27183 completely disappear soon).
27184 * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
27185 hacking. General cleanup. All printf statements replaced by
27186 debugging messages. Almost complete libdvdnav support.
27187 (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
27188 by events. New properties for audio and subpicture languages.
27189 (dvdnavsrc_update_highlight): Now uses events.
27190 (dvdnavsrc_user_op): Cleaned up.
27191 (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
27192 based). Lots of cleanup, and propper support for most libdvdnav
27194 (dvdnavsrc_make_dvd_event): New function.
27195 (dvdnavsrc_make_dvd_nav_packet_event): New function.
27196 (dvdnavsrc_make_clut_change_event): New function.
27198 2004-03-26 Benjamin Otte <otte@gnome.org>
27200 * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
27201 fix bug where typefinding would claim it's theora whenever less then
27202 7 bytes of data were available
27204 2004-03-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
27206 * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
27207 (gst_alawdec_base_init), (gst_alawdec_class_init),
27208 (gst_alawdec_init), (gst_alawdec_chain):
27209 * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
27210 (gst_alawenc_base_init), (gst_alawenc_class_init),
27211 (gst_alawenc_init), (gst_alawenc_chain):
27212 * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
27213 (gst_mulawdec_base_init), (gst_mulawdec_class_init),
27214 (gst_mulawdec_init), (gst_mulawdec_chain):
27215 * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
27216 (gst_mulawenc_base_init), (gst_mulawenc_class_init),
27217 (gst_mulawenc_init), (gst_mulawenc_chain):
27218 Fix capsnego in all four, remove the unused property functions and
27219 simplify the chain functions slightly. I guess we could use macros
27220 or something similar for those, since the code is so similar, but
27221 I'm currently too lazy...
27223 2004-03-24 David Schleef <ds@schleef.org>
27225 * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
27226 (gst_osselement_close_audio), (gst_osselement_probe_caps),
27227 (gst_osselement_get_format_structure),
27228 (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
27229 (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
27230 (gst_osselement_rate_int_compare): Add code to handle rate probing
27232 * sys/oss/gstosselement.h: same
27233 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
27234 Use rate probing provided by osselement.
27235 * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
27237 2004-03-24 Ronald Bultje <rbultje@ronald.bitfreak.net>
27239 * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
27240 (gst_xvidenc_get_property):
27243 2004-03-24 David Schleef <ds@schleef.org>
27245 * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
27246 (gst_speexdec_init):
27247 * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
27248 (gst_speexenc_init): Create the pad template correctly (from
27249 the static pad template, not a NULL pointer.)
27251 2004-03-25 Benjamin Otte <otte@gnome.org>
27253 * gst/debug/Makefile.am:
27254 * gst/debug/breakmydata.c:
27255 add element that quasi-randomly changes bytes in the stream.
27256 Intended use is robustness checking of demuxers and decoders in
27259 2004-03-24 Benjamin Otte <otte@gnome.org>
27261 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
27262 (gst_alsa_probe_hw_params):
27263 * ext/alsa/gstalsa.h:
27264 debugging output fixes
27266 2004-03-24 Benjamin Otte <otte@gnome.org>
27268 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
27269 don't g_return_if_fail if element is PLAYING, fail silently as every
27271 * gst/effectv/gstquark.c: (gst_quarktv_chain):
27272 only fix needed for cast lvalue issues in gst-plugins
27273 * gst/volenv/gstvolenv.c: (gst_volenv_init):
27276 2004-03-24 Benjamin Otte <otte@gnome.org>
27278 * gst/level/gstlevel.c: (gst_level_init):
27279 add proxying getcaps function, so level doesn't advertise impossible
27282 2004-03-24 David Schleef <ds@schleef.org>
27284 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
27285 (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
27286 (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
27287 (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
27288 (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
27289 (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
27290 (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
27291 (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
27292 (qtdemux_parse_tree), (qtdemux_parse_trak): Fix debugging
27293 messages. Divide the chunk size by the compression ratio
27294 (needed for MACE audio)
27296 2004-03-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
27298 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
27299 Fix buffer overflow read error.
27301 2004-03-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
27303 * ext/alsa/gstalsa.h:
27304 Remove unused entry.
27305 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
27307 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
27308 (gst_videodrop_link), (gst_videodrop_chain):
27309 Fix, sort of. Was horribly broken with new capsnego. Bah...
27311 2004-03-23 Jeremy Simon <jesimon@libertysurf.fr>
27313 * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
27315 Add a monkeysaudio typefind function
27317 2004-03-23 Johan Dahlin <johan@gnome.org>
27319 * gst-libs/gst/play/play.c (gst_play_audio_fixate)
27320 (gst_play_video_fixate): Check so the structure has the field
27321 before trying to fixate them, this makes it possible to have
27322 fakesinks for video and audio output without printing errors on
27323 the output console.
27325 2004-03-22 David Schleef <ds@schleef.org>
27327 * sys/oss/Makefile.am:
27328 * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
27329 (check_rate), (add_rate): Rate probing test app.
27331 2004-03-21 Benjamin Otte <otte@gnome.org>
27333 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
27334 (_fixate_caps_to_int), (gst_audio_convert_fixate):
27335 add a fixation function that pretty much does the right thing (fixes
27338 2004-03-20 David I. Lehn <dlehn@users.sourceforge.net>
27340 * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
27342 2004-03-20 Tim-Phillip Müller <t.i.m@zen.co.uk>
27344 reviewed by: Benjamin Otte <otte@gnome.org>
27346 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
27347 terminate gst_event_new_discontinuous correctly (fixes parts of
27350 2004-03-19 David Schleef <ds@schleef.org>
27352 * gst-libs/gst/Makefile.am: Enable xoverlay unconditionally,
27353 since it doesn't depend on X, and it's part of our ABI.
27355 2004-03-19 Iain <iain@prettypeople.org>
27357 * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
27358 is_int in the structure, not the local variable.
27360 2004-03-19 David Schleef <ds@schleef.org>
27362 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
27363 (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
27364 (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
27365 Improvements in caps negotiation.
27367 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
27371 adding Afrikaans (Petri Jooste)
27373 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
27375 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27376 (gst_ffmpegcolorspace_chain):
27377 throw error instead of g_critical (#137588)
27379 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
27383 dist common and m4 correctly
27386 2004-03-17 David Schleef <ds@schleef.org>
27388 * pkgconfig/gstreamer-media-info.pc.in: Add Version.
27391 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
27395 adding Swedish translation (Christian Rose)
27397 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
27399 * Makefile.am: use release.mak
27401 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27403 * common/ChangeLog:
27404 * common/gst-autogen.sh:
27405 add some explanation about the version detection
27409 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27411 * configure.ac: bump nano to 1
27413 === release 0.8.0 ===
27415 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27417 * configure.ac: release 0.8.0, "Pharmaceutical Itch"
27419 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27422 update libtool version
27423 * gst-libs/gst/media-info/Makefile.am:
27424 actually use libtool version
27426 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27428 * configure.ac: fix speex detection to work with 1.0 but not 1.1
27430 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27433 * gst-plugins.spec.in:
27434 * pkgconfig/Makefile.am:
27435 * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
27436 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
27437 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
27438 * pkgconfig/gstreamer-libs.pc.in:
27439 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
27440 * pkgconfig/gstreamer-play-uninstalled.pc.in:
27441 * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
27442 * pkgconfig/gstreamer-plugins.pc.in:
27443 remove @VERSION@ from some of the pc files since core and plugins
27445 created gstreamer-plugins.pc as it's a better name, but keeping
27446 -libs around for now to get fixes upstream done first.
27448 2004-03-15 Julien MOUTTE <julien@moutte.net>
27450 * gst-libs/gst/play/play.c: (gst_play_get_framerate),
27451 (gst_play_get_sink_element): First draft of gst_play_get_framerate.
27452 * gst-libs/gst/play/play.h:
27454 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27456 * *.c, *.cc: don't mix tabs and spaces
27458 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27460 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
27461 use the new ffmpegcolorspace
27462 * gst-plugins.spec.in:
27463 package new colorspace and media-info
27465 * pkgconfig/Makefile.am:
27466 fix some more disting issues
27467 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
27468 * pkgconfig/gstreamer-media-info.pc.in:
27469 generate media-info pc files
27471 2004-03-15 Johan Dahlin <johan@gnome.org>
27473 * *.h: Revert indenting
27475 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27478 adding ffmpegcolorspace element
27479 * gst/ffmpegcolorspace/Makefile.am:
27480 * gst/ffmpegcolorspace/avcodec.h:
27481 * gst/ffmpegcolorspace/common.h:
27482 * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
27483 * gst/ffmpegcolorspace/dsputil.h:
27484 * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
27485 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27486 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
27487 (gst_ffmpeg_caps_to_pix_fmt):
27488 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
27489 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27490 (gst_ffmpegcolorspace_caps_remove_format_info),
27491 (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
27492 (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
27493 (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
27494 (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
27495 (gst_ffmpegcolorspace_set_property),
27496 (gst_ffmpegcolorspace_get_property),
27497 (gst_ffmpegcolorspace_register):
27498 * gst/ffmpegcolorspace/imgconvert.c:
27499 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
27500 (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
27501 (avpicture_get_size), (avcodec_get_pix_fmt_loss),
27502 (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
27503 (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
27504 (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
27505 (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
27506 (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
27507 (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
27508 (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
27509 (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
27510 (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
27511 (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
27512 (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
27513 (img_get_alpha_info), (deinterlace_line),
27514 (deinterlace_line_inplace), (deinterlace_bottom_field),
27515 (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
27516 * gst/ffmpegcolorspace/imgconvert_template.h:
27517 * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
27518 * gst/ffmpegcolorspace/mmx.h:
27519 * gst/ffmpegcolorspace/utils.c: (avcodec_init):
27520 adding ffmpegcolorspace element supplied by Ronald after cleaning
27521 up and pulling in the right bits of upstream source.
27522 I'm sure a better C/compiler wizard could do some cleaning up (for
27523 example use GLIB's malloc stuff), but as a first pass this
27526 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27528 * ext/alsa/gstalsa.h:
27529 I assume Ronald forgot to commit the change to have cardname
27530 as a struct member. Expect some public spanking at the next
27533 2004-03-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
27535 * ext/alsa/gstalsa.c: (gst_alsa_get_property),
27536 (gst_alsa_open_audio), (gst_alsa_close_audio):
27537 * ext/alsa/gstalsa.c:
27538 Don't open the device if we're a mixer (= padless).
27539 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
27540 (gst_alsa_mixer_init), (gst_alsa_mixer_open),
27541 (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
27542 Open mixer during state change rather than during object
27543 initialization. Also, get a device name. Currently in a somewhat
27544 hackish fashion, but I didn't really find something better.
27546 2004-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
27548 * *.c, *.h: run gst-indent
27550 2004-03-14 Benjamin Otte <otte@gnome.org>
27552 * gst/modplug/gstmodplug.cc:
27553 * gst/modplug/gstmodplug.h:
27554 set correct timestamps on outgoing buffers
27556 2004-03-14 Benjamin Otte <otte@gnome.org>
27558 * gst/modplug/gstmodplug.cc:
27559 handle events - don't do crap when a discont arrives that's not
27561 This allows correct loading and playback of mods in Rhythmbox
27563 2004-03-14 Benjamin Otte <otte@gnome.org>
27566 * gst-libs/gst/gconf/Makefile.am:
27567 * pkgconfig/Makefile.am:
27568 move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
27569 they get rebuilt properly
27571 when checking for vorbis, try pkgconfig first.
27572 * gst/modplug/gstmodplug.cc:
27573 add fixate function
27575 2004-03-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
27577 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
27578 Fix for obvious mistake, where we first shift the offset and then
27579 read a samplesize element assuming the old offset. Note that this
27580 part still has something weird, i.e. my movies containing those
27581 don't actually play well, but at least there's something that looks
27584 2004-03-14 Jan Schmidt <thaytan@mad.scientist.com>
27585 * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
27587 Add a typefind function for speex format
27589 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
27591 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
27592 (gst_asf_demux_setup_pad):
27593 Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
27594 instead of 0. Reason is simple: some elements have a fps range
27595 of 1-max instead of 0-max. So now ASF video actually works.
27597 2004-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
27601 adding serbian as a language
27603 2004-03-13 Benjamin Otte <otte@gnome.org>
27605 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
27606 return taglist correctly from _get function, don't gst_pad_push it.
27609 2004-03-13 Jan Schmidt <thaytan@mad.scientist.com>
27610 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
27612 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
27614 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
27615 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
27616 (gst_alsa_mixer_track_new):
27617 * ext/alsa/gstalsamixertrack.h:
27618 Fix ancient leftovers... MixerTrack is a GObject.
27620 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
27622 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
27623 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
27624 Don't block during probing...
27626 2004-03-12 Ronald Bultje <rbultje@ronald.bitfreak.net>
27628 * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
27629 (gst_alsa_get_property), (gst_alsa_probe_get_properties),
27630 (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
27631 (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
27632 (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
27633 (gst_alsa_open_audio), (gst_alsa_close_audio):
27634 * ext/alsa/gstalsa.h:
27635 Add propertyprobe interface implementation, add some device-name
27636 property, all this so that it looks good in gnome-volume-control.
27638 2004-03-12 David Schleef <ds@schleef.org>
27640 * configure.ac: the Hermes library controls hermescolorspace, not
27642 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27643 (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
27645 * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
27646 * ext/sdl/sdlvideosink.h: ditto.
27647 * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
27649 2004-03-12 Benjamin Otte <otte@gnome.org>
27651 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
27652 (gst_x_overlay_got_xwindow_id):
27653 * gst-libs/gst/xoverlay/xoverlay.h:
27654 replace XID with unsigned long to get rid of the xlibs dependency in
27655 XOverlay (fixes #137004)
27657 2004-03-13 Jan Schmidt <thaytan@mad.scientist.com>
27658 * gst/effectv/gstaging.c: (gst_agingtv_base_init),
27659 (gst_agingtv_setup):
27660 * gst/effectv/gstdice.c: (gst_dicetv_get_type),
27661 (gst_dicetv_base_init), (gst_dicetv_class_init),
27662 (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
27663 * gst/effectv/gstedge.c: (gst_edgetv_get_type),
27664 (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
27665 (gst_edgetv_setup), (gst_edgetv_rgb32):
27666 * gst/effectv/gsteffectv.c:
27667 * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
27668 (gst_quarktv_set_property):
27669 * gst/effectv/gstrev.c: (gst_revtv_get_type),
27670 (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
27671 (gst_revtv_setup), (gst_revtv_rgb32):
27672 * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
27673 (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
27674 (gst_shagadelictv_init), (gst_shagadelictv_setup),
27675 (gst_shagadelictv_rgb32):
27676 * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
27677 (gst_vertigotv_base_init), (gst_vertigotv_class_init),
27678 (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
27679 * gst/effectv/gstwarp.c:
27680 Port everything that can be ported to videofilter and fix up the caps.
27681 Can someone with a big-endian machine please check these?
27683 2004-03-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
27685 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
27686 (gst_osssink_chain), (gst_osssink_change_state):
27687 Latest fixes for A/V sync, audio playback and such. This is about
27688 all... MPEG playback issues are mostly related to the async build-
27689 up of MPEG files, I cannot fix that. Use basicgthread to solve it.
27691 2004-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
27693 patch from: Stephane Loeuillet
27696 use pkg-config for some libraries, falling back to the old .m4 way
27701 2004-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
27704 * tools/Makefile.am:
27705 * tools/Makefile.in:
27706 * tools/gst-launch-ext-m.m:
27707 * tools/gst-launch-ext.1.in:
27708 * tools/gst-visualise-m.m:
27709 * tools/gst-visualise.1:
27710 * tools/gst-visualise.1.in:
27711 reorganizing generation of script tools
27713 2004-03-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
27715 * ext/divx/gstdivxdec.c:
27716 Downgrade priority. We prefer ffdec_mpeg4.
27717 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
27718 (gst_faad_chain), (gst_faad_change_state):
27719 Fix capsnego. Doesn't work for some sounds because we don't have
27720 a 5:1 to stereo element.
27721 * ext/xvid/gstxvid.c: (plugin_init):
27723 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
27724 (gst_osssink_change_state):
27725 Add discont handling.
27727 2004-03-09 Colin Walters <walters@verbum.org>
27729 * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
27732 2004-03-09 Benjamin Otte <otte@gnome.org>
27734 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
27735 the signals take 2 arguments
27737 2004-03-09 David Schleef <ds@schleef.org>
27739 * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
27740 (gst_alsa_fixate): Add fixate function. (bug #136686)
27741 * ext/alsa/gstalsa.h:
27742 * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
27744 2004-03-09 Benjamin Otte <otte@gnome.org>
27746 * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
27747 (gst_mikmod_change_state):
27748 * ext/mikmod/gstmikmod.h:
27749 make mikmod's loop function not loop infinitely and call
27750 gst_element_yield anymore
27751 * gst/modplug/gstmodplug.cc:
27752 fix pad negotiation (fixes #136590)
27754 2004-03-09 David Schleef <ds@schleef.org>
27756 * ext/lcs/Makefile.am: Fix so that the lcs colorspace plugin
27757 doesn't conflict with the internal colorspace plugin.
27758 * gst-libs/gst/audio/make_filter: Use `` instead of $() to
27759 satisfy the crappy-ass shell shipped by a certain vendor.
27760 * gst/videofilter/make_filter: same (bug #135299)
27762 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27764 * configure.ac: bump nano to 1
27766 === release 0.7.6 ===
27768 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27770 * configure.in: releasing 0.7.6, "There"
27772 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27774 * pkgconfig/gstreamer-play-uninstalled.pc.in:
27775 * pkgconfig/gstreamer-play.pc.in:
27776 synchronize the two
27778 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27780 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
27781 (cdparanoia_open), (cdparanoia_event):
27782 fix/add error handling
27784 add cdparanoia source
27785 * tools/Makefile.am:
27786 make scripts executable
27788 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27791 * ext/vorbis/Makefile.am:
27793 remove id3types, vorbisfile and xvideosink from the build (#133783)
27795 2004-03-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
27797 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
27798 Fix metadata read crash (#136537).
27800 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
27802 * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
27803 * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
27804 adding mime types, fixing the one-stop function
27806 2004-03-08 Christian Schaller <Uraeus@gnome.org>
27808 * ext/nas/nassink.c and /ext/nas/nassink.h:
27809 More NAS love from Arwed von Merkatz
27810 So lets all sing 'Can you feel the NAS tonight'
27812 2004-03-08 Christian Schaller <Uraeus@gnome.org>
27814 * tools/gst-launch-ext.in:
27815 Replace vorbisfile with oggdemux/vorbisdec/audioconvert
27817 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
27819 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27820 (gst_mpeg2dec_init):
27821 remove the user_data pad for now, because it is being used in
27822 fixating causing MPEG playback to fixate on 1000 Hz for playback.
27823 If someone knows how to fix this properly, please do.
27825 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
27827 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27828 (gst_osssink_get_time):
27829 add a warning, IMO this won't get triggered anymore, remove later
27831 2004-03-07 David Schleef <ds@schleef.org>
27833 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Added Cinepak
27834 format (bug #136470)
27836 2004-03-07 Thomas Vander Stichele <thomas at apestaart dot org>
27838 * gst-libs/Makefile.am:
27839 * gst-libs/gst/media-info/Makefile.am:
27840 * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
27841 (error_callback), (gst_media_info_error_create),
27842 (gst_media_info_error_element), (gmip_init), (gmip_reset),
27843 (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
27844 * gst-libs/gst/media-info/media-info-priv.h:
27845 * gst-libs/gst/media-info/media-info-test.c: (main):
27846 * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
27847 (gst_media_info_class_init), (gst_media_info_instance_init),
27848 (gst_media_info_set_source), (gst_media_info_read_with_idler),
27849 (gst_media_info_read_idler), (gst_media_info_read):
27850 * gst-libs/gst/media-info/media-info.h:
27851 fixed, should work now
27853 2004-03-07 Christian Schaller <Uraeus@gnome.org>
27855 * ext/nas/nassink.c:
27856 A bunch of NAS fixes from Arwed von Merkatz
27858 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27860 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
27861 (qtdemux_parse_trak):
27862 Fix crash (j might be greater than n_samples, in which case we're
27863 writing outside the allocated space for the array) and memleak.
27865 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27867 * sys/oss/gstosssink.c: (gst_osssink_chain):
27868 And another caller that couldn't handle delay < 0 (unsigned
27869 integer overflow). Video now continues playing on an audio
27870 buffer underrun, and the clock continues working. Audio still
27873 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27875 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27876 (gst_osssink_get_time):
27877 get_delay() may return values lower than 0. In those cases, we
27878 should not actually cast to *unsigned* int64, that will break
27879 stuff horribly. In my case, it screwed up A/V sync in movies
27880 in totem rather badly.
27882 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27884 * ext/faac/gstfaac.c: (gst_faac_chain):
27885 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
27886 * ext/libpng/gstpngenc.c: (user_write_data):
27887 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
27888 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
27889 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
27890 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
27891 Fix several misuse of gst_buffer_merge (it doesn't take ownership
27892 of any buffer), should fix some leaks. I hope I didn't unref buffers
27893 that shouldn't be...
27895 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27897 * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
27898 (deep_notify_callback), (tag_flag_score), (found_tag_callback),
27899 (error_callback), (gmi_reset), (gmi_seek_to_track),
27900 (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
27901 (gmip_find_type_post), (gmip_find_stream_post),
27902 (gmip_find_track_streaminfo_post):
27903 * gst-libs/gst/media-info/media-info-priv.h:
27904 * gst-libs/gst/media-info/media-info-test.c: (print_tag),
27905 (info_print), (main):
27906 * gst-libs/gst/media-info/media-info.c:
27907 (gst_media_info_error_create), (gst_media_info_error_element),
27908 (gst_media_info_instance_init), (gst_media_info_get_property),
27909 (gst_media_info_new), (gst_media_info_set_source),
27910 (gst_media_info_read_idler), (gst_media_info_read):
27911 * gst-libs/gst/media-info/media-info.h:
27912 first pass at making this work again. This seems to work on
27913 tagged ogg/vorbis and mp3 files.
27915 2004-03-06 Benjamin Otte <otte@gnome.org>
27917 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
27918 fix huge leak: gst_buffer_merge doesn't unref the first argument
27921 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27923 * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
27924 report layer/mode/emphasis
27926 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27928 * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
27930 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27932 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
27935 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27937 * ext/vorbis/vorbis.c: (plugin_init):
27938 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
27939 (gst_vorbis_dec_init), (vorbis_dec_event):
27941 make vorbisdec handle _BYTE and _TIME queries
27943 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27945 * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
27946 from the xing header
27948 2004-03-06 Benjamin Otte <otte@gnome.org>
27950 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
27951 (gst_audio_convert_link), (gst_audio_convert_change_state),
27952 (gst_audio_convert_buffer_from_default_format):
27953 do conversions from/to float correctly, fix some caps nego errors,
27954 export correct supported caps in template and getcaps, use correct
27955 caps in try_set_caps functions
27957 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27959 For some reason, I only committed a ChangeLog entry yesterday and
27960 not the corresponding code...
27961 * ext/mad/gstmad.c: Fix detection of Xing headers
27962 * gst/tags/gstid3tag.c: Changes to support TLEN tags
27964 2004-03-06 Benjamin Otte <otte@gnome.org>
27966 * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
27967 (gst_ogg_demux_src_query):
27968 make sure to handle the case where there's no current chain
27971 2004-03-05 David Schleef <ds@schleef.org>
27973 * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
27974 Add fixate function. (bug #131128)
27975 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
27976 (gst_sdlvideosink_fixate): Add fixate function.
27977 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
27978 Fix attempt to print a non-pointer using GST_PTR_FORMAT.
27979 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
27980 Fix missing break that was causing ulaw to be interpreted as
27983 2004-03-05 David Schleef <ds@schleef.org>
27985 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
27986 Fix code that ignores return value of gst_buffer_merge().
27988 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
27989 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
27990 * testsuite/gst-lint: Check for above.
27992 2004-03-05 David Schleef <ds@schleef.org>
27994 * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Check for unfixed
27995 caps and throw an element error. (bug #136334)
27997 2004-03-05 David Schleef <ds@schleef.org>
27999 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
28000 (gst_faad_chain): Fix negotiation.
28001 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
28002 key and button events.
28003 * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
28005 * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
28007 * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
28008 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
28009 (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
28010 function to encourage better negotiation, particularly between
28011 audioconvert and osssink.
28012 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
28013 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak): Make some debugging
28015 * gst/typefind/gsttypefindfunctions.c: Fix mistake in flash
28017 * gst/vbidec/vbiscreen.c: Add glib header
28018 * pkgconfig/gstreamer-play.pc.in: Depends on gst-interfaces.
28020 2004-03-06 Christophe Fergeau <teuf@users.sourceforge.net>
28022 * ext/mad/gstmad.c: Fix detection of Xing headers
28023 * gst/tags/gstid3tag.c: Changes to support TLEN tags
28025 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
28027 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
28028 (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
28031 2004-03-06 Christophe Fergeau <teuf@gnome.org>
28033 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28034 * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
28035 (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
28036 files, and report the parsed length as a GST_TAG_DURATION tag.
28037 * gst/tags/gstid3tag.c: support TLEN (duration) tag
28039 2004-03-05 Benjamin Otte <otte@gnome.org>
28041 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
28042 convert channels correctly. convert correctly to unsigned.
28044 2004-03-05 Julien MOUTTE <julien@moutte.net>
28046 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
28047 we have a window before clearing it.
28049 2004-03-05 Julien MOUTTE <julien@moutte.net>
28051 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
28052 have a window before clearing it.
28054 2004-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
28056 * gconf/gstreamer.schemas.in:
28057 * gst-libs/gst/gconf/Makefile.am:
28058 version installation path the same way as for 0.6
28059 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
28060 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28061 * pkgconfig/gstreamer-play-uninstalled.pc.in:
28062 remove comment that was fixed
28064 2004-03-05 David Schleef <ds@schleef.org>
28066 * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
28067 (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
28068 (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
28069 (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
28070 Add prototype code for handling seeking and querying.
28072 2004-03-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
28074 * examples/gstplay/player.c: (main):
28075 Initialize variables to NULL. Prevents a segfault because the
28076 (uninitialized) variable is not NULL, resulting in a crash on
28077 trying to reach error->message.
28079 2004-03-05 Benjamin Otte <otte@gnome.org>
28081 * gst/audioconvert/gstaudioconvert.c:
28082 (gst_audio_convert_buffer_to_default_format):
28083 make float=>int conversion work correctly even in cornercases.
28085 2004-03-04 David I. Lehn <dlehn@users.sourceforge.net>
28087 * debian/README.Debian:
28088 * debian/build-deps:
28089 * debian/changelog:
28091 * debian/control.in:
28092 * debian/copyright:
28093 * debian/gstreamer-a52dec.files:
28094 * debian/gstreamer-aa.files:
28095 * debian/gstreamer-alsa.files:
28096 * debian/gstreamer-alsa.manpages:
28097 * debian/gstreamer-arts.files:
28098 * debian/gstreamer-artsd.files:
28099 * debian/gstreamer-audiofile.files:
28100 * debian/gstreamer-avifile.files:
28101 * debian/gstreamer-cdparanoia.files:
28102 * debian/gstreamer-colorspace.files:
28103 * debian/gstreamer-doc.files:
28104 * debian/gstreamer-dv.files:
28105 * debian/gstreamer-dvd.files:
28106 * debian/gstreamer-esd.files:
28107 * debian/gstreamer-festival.files:
28108 * debian/gstreamer-flac.files:
28109 * debian/gstreamer-gconf.conffiles:
28110 * debian/gstreamer-gconf.files:
28111 * debian/gstreamer-gconf.postinst:
28112 * debian/gstreamer-gnomevfs.files:
28113 * debian/gstreamer-gsm.files:
28114 * debian/gstreamer-http.files:
28115 * debian/gstreamer-jack.files:
28116 * debian/gstreamer-jpeg.files:
28117 * debian/gstreamer-mad.files:
28118 * debian/gstreamer-mikmod.files:
28119 * debian/gstreamer-misc.files:
28120 * debian/gstreamer-mpeg2dec.files:
28121 * debian/gstreamer-oss.files:
28122 * debian/gstreamer-plugin-apps.files:
28123 * debian/gstreamer-plugin-apps.manpages:
28124 * debian/gstreamer-plugin-libs-dev.files:
28125 * debian/gstreamer-plugin-libs.files:
28126 * debian/gstreamer-plugin-template.postinst:
28127 * debian/gstreamer-plugin-template.postrm:
28128 * debian/gstreamer-sdl.files:
28129 * debian/gstreamer-sid.files:
28130 * debian/gstreamer-vorbis.files:
28131 * debian/gstreamer-x.files:
28132 * debian/mk.control:
28134 Debian package info not maintained here.
28136 2004-03-04 Thomas Vander Stichele <thomas at apestaart dot org>
28138 * ext/aalib/gstaasink.c: (gst_aasink_class_init):
28139 * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
28140 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
28141 * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
28142 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
28143 * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
28144 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
28145 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
28146 * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
28147 * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
28148 * gst-libs/gst/colorbalance/colorbalance.c:
28149 (gst_color_balance_class_init):
28150 * gst-libs/gst/colorbalance/colorbalancechannel.c:
28151 (gst_color_balance_channel_class_init):
28152 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
28153 * gst-libs/gst/play/play.c: (gst_play_class_init):
28154 * gst-libs/gst/propertyprobe/propertyprobe.c:
28155 (gst_property_probe_iface_init):
28156 * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
28157 * gst-libs/gst/tuner/tunerchannel.c:
28158 (gst_tuner_channel_class_init):
28159 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
28160 * gst/cutter/gstcutter.c: (gst_cutter_class_init):
28161 * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
28162 * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
28163 * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
28164 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
28165 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
28166 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
28167 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
28168 fix signals to use - instead of _
28169 * ext/libcaca/gstcacasink.h:
28170 * ext/sdl/sdlvideosink.h:
28173 2004-03-04 David Schleef <ds@schleef.org>
28175 * testsuite/gst-lint: Add a check for bad signal names.
28177 2004-03-04 Stefan Kost <kost@imn.htwk-leipzig.de>
28179 reviewed by David Schleef
28181 * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
28182 modified the alpha channel and caused a warning. (bug #136192)
28184 2004-04-03 Christian Schaller <Uraeus@gnome.org>
28186 * gst-plugins.spec.in:
28187 Change names of plugins to actually be correct. Try to keep things
28188 alphabetical to avoid getting beat up by Thomas
28190 2004-03-03 Julien MOUTTE <julien@moutte.net>
28192 * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
28193 Using ximagesink as a default if no gconf key found. We should
28194 probably consider using alsasink instead of osssink for the audio
28197 2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
28200 fix --with-plugins, don't think it ever worked before
28201 * gst-plugins.spec.in:
28204 2004-03-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
28206 * ext/sdl/sdlvideosink.h:
28207 * sys/ximage/ximagesink.h:
28208 * sys/xvideo/xvideosink.h:
28209 * sys/xvimage/xvimagesink.h:
28210 Fix for move of gstvideosink.h -> videosink.h.
28212 2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
28214 * gst-libs/gst/xwindowlistener/Makefile.am:
28215 this is a plugin library, not a library
28217 2004-03-01 David Schleef <ds@schleef.org>
28219 * AUTHORS: Added some names. Add yourself if you're still
28222 2004-03-01 David Schleef <ds@schleef.org>
28226 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28228 * gst-plugins.spec.in: clean up spec file
28230 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28232 * gst-libs/gst/video/Makefile.am:
28233 * gst-libs/gst/video/gstvideosink.c:
28234 * gst-libs/gst/video/gstvideosink.h:
28235 rename gstvideosink.h to videosink.h to match other headers
28236 * gst/mixmatrix/Makefile.am:
28237 fix plugin filename
28238 * gst/tags/Makefile.am: fix plugin filename
28240 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28242 * gst/tags/Makefile.am: fix plugin filename
28244 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28246 * examples/gstplay/player.c: (got_time_tick), (main):
28248 display time_tick more readably
28249 * gst/mixmatrix/Makefile.am:
28250 fix plugin file name
28252 2004-02-29 Christophe Fergeau <teuf@gnome.org>
28254 * sys/oss/gstosselement.c: (gst_osselement_probe),
28255 (device_combination_append), (gst_osselement_class_probe_devices):
28256 * sys/oss/gstosselement.h:
28257 Reworked enumeration of oss dsps and mixers so that gst-mixer works
28258 on my system using alsa oss emulation, fixes bug #135597
28260 2004-02-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
28262 * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
28263 (gst_videodrop_chain), (gst_videodrop_change_state):
28264 * gst/videodrop/gstvideodrop.h:
28265 Work based on timestamp of input data, not based on the expected
28266 framerate from the input. The consequence is that this element now
28267 not only scales framerates, but also functions as a framerate
28268 corrector or framerate stabilizer/constantizer.
28270 2004-02-27 David Schleef <ds@schleef.org>
28272 patches from jmmv@menta.net (Julio M. Merino Vidal)
28274 * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
28275 GST_ELEMENT_ERROR call (bug #135634)
28276 * gst/interleave/interleave.c: (interleave_buffered_loop),
28277 (interleave_bytestream_loop): Don't use alloca() (bug #135640)
28278 * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
28279 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
28280 (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
28281 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
28282 (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
28283 (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
28284 Fix GST_ELEMENT_ERROR call.
28285 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
28286 GST_ELEMENT_ERROR call.
28288 2004-02-27 Benjamin Otte <otte@gnome.org>
28290 * gst-libs/gst/audio/audio.h:
28291 add macro to make sure header isn't included twice
28292 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
28293 don't use gst_buffer_free
28294 * gst/playondemand/filter.func:
28295 don't use gst_data_free. Free data only once.
28297 2004-02-26 David Schleef <ds@schleef.org>
28299 * gst-libs/gst/colorbalance/Makefile.am:
28300 * gst-libs/gst/mixer/Makefile.am:
28301 * gst-libs/gst/tuner/Makefile.am:
28302 * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
28303 should not be disted, -marshal.h files should not be installed,
28304 and -enum.h files _should_ be installed. Fix to make this the
28307 === release 0.7.5 ===
28309 2004-02-26 Thomas Vander Stichele <thomas at apestaart dot org>
28311 * configure.ac: release 0.7.5, "Under The Sea"
28313 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
28315 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
28316 (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
28317 * gst/videoscale/gstvideoscale.c:
28318 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
28319 assorted debug/warning fixes
28321 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
28323 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
28324 (gst_videoscale_init), (gst_videoscale_chain),
28325 (gst_videoscale_set_property), (plugin_init):
28326 * gst/videoscale/gstvideoscale.h:
28327 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
28328 (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
28329 (gst_videoscale_planar400), (gst_videoscale_packed422),
28330 (gst_videoscale_packed422rev), (gst_videoscale_32bit),
28331 (gst_videoscale_24bit), (gst_videoscale_16bit),
28332 (gst_videoscale_bilinear), (gst_videoscale_bicubic),
28333 (gst_videoscale_scale_plane_slow),
28334 (gst_videoscale_scale_point_sample),
28335 (gst_videoscale_scale_nearest),
28336 (gst_videoscale_scale_nearest_str2),
28337 (gst_videoscale_scale_nearest_str4),
28338 (gst_videoscale_scale_nearest_32bit),
28339 (gst_videoscale_scale_nearest_24bit),
28340 (gst_videoscale_scale_nearest_16bit):
28341 add debugging category and use it properly
28342 fix use of GST_PTR_FORMAT
28344 2004-02-25 Andy Wingo <wingo@pobox.com>
28346 * gst/interleave/interleave.c (interleave_buffered_loop): Always
28347 push only when channel->buffer is NULL. Prevents segfaults doing
28348 the state change after a nonlocal exit, like a scheme exception.
28350 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
28351 Handle the case where the intersected caps is empty.
28353 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
28355 * gst/law/mulaw-decode.c: (mulawdec_link):
28356 * gst/law/mulaw.c: (plugin_init):
28357 fix mulawdec so it actually works again
28359 2004-02-24 Arwed v. Merkatz <v.merkatz@gmx.net>
28361 reviewed by: David Schleef <ds@schleef.org>
28363 * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
28364 (gst_gamma_init), (gst_gamma_set_property),
28365 (gst_gamma_get_property), (gst_gamma_calculate_tables),
28366 (gst_gamma_rgb24), (gst_gamma_rgb32): Adds gamma correction
28367 for RGB, with separate r g and b correction factors. (#131167)
28369 2004-02-24 Thomas Vander Stichele <thomas at apestaart dot org>
28371 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
28372 only signal tags for bitrate if they're > 0 (#134894)
28374 2004-02-24 David Schleef <ds@schleef.org>
28376 * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
28377 (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
28378 (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
28379 (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
28380 (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
28381 (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
28382 (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
28383 (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
28384 Cleanups. Convert g_prints to GST_LOGs. Add qtdemux debug
28385 category. Attempt to fix timestamp calculation.
28387 2004-02-24 Johan Dahlin <johan@gnome.org>
28389 * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
28391 2004-02-23 Thomas Vander Stichele <thomas at apestaart dot org>
28394 * gconf/Makefile.am:
28395 * gconf/gstreamer.schemas:
28396 * gst-libs/gst/gconf/Makefile.am:
28397 * gst-libs/gst/gconf/gconf.c:
28398 version gconf schemas and install locations
28400 2004-02-23 Benjamin Otte <otte@gnome.org>
28402 * ext/xine/xineinput.c: (gst_xine_input_dispose):
28403 (gst_xine_input_subclass_init):
28404 call parent dispose.
28405 change pad template for CD reader correctly
28406 * ext/xine/Makefile.am:
28407 * ext/xine/gstxine.h:
28408 * ext/xine/xine.c: (plugin_init):
28409 * ext/xine/xineaudiosink.c:
28410 wrap audio sinks, too
28411 * gst-libs/gst/resample/private.h:
28412 * gst-libs/gst/resample/resample.c: (gst_resample_init),
28413 (gst_resample_reinit), (gst_resample_scale),
28414 (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
28415 (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
28416 (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
28417 (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
28418 (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
28419 * gst-libs/gst/resample/resample.h:
28420 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
28421 (gst_audioscale_class_init), (gst_audioscale_link),
28422 (gst_audioscale_get_buffer), (gst_audioscale_init),
28423 (gst_audioscale_chain), (gst_audioscale_set_property),
28424 (gst_audioscale_get_property):
28425 * gst/audioscale/gstaudioscale.h:
28426 s/resample_*/gst_resample_*/i to not clobber namespaces
28428 2004-02-23 Julien MOUTTE <julien@moutte.net>
28430 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
28431 (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
28432 (gst_riff_create_video_template_caps),
28433 (gst_riff_create_audio_template_caps),
28434 (gst_riff_create_iavs_template_caps):
28435 * gst-libs/gst/riff/riff-media.h:
28436 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
28437 (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
28438 (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
28439 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
28440 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
28441 (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
28442 (gst_matroska_demux_plugin_init): First batch implementing audio and
28443 video codec tags in demuxers.
28445 2004-02-22 Benjamin Otte <otte@gnome.org>
28447 * ext/xine/Makefile.am:
28448 * ext/xine/gstxine.h:
28449 * ext/xine/xine.c: (plugin_init):
28450 * ext/xine/xineinput.c:
28451 add input plugin wrapper. Playback from files, http, mms and cdda
28453 * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
28454 remove leftover G_GNUC_UNUSED
28455 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
28456 (gst_asf_demux_identify_guid):
28457 improve debugging output
28459 2004-02-22 Benjamin Otte <otte@gnome.org>
28461 reported by: Padraig O'Briain <padraig.obriain@sun.com>
28464 replace test -e with test -x for mkinstalldirs to be more portable.
28467 2004-02-22 Benjamin Otte <otte@gnome.org>
28469 reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
28471 * gst/audioconvert/gstaudioconvert.c: (plugin_init):
28472 set rank to PRIMARY
28473 * gst/volume/gstvolume.c: (plugin_init):
28477 2004-02-22 Julio M. Merino Vidal <jmmv@menta.net>
28479 reviewed by Benjamin Otte <otte@gnome.org>
28481 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
28482 escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
28484 2004-02-22 Benjamin Otte <otte@gnome.org>
28487 export [_]*{gst,Gst,GST}.* symbols from plugins
28489 2004-02-22 Christophe Fergeau <teuf@gnome.org>
28491 reviewed by: Benjamin Otte <otte@gnome.org>
28493 * ext/lame/gstlame.c: (add_one_tag):
28494 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28495 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
28496 (gst_vorbisenc_metadata_set1):
28497 * gst/tags/gstid3tag.c:
28498 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
28499 apply fixes from bugs #135042 (lame can't write tags) and #133817
28500 (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
28502 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
28504 * configure.ac: Export only gst_plugin_desc from plugins.
28505 Note that this change only makes any effect with Linux using libtool
28506 1.5.2 or higher. Otherwise it is silently ignored, but it would build
28507 fine. And don't try to have several versions of libtool in different
28510 2004-02-20 Andy Wingo <wingo@pobox.com>
28512 * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
28513 interleave respectively.
28515 * gst/interleave/deinterleave.c: New plugin: deinterleave
28516 (replaces on oneton).
28517 * gst/interleave/interleave.c: New plugin: interleave.
28518 * gst/interleave/plugin.h: Support file.
28519 * gst/interleave/plugin.c: Support file.
28521 * configure.ac: Remove intfloat and oneton, add interleave.
28523 * ext/sndfile/gstsf.c: Handle events better.
28525 * gst/audioconvert/gstaudioconvert.c: Change to support int2float
28526 and float2int operation. int2float has scheduling problems as
28527 noted in in2float_chain.
28529 2004-02-20 Benjamin Otte <otte@gnome.org>
28531 * ext/xine/Makefile.am:
28532 * ext/xine/gstxine.h:
28534 * ext/xine/xineaudiodec.c:
28535 * ext/xine/xinecaps.c:
28536 add first version of xine plugin wrapper. Currently only wraps the
28537 QDM2 win32 DLL, and even that only in proof-of-concept quality.
28540 add xine plugin wrapper, disabled by default. Use --enable-xine to
28541 build. Note that it'll segfault on gst-register if you don't remove
28542 the goom and tvtime post plugins from xine.
28543 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
28544 (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
28545 add extradata parsing for QDM2.
28546 change around debugging prints.
28548 2004-02-19 Benjamin Otte <otte@gnome.org>
28550 * ext/lame/gstlame.c: (gst_lame_chain):
28551 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
28552 use gst_tag_list_insert when you want to insert tags
28554 2004-02-18 David Schleef <ds@schleef.org>
28556 * configure.ac: Move massink to gst-rotten
28558 * ext/mas/Makefile.am:
28559 * ext/mas/massink.c:
28560 * ext/mas/massink.h:
28562 2004-02-18 David Schleef <ds@schleef.org>
28564 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
28565 typefinding, since it seems to be worse than nothing.
28566 * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Add ftyp
28567 atom to recognize .mp4 and .m4a files as video/quicktime.
28569 2004-02-18 David Schleef <ds@schleef.org>
28571 * gst/sine/demo-dparams.c: (quit_live),
28572 (dynparm_log_value_changed), (dynparm_value_changed), (main):
28573 Use double dparams, not float.
28574 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28575 (gst_sinesrc_init): Change sync default to FALSE, since multiple
28576 sync'd elements don't really work correctly.
28577 * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
28578 (volume_update_volume), (volume_get_property): Change dparam
28581 2004-02-18 Julien MOUTTE <julien@moutte.net>
28583 * sys/ximage/ximagesink.c:
28584 (gst_ximagesink_xwindow_update_geometry),
28585 (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
28586 (gst_ximagesink_change_state), (gst_ximagesink_expose),
28587 (gst_ximagesink_init): Rework the way software video scaling works. So
28588 now we check on each chain call if the video frames are feeling the
28589 window. If not we try to renegotiate caps. On failure we memorize that
28590 and we won't try again for that PLAYING sessions.
28591 * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
28593 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
28596 2004-02-18 Thomas Vander Stichele <thomas at apestaart dot org>
28598 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
28599 break up _link so we can give a better debug message for errors
28601 2004-02-18 Thomas Vander Stichele <thomas at apestaart dot org>
28603 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
28604 set up debug category
28606 2004-02-18 Julien MOUTTE <julien@moutte.net>
28608 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28609 (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
28610 the way renegotiation work. The event handling function is not taking
28611 care of external windows and renegotiate method check for pad flags
28612 NEGOTIATING. Should fix : #133209
28614 2004-02-17 Julien MOUTTE <julien@moutte.net>
28616 * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
28617 pad is negotiating before trying renegotiation.
28619 2004-02-17 Thomas Vander Stichele <thomas at apestaart dot org>
28621 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
28622 pass on all possible mime types as typefind hints
28624 2004-02-17 Julien MOUTTE <julien@moutte.net>
28626 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
28627 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
28628 possible SHM leak if we crash. All other apps using XShm are doing
28631 2004-02-17 Julien MOUTTE <julien@moutte.net>
28633 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28634 (gst_ximagesink_expose): Renegotiate size on expose.
28635 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
28638 2004-02-16 Benjamin Otte <in7y118@public.uni-hamburg.de>
28640 * testsuite/alsa/sinesrc.c:
28641 cosmetic fix to fix compile issue with gcc 2.95.4
28643 2004-02-16 Julien MOUTTE <julien@moutte.net>
28645 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
28646 (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
28647 failed opening the audio device.
28648 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
28649 (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
28650 (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
28651 (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
28652 (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
28653 (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
28654 (gst_ximagesink_change_state), (gst_ximagesink_chain),
28655 (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
28656 Removing some useless g_return_if_fail like wingo suggested.
28657 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
28658 (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
28659 (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
28660 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
28661 (gst_xvimagesink_update_colorbalance),
28662 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
28663 (gst_xvimagesink_xcontext_clear),
28664 (gst_xvimagesink_get_fourcc_from_caps),
28665 (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
28666 (gst_xvimagesink_set_xwindow_id),
28667 (gst_xvimagesink_colorbalance_list_channels),
28668 (gst_xvimagesink_colorbalance_set_value),
28669 (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
28670 PAUSED. Removing some useless g_return_if_fail like wingo suggested.
28672 2004-02-16 Thomas Vander Stichele <thomas at apestaart dot org>
28674 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
28675 throw error when not negotiated instead of asserting
28677 2004-02-15 Julien MOUTTE <julien@moutte.net>
28679 * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
28680 correct data refcounting.
28682 2004-02-15 Julien MOUTTE <julien@moutte.net>
28684 * gst/switch/gstswitch.c: (gst_switch_change_state),
28685 (gst_switch_class_init): Cleaning the sinkpads correctly on state
28686 change, mostly the EOS flag.
28688 2004-02-15 Julien MOUTTE <julien@moutte.net>
28690 * examples/gstplay/player.c: (got_eos), (main): Adding some
28691 output for debugging.
28692 * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
28693 timeouts if we go to any state different from PLAYING.
28694 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
28695 more EOS bugs in riff lib.
28697 2004-02-14 Julien MOUTTE <julien@moutte.net>
28699 * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
28700 visualization until i find a way to fix switch correctly.
28701 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
28703 * gst/switch/gstswitch.c: (gst_switch_release_pad),
28704 (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
28705 (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
28706 Reworked switch to get a more correct behaviour with events and refing
28707 of data stored in sinkpads.
28708 * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
28709 we don't pull from a pad in EOS.
28711 2004-02-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
28713 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28714 remove v1 tag even if we can't read it (makes sure we don't detect
28717 2004-02-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
28719 * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
28720 (gst_alsa_xrun_recovery):
28721 * ext/alsa/gstalsa.h:
28722 try xrun recovery when wait failed. Make xrun recovery function
28723 return TRUE/FALSE to indicate success. (might fix #134354)
28725 2004-02-13 David Schleef <ds@schleef.org>
28727 * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
28728 (dynparm_value_changed), (main): Convert from float to double.
28729 * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
28731 2004-02-13 David Schleef <ds@schleef.org>
28733 * gst/silence/gstsilence.c: (gst_silence_class_init),
28734 (gst_silence_set_clock), (gst_silence_get),
28735 (gst_silence_set_property), (gst_silence_get_property):
28736 * gst/silence/gstsilence.h: Add sync property.
28737 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28738 (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
28739 (gst_sinesrc_set_property), (gst_sinesrc_get_property):
28740 * gst/sine/gstsinesrc.h: Add sync property.
28742 2004-02-13 David Schleef <ds@schleef.org>
28744 * gst/intfloat/gstint2float.c: (conv_f32_s16),
28745 (gst_int2float_chain_gint16): Change stdint usage to glib types.
28747 2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
28751 * gst-libs/ext/Makefile.am:
28752 move ffmpeg plugin to gst-ffmpeg module
28754 2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
28756 * configure.ac: use GST_ARCH to detect architecture
28758 2004-02-12 Julien MOUTTE <julien@moutte.net>
28760 * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
28762 2004-02-12 Thomas Vander Stichele <thomas at apestaart dot org>
28764 * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
28765 classify LADSPA plugins based on number of src/sink pads
28766 (#133663, Stefan Kost)
28767 * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
28768 fix dparams registration
28769 (#133528, Stefan Kost)
28770 * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
28771 fix use of isprint and use g_ascii_isprint instead
28772 (#133316, Stefan Kost)
28774 2004-02-11 David Schleef <ds@schleef.org>
28776 Convert a few inner loops to use liboil. This is currently
28777 optional, and is only enabled if liboil is present (duh!).
28778 * configure.ac: Check for liboil-0.1
28779 * gst/intfloat/Makefile.am:
28780 * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
28781 (gst_int2float_chain_gint16):
28782 * gst/videofilter/Makefile.am:
28783 * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
28784 (tablelookup_u8), (gst_videobalance_planar411):
28785 * gst/videotestsrc/Makefile.am:
28786 * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
28787 * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
28788 (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
28789 (paint_hline_RGB565), (paint_hline_xRGB1555):
28791 2004-02-11 David Schleef <ds@schleef.org>
28793 * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
28794 (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
28795 (gst_colorspace_getcaps), (gst_colorspace_link),
28796 (gst_colorspace_base_init), (gst_colorspace_init),
28797 (gst_colorspace_chain), (gst_colorspace_change_state),
28798 (plugin_init): Merge Ronald's patch (bug #117897) and update
28799 for new caps and negotiation. Seems to work, although it
28800 shows off bugs in lcs.
28802 2004-02-11 David Schleef <ds@schleef.org>
28804 * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
28805 (bug #133886) Noticed by bugs@leroutier.net (Stephane LOEUILLET)
28807 2004-02-11 David Schleef <ds@schleef.org>
28809 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
28810 (gst_rfbsrc_change_state), (gst_rfbsrc_init),
28811 (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
28812 Add server and port properties
28814 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
28819 * m4/as-liblame.m4:
28820 * m4/as-slurp-ffmpeg.m4:
28821 * m4/check-libheader.m4:
28828 * m4/gst-ivorbis.m4:
28829 * m4/gst-matroska.m4:
28831 * m4/gst-shout2.m4:
28839 fix underquotedness of macros (#133800)
28840 * m4/as-avifile.m4:
28842 removed because no longer used
28844 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
28847 require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
28848 by autopoint (fixes #132996)
28850 2004-02-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
28852 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
28853 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
28854 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
28855 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
28858 2004-02-11 David Schleef <ds@schleef.org>
28860 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
28861 (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
28862 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
28863 (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
28864 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
28865 (gst_jpegenc_class_init), (gst_jpegenc_init),
28866 (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
28867 (gst_jpegenc_chain), (gst_jpegenc_set_property),
28868 (gst_jpegenc_get_property): Fix negotiation. Add some properties.
28869 * ext/jpeg/gstjpegenc.h: Fix negotiation.
28871 2004-02-10 Benjamin Otte <in7y118@public.uni-hamburg.de>
28873 * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
28874 (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
28875 * ext/mikmod/gstmikmod.h:
28876 fix caps negotiation in mikmod
28877 * ext/ogg/gstoggdemux.c: (gst_ogg_print):
28878 output debug information
28880 2004-02-08 Benjamin Otte <in7y118@public.uni-hamburg.de>
28882 * gst-libs/gst/colorbalance/Makefile.am:
28883 * gst-libs/gst/navigation/Makefile.am:
28884 * gst-libs/gst/xoverlay/Makefile.am:
28885 remove unused GST_OPT_CFLAGS from Makefiles
28886 include X_CFLAGS and X_LIBS in xoverlay. (#131948)
28888 2004-02-07 David Schleef <ds@schleef.org>
28890 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
28891 push events to pads that haven't been created (#133508)
28893 2004-02-07 Jan Schmidt <thaytan@mad.scientist.com>
28895 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
28896 (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
28897 (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
28898 (gst_dvdec_loop), (gst_dvdec_change_state):
28899 Second attempt at committing a working dvdec element.
28901 2004-02-06 David Schleef <ds@schleef.org>
28903 Build fixes for OS X: (see #129600)
28904 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
28905 (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
28906 (gst_riff_read_strf_iavs):
28907 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
28908 (gst_avi_demux_stream_odml):
28909 * gst/playondemand/Makefile.am:
28910 * gst/rtp/rtp-packet.c:
28912 2004-02-05 David Schleef <ds@schleef.org>
28914 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
28915 last change, because it Just Doesn't Compile.
28917 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
28919 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28920 skip undecodable id3v2 tag instead of keeping it
28922 2004-02-05 David Schleef <ds@schleef.org>
28924 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
28925 Unref leaked buffer. (Noticed by Ronald)
28927 2004-02-05 David I. Lehn <dlehn@users.sourceforge.net>
28929 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28930 Sync requires with other checks. >= vs =.
28932 2004-02-06 Jan Schmidt <thaytan@mad.scientist.com>
28934 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
28935 (gst_dvdec_video_link), (gst_dvdec_loop):
28936 * ext/dv/gstdvdec.h:
28937 rework the caps negotiation so that dvdec works again instead
28938 of just segfaulting.
28940 === release 0.7.4 ===
28942 2004-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
28944 * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
28945 * configure.ac: changed for release
28947 2004-02-05 Thomas Vander Stichele <thomas at apestaart dot org>
28949 * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
28950 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
28951 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28952 * pkgconfig/gstreamer-play-uninstalled.pc.in:
28953 reworked patch by David Lehn to fix libdir and includedir for
28954 uninstalled libraries
28955 removed play and gconf from gstreamer-libs since they have their
28956 own pkgconfig files
28958 2004-02-04 David Schleef <ds@schleef.org>
28960 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
28963 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
28965 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
28966 use correct GST_TAG_ENCODER tag
28968 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
28970 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
28971 be sure to stop the clock when going to paused
28972 * sys/oss/gstosssink.c: (gst_osssink_change_state):
28973 reset number of transmitted when going to ready.
28976 2004-02-05 Charles Schmidt <cschmidt2@emich.edu>
28978 reviewed by Benjamin Otte
28980 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28981 extract track count (fixes #133410)
28983 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
28985 * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
28986 that should be !=, not == (fixes #132519)
28988 2004-02-04 David Schleef <ds@schleef.org>
28990 Make sure set_explicit_caps() is called before adding pad.
28991 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
28992 * gst/id3/gstid3types.c: (gst_id3types_loop):
28993 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
28994 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
28996 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
28999 bump nano to 2, first prerelease
29000 put back AM_PROG_LIBTOOL
29002 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
29004 * testsuite/alsa/Makefile.am:
29005 these are user test apps, not automatic testsuite tests
29007 2004-02-04 David Schleef <ds@schleef.org>
29009 Convert GST_DEBUG_CAPS() to GST_DEBUG():
29010 * gst/mpeg1videoparse/gstmp1videoparse.c:
29011 (mp1videoparse_parse_seq):
29012 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
29013 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
29014 * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
29015 * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
29016 (gst_xvideosink_getcaps):
29017 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
29018 * testsuite/gst-lint: more tests
29020 2004-02-04 David Schleef <ds@schleef.org>
29022 Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
29023 with the code that they would expand to.
29024 * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
29025 (gst_flacdec_get_src_query_types),
29026 (gst_flacdec_get_src_event_masks):
29027 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
29028 (gst_gnomevfssrc_get_query_types),
29029 (gst_gnomevfssrc_get_event_mask):
29031 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
29033 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
29034 (gst_sinesrc_dispose):
29035 fix memleak by properly disposing sinesrc
29037 2004-02-04 Julien MOUTTE <julien@moutte.net>
29039 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
29040 * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
29041 an overlay to redraw the image because it has been exposed.
29042 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
29043 (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
29044 (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
29045 * sys/ximage/ximagesink.h: Implement expose method from XOverlay
29047 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
29048 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
29049 (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
29050 * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
29053 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29055 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
29056 more memleak fixage
29058 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29060 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
29061 * gst/typefind/gsttypefindfunctions.c:
29062 fix memleaks shown by gst-typefind
29064 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
29066 * common/glib-gen.mak:
29067 add hack rule to touch .Plo files
29068 * gst-libs/gst/colorbalance/Makefile.am:
29069 * gst-libs/gst/mixer/Makefile.am:
29070 * gst-libs/gst/play/Makefile.am:
29071 * gst-libs/gst/tuner/Makefile.am:
29072 remove glib_root variable
29074 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29076 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
29077 set explicit caps before adding the element, so the autopluggers can
29079 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
29080 (mpeg2_sys_type_find), (mpeg1_sys_type_find),
29081 (mpeg_video_type_find), (mpeg_video_stream_type_find),
29083 fix memleaks in typefind functions. gst_type_find_suggest takes a const
29086 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
29088 * gst-libs/gst/colorbalance/Makefile.am:
29089 * gst-libs/gst/colorbalance/colorbalance-marshal.list:
29090 * gst-libs/gst/colorbalance/colorbalance.c:
29091 * gst-libs/gst/colorbalance/colorbalance.h:
29092 * gst-libs/gst/colorbalance/colorbalancemarshal.list:
29093 * gst-libs/gst/mixer/Makefile.am:
29094 * gst-libs/gst/mixer/mixer-marshal.list:
29095 * gst-libs/gst/mixer/mixer.c:
29096 * gst-libs/gst/mixer/mixer.h:
29097 * gst-libs/gst/mixer/mixermarshal.list:
29098 * gst-libs/gst/play/Makefile.am:
29099 * gst-libs/gst/play/play.h:
29100 * gst-libs/gst/tuner/Makefile.am:
29101 * gst-libs/gst/tuner/tuner-marshal.list:
29102 * gst-libs/gst/tuner/tuner.c:
29103 * gst-libs/gst/tuner/tuner.h:
29104 * gst-libs/gst/tuner/tunermarshal.list:
29105 use new glib-gen.mak snippet to clean up Makefile.am
29106 fix various bugs in Makefile.am's
29108 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29110 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
29111 handle chain parsing correctly in the multichain case
29112 * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
29113 (theora_dec_from_granulepos), (theora_dec_to_granulepos),
29114 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
29115 (theora_dec_chain):
29116 handle events and queries correctly
29118 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29121 Ignore generated file _stdint.h.
29123 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29125 * gst-libs/gst/colorbalance/Makefile.am:
29126 * gst-libs/gst/colorbalance/colorbalance.h:
29127 * gst-libs/gst/mixer/Makefile.am:
29128 * gst-libs/gst/mixer/mixer.h:
29129 * gst-libs/gst/play/Makefile.am:
29130 * gst-libs/gst/play/play.h:
29131 * gst-libs/gst/tuner/Makefile.am:
29132 * gst-libs/gst/tuner/tuner.h:
29133 Generate enum type code with glib-mkenums.
29134 * gst-libs/gst/colorbalance/.cvsignore:
29135 * gst-libs/gst/mixer/.cvsignore:
29136 * gst-libs/gst/play/.cvsignore:
29137 * gst-libs/gst/tuner/.cvsignore:
29138 Ignore generated files.
29140 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29142 * gst-libs/gst/audio/.cvsignore:
29143 Ignore generated file.
29144 * gst-libs/gst/audio/Makefile.am:
29145 Do not install example filter.
29147 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29149 * examples/switch/.cvsignore:
29150 Ignore generated file.
29152 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29154 * common/m4/ax_create_stdint_h.m4:
29156 add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
29159 remove generated _stdint.h in DISTCLEANFILES
29160 * ext/a52dec/gsta52dec.c:
29161 include _stdint.h for a52dec. (should fix #133064)
29163 2004-02-02 Jeremy Simon <jesimon@libertysurf.fr>
29165 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
29166 (gst_tag_to_vorbis_comments):
29167 Add replaygain support to vorbistag
29169 2004-02-02 Jeremy Simon <jesimon@libertysurf.fr>
29170 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
29171 (gst_ffmpeg_caps_to_extradata):
29172 Fix SVQ3 caps flag properties
29173 Use glib macro for bytes swap
29175 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29177 * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
29178 * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
29179 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
29180 * ext/sndfile/gstsf.c: (plugin_init):
29181 * gst/avi/gstavi.c: (plugin_init):
29182 * sys/dxr3/dxr3init.c: (plugin_init):
29183 * sys/oss/gstossaudio.c: (plugin_init):
29184 * sys/v4l/gstv4l.c: (plugin_init):
29185 * sys/v4l2/gstv4l2.c: (plugin_init):
29186 remove textdomain calls
29188 update Dutch translation
29190 2004-02-02 Julien MOUTTE <julien@moutte.net>
29192 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
29193 (gst_play_set_audio_sink): Moving volume in the audio thread for
29194 instantaneous volume change. Maybe i will add another volume in front
29195 of visualization later, not sure yet though.
29197 2004-02-02 Julien MOUTTE <julien@moutte.net>
29199 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
29200 (gst_ximagesink_handle_xevents): Better X events handling, only take
29201 the latest events for configure and motion.
29202 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
29204 2004-02-02 Jon Trowbridge <trow@gnu.org>
29206 reviewed by: David Schleef <ds@schleef.org>
29209 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
29210 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
29212 2004-02-02 David Schleef <ds@schleef.org>
29214 code cleanup. Change bzero() to memset(). Remove duplicate ; at ends
29216 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
29217 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
29218 * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
29219 * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
29220 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
29221 * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
29222 * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
29223 * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
29224 (gst_float2_2_int_link):
29225 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
29226 * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
29227 * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
29228 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
29229 * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
29230 * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
29231 * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
29232 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
29233 * testsuite/gst-lint: Add tests for bzero and ;;
29235 2004-02-02 David Schleef <ds@schleef.org>
29237 * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
29239 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29241 * ext/aalib/gstaasink.c: (gst_aasink_open):
29242 * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
29243 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29244 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
29245 * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
29246 (gst_afsink_close_file):
29247 * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
29248 (gst_afsrc_close_file):
29249 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
29250 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
29251 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
29252 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
29253 * ext/esd/esdmon.c: (gst_esdmon_get):
29254 * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
29255 * ext/faac/gstfaac.c: (gst_faac_chain):
29256 * ext/faad/gstfaad.c: (gst_faad_chain):
29257 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
29258 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
29259 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
29260 * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
29261 (gst_flacdec_loop):
29262 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
29263 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
29264 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
29265 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
29266 (gst_gnomevfssink_close_file):
29267 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
29268 (gst_gnomevfssrc_open_file):
29269 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
29270 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
29271 * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
29272 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
29273 (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
29274 * ext/mad/gstmad.c: (gst_mad_chain):
29275 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
29276 * ext/mpeg2dec/gstmpeg2dec.c:
29277 * ext/mpeg2enc/gstmpeg2enc.cc:
29278 * ext/mplex/gstmplex.cc:
29279 * ext/mplex/gstmplexibitstream.cc:
29280 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
29281 (gst_ogg_demux_push):
29282 * ext/raw1394/gstdv1394src.c:
29283 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
29284 (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
29285 * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
29287 * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
29288 * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
29289 * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
29290 * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
29291 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
29292 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
29293 * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
29294 * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
29295 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29296 (gst_riff_read_element_data), (gst_riff_read_seek),
29297 (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
29298 * gst/adder/gstadder.c: (gst_adder_loop):
29299 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
29300 (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
29301 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
29302 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
29303 * gst/avi/gstavimux.c: (gst_avimux_stop_file):
29304 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
29305 * gst/goom/gstgoom.c: (gst_goom_chain):
29306 * gst/id3/gstid3types.c: (gst_id3types_loop):
29307 * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
29308 * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
29309 * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
29310 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29311 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
29312 (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
29313 (gst_ebml_read_float), (gst_ebml_read_header):
29314 * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
29315 (gst_matroska_demux_parse_blockgroup):
29316 * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
29317 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
29318 * gst/oneton/gstoneton.c: (gst_oneton_chain):
29319 * gst/silence/gstsilence.c: (gst_silence_get):
29320 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
29321 * gst/smpte/gstsmpte.c: (gst_smpte_loop):
29322 * gst/speed/gstspeed.c: (speed_loop):
29323 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
29324 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
29325 * gst/volenv/gstvolenv.c: (gst_volenv_chain):
29326 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
29327 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
29328 (gst_wavparse_loop):
29329 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
29330 (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
29331 (dxr3audiosink_close):
29332 * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
29333 * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
29334 (dxr3videosink_close), (dxr3videosink_write_data):
29335 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
29336 * sys/oss/gstosssink.c: (gst_osssink_chain):
29337 * sys/oss/gstosssrc.c: (gst_osssrc_get):
29338 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
29339 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
29340 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
29341 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
29342 (gst_v4l_set_window), (gst_v4l_enable_overlay):
29343 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
29344 (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
29345 (gst_v4l_get_frequency), (gst_v4l_set_frequency),
29346 (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
29347 (gst_v4l_set_audio):
29348 * sys/v4l/v4l_calls.h:
29349 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
29350 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
29351 (gst_v4lmjpegsink_playback_init),
29352 (gst_v4lmjpegsink_playback_start):
29353 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
29354 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
29355 (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
29356 (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
29357 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
29358 * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
29359 (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
29360 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
29361 (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
29362 (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
29363 (gst_v4l2_get_output), (gst_v4l2_set_output),
29364 (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
29365 (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
29366 (gst_v4l2_set_attribute):
29367 * sys/v4l2/v4l2_calls.h:
29368 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
29369 (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
29370 (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
29371 (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
29372 (gst_v4l2src_capture_stop):
29373 * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
29374 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
29375 (gst_ximagesink_chain):
29376 * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
29377 (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
29378 (gst_xvideosink_xwindow_new):
29379 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29380 (gst_xvimagesink_chain):
29382 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29384 * gst/volume/gstvolume.c: (gst_volume_set_volume),
29385 (gst_volume_get_volume), (volume_class_init), (volume_init),
29386 (volume_chain_int16), (volume_update_volume):
29387 * gst/volume/gstvolume.h:
29388 make code more readable by removing magic numbers
29389 make mixer interface export 0-100 range
29390 make it internally map to 0.0-1.0 range so users don't distort
29391 output by putting the sliders at full volume
29393 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29395 * gst-libs/gst/play/play.c: (gst_play_tick_callback),
29396 (gst_play_state_change), (gst_play_seek_to_time):
29397 block the tick callback for 0.5 secs after doing a seek
29399 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29401 * gst-libs/gst/play/play.c: (gst_play_new):
29404 2004-02-01 Julien MOUTTE <julien@moutte.net>
29406 * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
29407 (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
29408 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
29409 (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
29410 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
29411 (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
29413 2004-02-01 Thomas Vander Stichele <thomas at apestaart dot org>
29416 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29417 check for a function added in vorbis 1.1
29419 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
29421 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
29422 (gst_alsa_drain_audio), (gst_alsa_stop_audio):
29423 really start/stop clock only on PLAYING <=> PAUSED
29424 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29425 remove \n from debugging lines
29426 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
29427 make it work when seeking does not
29428 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29431 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
29433 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
29434 start clock on PAUSED=>PLAYING, not later
29435 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
29436 extract correct time for different discont formats
29437 (gst_alsa_sink_get_time):
29438 don't segfault when no format is negotiated yet, just return 0
29439 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29440 (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
29441 (gst_ogg_pad_push):
29442 handle flush and discont events correctly
29443 * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
29444 handle discont events correctly
29446 2004-01-31 Thomas Vander Stichele <thomas at apestaart dot org>
29448 * gst-libs/gst/play/play.c: (gst_play_error_quark),
29449 (gst_play_error_create), (gst_play_error_plugin),
29450 (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
29451 * gst-libs/gst/play/play.h:
29452 add error handling during creation
29453 * examples/gstplay/player.c: (main):
29454 use new gst_play_new
29457 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
29459 * ext/theora/theoradec.c: (theora_dec_chain):
29461 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
29462 (vorbis_dec_src_event), (vorbis_dec_chain):
29463 add encoder tag, fix tag reading to be more error tolerant, change
29464 BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
29465 gst_pad_event_default.
29466 * gst/tags/gstvorbistag.c:
29467 (gst_tag_list_from_vorbiscomment_buffer):
29468 undefine function specific define at end of function
29470 2004-01-31 Jeremy Simon <jesimon@libertysurf.fr>
29472 * ext/flac/gstflac.c: (plugin_init):
29473 * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
29474 * ext/flac/gstflacdec.h:
29475 * ext/flac/gstflacenc.h:
29478 2004-01-30 David I. Lehn <dlehn@users.sourceforge.net>
29480 * examples/gstplay/player.c: s/gstplay.h/play.h/
29482 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29484 * gst-libs/gst/play/Makefile.am:
29485 * gst-libs/gst/play/gstplay.c:
29486 * gst-libs/gst/play/gstplay.h:
29487 * gst-libs/gst/play/play.c:
29488 more surgery, operation complete
29490 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29492 * gst-libs/gst/play/play.old.c:
29493 * gst-libs/gst/play/play.old.h:
29494 after CVS surgery by moving, remove
29495 * gst-libs/gst/play/playpipelines.c:
29498 * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
29499 add negotiation error
29501 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29503 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29504 (gst_ogg_demux_push):
29505 add some seeking debug info
29506 send a flush when seeking
29508 2004-01-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
29514 * ext/theora/Makefile.am:
29515 * ext/theora/theoradec.c:
29516 add theora video decoder. Does just do simple decoding for now and
29517 has been tested against Theora cvs only. It only works when theora
29518 is compiled with --enable-static.
29519 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29520 always reset packetno on DISCONT
29522 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29524 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
29527 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29529 * gst/mpegaudioparse/gstmpegaudioparse.c:
29530 (mp3_type_frame_length_from_header):
29531 Fix header parsing - stolen from ffmpeg (thank you! :) ).
29533 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29535 * ext/esd/esdsink.c: (gst_esdsink_init):
29536 Since we have static pad template caps, we don't need to negotiate;
29537 either the core errors out or we know the format.
29539 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29541 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29542 (gst_riff_read_seek):
29543 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29544 (gst_ebml_read_seek):
29545 Fix event handling.
29547 2004-01-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
29549 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
29550 removee video/x-theora from vp3 decoder, it doesn't handle raw
29552 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
29553 fix bug with finalizing element that never went to PAUSED
29554 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
29555 length and position queries were swapped
29556 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
29557 (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
29558 (vorbis_dec_src_event):
29559 implement querying time and bytes
29561 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29563 * just about every source file:
29564 gst_element_error -> GST_ELEMENT_ERROR
29566 2004-01-29 Julien MOUTTE <julien@moutte.net>
29568 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
29569 emiting FLUSH and even before DISCONT.
29570 * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
29571 get the best instant seeking as possible yay!
29573 2004-01-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
29575 * gst/mpeg1videoparse/gstmp1videoparse.c:
29576 (gst_mp1videoparse_real_chain):
29577 Committed wrong version last week... Grr... Didn't notice until now.
29579 2004-01-29 Julien MOUTTE <julien@moutte.net>
29581 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
29582 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
29583 have_xwindow_id signal in xwindow_create.
29585 2004-01-29 Benjamin Otte <in7y118@public.uni-hamburg.de>
29587 * ext/ogg/gstoggdemux.c:
29588 lots of changes - mainly support for chained bitstreams, seeking,
29589 querying and bugfixes of course
29590 * ext/vorbis/Makefile.am:
29591 * ext/vorbis/vorbisdec.c:
29592 * ext/vorbis/vorbisdec.h:
29593 add vorbisdec raw vorbis decoder
29594 * ext/vorbis/vorbis.c: (plugin_init):
29595 register vorbisdec as PRIMARY, vorbisfile as SECONDARY
29596 * gst/intfloat/Makefile.am:
29597 * gst/intfloat/float22int.c:
29598 * gst/intfloat/float22int.h:
29599 * gst/intfloat/gstintfloatconvert.c: (plugin_init):
29600 add float2intnew plugin. It converts multichannel interleaved float to
29601 multichannel interleaved int. The name should probably be changed.
29602 * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
29604 add typefinding for raw theora video so oggdemux can detect it.
29606 2004-01-28 Julien MOUTTE <julien@moutte.net>
29608 * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
29609 sink element first.
29610 * gst/videoscale/gstvideoscale.c:
29611 (gst_videoscale_handle_src_event): Fixing src event handler.
29613 2004-01-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
29615 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
29616 (gst_v4lsrc_open), (gst_v4lsrc_close),
29617 (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
29618 (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
29619 * sys/v4l/gstv4lsrc.h:
29620 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
29621 (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
29622 Implement resizing... Hack. But that's why v4l is b0rked...
29624 2004-01-28 Julien MOUTTE <julien@moutte.net>
29626 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
29627 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
29628 (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
29629 (gst_ximagesink_xwindow_destroy):
29630 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
29631 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
29632 (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
29633 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
29634 (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
29635 correctly cleaning the image created to check xshm calls on succes,
29636 added a lot of XSync calls in X11 functions, and fixed a segfault when
29637 no image format was defined before negotiation happened.
29639 2004-01-28 Benjamin Otte <in7y118@public.uni-hamburg.de>
29641 * ext/alsa/gstalsa.c: (gst_alsa_query_func):
29642 use gst_element_get_time to get correct time
29644 2004-01-28 Julien MOUTTE <julien@moutte.net>
29646 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
29647 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
29648 (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
29649 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
29650 (gst_xvimagesink_check_xshm_calls),
29651 (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
29652 X plugins are now able to detect that XShm calls will fail even if the
29653 server claims that it has XShm support (remote displays most of the
29654 time). We then log the error as a GST_DEBUG and set use_shm to FALSE
29655 so that we use non XShm functions. This feature is almost useless for
29656 xvimagesink as Xv is not supported on remote displays anyway, but
29657 it might happen than even on the local display XShm calls fail.
29659 2004-01-27 David Schleef <ds@schleef.org>
29661 * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
29662 (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
29663 (gst_esdsink_change_state): Fix sync issues in esdsink. Also
29664 changed esdsink to only use 44100,16,2, since esd sucks at rate
29665 conversion and esdsink has had difficulty negotiating.
29667 2004-01-27 Julien MOUTTE <julien@moutte.net>
29669 * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
29670 (gst_play_seek_to_time): Fixing the way to get current position.
29672 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
29674 * sys/oss/gstosssink.c: (gst_osssink_sink_query):
29675 use gst_element_get_time to get correct time
29677 2004-01-27 Julien MOUTTE <julien@moutte.net>
29679 * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
29680 fix ever... Inverting 2 lines of code make spider autoplug correctly
29683 2004-01-27 David Schleef <ds@schleef.org>
29685 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
29686 Use gst_pad_try_set_caps_nonfixed().
29688 2004-01-27 David Schleef <ds@schleef.org>
29690 * gst/ac3parse/gstac3parse.c: update to checklist 5
29691 * gst/adder/gstadder.c: rewrite negotiation. update to checklist 5
29692 * gst/audioconvert/gstaudioconvert.c: update to checklist 5
29693 * gst/audioscale/gstaudioscale.c: same
29694 * gst/auparse/gstauparse.c: same
29695 * gst/avi/gstavidemux.c: same
29697 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
29699 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
29700 stop processing after EOS
29702 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
29704 * gst/asfdemux/asfheaders.h:
29705 * gst/asfdemux/gstasfdemux.c:
29706 * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
29707 (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
29708 (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
29709 lot's of fixes to make data extraction simpler and get the code
29710 architecture and compiler independant. Add debugging category
29711 * gst/goom/gstgoom.c: (gst_goom_change_state):
29712 reset channel count on PAUSED=>READY, not READY=>PAUSED
29714 2004-01-26 Colin Walters <walters@verbum.org>
29716 * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
29717 code to pull a bigger buffer in iradio mode. This as a side effect
29718 makes typefinding work.
29720 2004-01-26 Jeremy Simon <jesimon@libertysurf.fr>
29722 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
29723 Fix SVQ3 decoding on PPC
29725 2004-01-26 Julien MOUTTE <julien@moutte.net>
29727 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
29728 that one managed to stay there... Fixed.
29730 2004-01-26 Jeremy Simon <jesimon@libertysurf.fr>
29732 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
29733 (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
29734 * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
29735 (qtdemux_video_caps):
29736 * gst/qtdemux/qtdemux.h:
29737 Add SVQ3 specific flags to qtdemux and ffmpeg
29739 2004-01-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
29741 * gst-libs/gst/audio/audio.h:
29742 remove buffer-frames from audio caps
29743 * gst/audioconvert/gstaudioconvert.c:
29744 fix plugin to really work.
29746 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29748 * gst-libs/gst/mixer/mixer.c:
29749 * gst-libs/gst/propertyprobe/propertyprobe.c:
29750 * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
29751 (gst_tuner_find_channel_by_name):
29752 * gst-libs/gst/tuner/tuner.h:
29753 Add gtk-doc style comments. Also fix a function name.
29755 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29757 * ext/divx/gstdivxdec.c: (gst_divxdec_init),
29758 (gst_divxdec_negotiate):
29759 Fix for new capsnego - also fixes gst-player with divxdec.
29761 2004-01-25 Julien MOUTTE <julien@moutte.net>
29763 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29764 (gst_play_identity_handoff), (gst_play_set_location),
29765 (gst_play_set_visualization), (gst_play_connect_visualization): Another
29766 try in visualization implementation. Still have an issue with switch
29767 blocking when pulling from video_queue and only audio comes out of
29769 * gst/switch/gstswitch.c: (gst_switch_release_pad),
29770 (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
29771 release method. And check if the pad is usable before pulling.
29773 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29775 * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
29776 (gst_videobalance_init),
29777 (gst_videobalance_colorbalance_list_channels),
29778 (gst_videobalance_colorbalance_set_value),
29779 (gst_videobalance_colorbalance_get_value),
29780 (gst_videobalance_update_properties),
29781 (gst_videobalance_update_tables_planar411),
29782 (gst_videobalance_planar411):
29783 * gst/videofilter/gstvideobalance.h:
29784 Implement lookup-tables. +/- 10x faster.
29786 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29788 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29789 (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29790 The index reading was broken. The rest worked fine, but the whole
29791 goal of my rewrite was to make avidemux readable, and this was
29792 not at all readable. Please use typed variables.
29794 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29796 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29797 Additional pad usability check.
29798 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
29799 (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
29800 (gst_mp1videoparse_real_chain):
29801 Fix MPEG video stream parsing. The original plugin had several
29802 issues, including not timestamping streams where the source was
29803 not timestamped (this happens with PTS values in mpeg system
29804 streams, but MPEG video is also a valid stream on its own so
29805 that needs timestamps too). We use the display time code for that
29806 for now. Also, if one incoming buffer contains multiple valid
29807 frames, we push them all on correctly now, including proper EOS
29808 handling. Lastly, several potential segfaults were fixed, and we
29809 properly sync on new sequence/gop headers to include them in next,
29810 not previous frames (since they're header for the next frame, not
29811 the previous). Also see #119206.
29812 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
29814 Move caps setting so we only do it after finding several valid
29815 MPEG-1 fraes sequentially, not right after the first one (which
29816 might be coincidental).
29817 * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
29818 (mpeg_video_type_find), (mpeg_video_stream_type_find),
29820 Add unsynced MPEG video stream typefinding, and change some
29821 probability values so we detect streams rightly. The idea is as
29822 follows: I can have an unsynced system stream which contains
29823 video. In the current code, I would randomly get a type for either
29824 system or video stream type found, because the probabilities are
29825 being calculated rather randomly. I now use fixed values, so we
29826 always prefer system stream if that was found (and that is how it
29827 should be). If no system stream was found, we can still identity the stream as video-only.
29829 2004-01-23 Benjamin Otte <in7y118@public.uni-hamburg.de>
29831 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29832 (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29833 don't write to buffer. Extract data without the need of
29834 __attribute__ ((packed))
29836 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29838 * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
29839 (mpeg1_sys_type_find):
29840 Fix MPEG-1 stream typefinding.
29842 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29844 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
29845 Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
29847 2004-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
29849 * ext/esd/esdsink.c: (gst_esdsink_open_audio):
29850 * ext/esd/gstesd.c: (plugin_init):
29851 private debugging, better error reporting
29853 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29855 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
29856 (gst_riff_read_init), (gst_riff_read_change_state):
29857 * gst-libs/gst/riff/riff-read.h:
29858 Remove stuff fromold metadata system.
29860 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29862 * ext/ogg/gstoggdemux.c:
29863 Fix wrong file comment.
29864 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29865 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
29866 Add metadata reading properly.
29868 2004-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
29871 Fix nas DIST_SUBDIRS
29873 Fix bug where make distcheck doesn't get run on adding stuff to
29876 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29878 * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
29879 * ext/divx/gstdivxdec.h:
29880 Fix divx3 ("msmpeg4") playback using divxdec.
29882 2004-01-23 Benjamin Otte <in7y118@public.uni-hamburg.de>
29884 * gst/typefind/gsttypefindfunctions.c:
29885 (mp3_type_frame_length_from_header): fix bug in length computation
29886 (mp3_type_find): improve debugging output
29888 2004-01-23 Julien MOUTTE <julien@moutte.net>
29890 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29891 (gst_play_set_location), (gst_play_seek_to_time),
29892 (gst_play_set_audio_sink), (gst_play_set_visualization),
29893 (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
29894 the pipeline from scratch. Visualization is back and switch went out as
29895 i realized it was not possible to use the way i wanted.
29896 * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
29897 (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
29898 clearing in state change from READY to NULL. So that one can clean the
29899 X ressources keeping the element.
29900 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29901 (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
29902 (gst_xvimagesink_colorbalance_set_value),
29903 (gst_xvimagesink_colorbalance_get_value),
29904 (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
29905 (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
29906 change from READY to NULL and fixed some stupid bugs in colorbalance
29907 get/set values. Also added the following feature : when nobody tries to
29908 set some values to the colorbalance levels before the xcontext is
29909 grabbed, then when creating channels list from Xv attributes we set the
29910 internal values to the Xv defaults. This way we handle buggy Xv drivers
29911 that set default hue values far from the middle of the range (Thanks
29912 to Jon Trowbridge for pointing that issue).
29913 * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
29914 colorbalance levels have been set before xcontext is grabbed.
29916 2004-01-22 Ronald Bultje <rbultje@ronald.bitfreak.net>
29918 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
29919 Fix the ossmixer case where we shouldn't open /dev/dsp* because
29920 it might block operations (which is bad for a mixer).
29922 2004-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
29924 * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
29925 (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
29926 (gmip_find_type_pre):
29927 * gst-libs/gst/media-info/media-info-priv.h:
29928 * gst-libs/gst/media-info/media-info.c:
29929 (gst_media_info_instance_init), (gst_media_info_read_idler):
29930 add fakesink to get caps on decoder src pad again
29931 fix callback prototype to match new have_type signal signature
29933 2004-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
29935 * gst/adder/gstadder.c: (gst_adder_link):
29936 fix non-compile and cut-n-paste code
29938 2004-01-21 David Schleef <ds@schleef.org>
29940 * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
29941 (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
29942 (gst_swfdec_init), (gst_swfdec_change_state):
29943 * ext/swfdec/gstswfdec.h:
29945 * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
29946 (gst_adder_request_new_pad): Fix negotiation.
29947 * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
29948 Add a fixate function.
29949 * gst/intfloat/gstfloat2int.c:
29950 * gst/intfloat/gstfloat2int.h:
29951 * gst/intfloat/gstint2float.c:
29952 * gst/intfloat/gstint2float.h:
29953 Completely rewrite the negotiation. Doesn't quite work yet,
29954 due to some buffer-frames problem.
29956 2004-01-21 Thomas Vander Stichele <thomas at apestaart dot org>
29958 * ext/gnomevfs/gstgnomevfssrc.c:
29959 * sys/v4l2/v4l2_calls.h:
29960 fix includes for distcheck
29962 2004-01-21 Christian Schaller <uraeus@gnome.org>
29965 Add libnas (network audio system) plugin, patch from Arwed von Merkatz
29966 based on earlier patch from Laurent Vivier
29968 2004-01-20 Jeremy Simon <jesimon@libertysurf.fr>
29970 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
29971 Fix wma caps property
29972 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
29973 Fix typo (flags1 and flags2)
29975 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
29977 * gst-libs/gst/media-info/media-info-priv.c:
29978 (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
29979 (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
29980 (gmip_find_stream), (gmip_find_track_metadata),
29981 (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
29982 (gmip_find_track_format):
29983 * gst-libs/gst/media-info/media-info-priv.h:
29984 * gst-libs/gst/media-info/media-info-test.c: (main):
29985 * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
29986 (gst_media_info_read_idler), (gst_media_info_read):
29987 * gst-libs/gst/media-info/media-info.h:
29988 register debugging category and use it for debugging
29990 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
29992 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
29993 (gst_vorbisfile_new_link):
29994 signal streaminfo through tags
29996 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
29998 * ext/mplex/gstmplex.cc:
29999 * ext/mplex/gstmplexibitstream.cc:
30000 g++ doesn't like NULL in our i18n/error macros, should be
30001 either (NULL) or ("").
30003 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
30005 * sys/dxr3/dxr3audiosink.c:
30006 * sys/dxr3/dxr3init.c:
30007 * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
30008 * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
30009 Fix more error error error errors (missing includes here).
30011 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
30013 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30014 fix thomas' error errors.
30016 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
30018 * ext/mpeg2enc/gstmpeg2enc.cc:
30021 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
30023 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
30024 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
30025 Fix for new error system.
30027 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
30029 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
30030 fix for new error reporting
30032 2004-01-20 David Schleef <ds@schleef.org>
30034 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
30035 (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
30036 (gst_ximagesink_set_xwindow_id): Change to using a framerate
30037 of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
30038 and neither is 100+, most likely.
30039 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
30040 (gst_xvimagesink_getcaps): same
30042 2004-01-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
30045 Up version requirement to 2.0.3 (not yet released) to avoid symbol
30046 clashes with ffmpeg.
30048 2004-01-20 Julien MOUTTE <julien@moutte.net>
30050 * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
30051 (gst_switch_init): Fixed switch element : proxying link and setting
30052 caps from src to sink on request.
30054 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30056 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
30057 * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
30058 (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
30061 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30063 * sys/v4l/v4l_calls.h:
30064 * sys/v4l2/v4l2_calls.h:
30065 element_error fixes
30067 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30069 * gst-libs/gst/gst-i18n-plugin.h:
30071 remove config.h inclusion
30073 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30076 adding autopoint invocation
30079 * gst-libs/gst/gettext.h:
30080 adding gettext bits
30081 * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
30082 * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
30083 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
30084 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
30085 (gst_gnomevfssink_close_file):
30086 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
30087 * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
30088 * gst-libs/gst/gst-i18n-plugin.h:
30089 * gst/avi/gstavi.c: (plugin_init):
30090 * sys/dxr3/dxr3init.c: (plugin_init):
30091 * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
30092 * sys/oss/gstossaudio.c: (plugin_init):
30093 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
30094 * sys/v4l/gstv4l.c: (plugin_init):
30095 * sys/v4l/v4l_calls.c: (gst_v4l_open):
30096 * sys/v4l2/gstv4l2.c: (plugin_init):
30097 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
30098 (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
30099 (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
30100 (gst_v4l2_set_output), (gst_v4l2_get_frequency),
30101 (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
30102 (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
30103 make sure locale and translation domain are set
30104 fix translated strings
30110 put translation files into place
30111 * sys/xvideo/imagetest.c: (main):
30112 * ext/dv/demo-play.c: (main):
30113 fix unnecessary translations
30115 2004-01-19 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
30117 * ext/sndfile/gstsf.c:
30118 * gst/avi/gstavimux.c:
30119 * ext/audiofile/gstafsink.c:
30120 * ext/audiofile/gstafsrc.c:
30121 * ext/gnomevfs/gstgnomevfssink.c:
30122 * ext/gnomevfs/gstgnomevfssrc.c:
30123 * sys/oss/gstosselement.c:
30124 * sys/v4l/v4l_calls.h:
30127 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30129 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
30130 (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
30131 (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
30132 (gst_v4l2_get_output), (gst_v4l2_set_output),
30133 (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
30134 (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
30135 (gst_v4l2_set_attribute):
30136 update to new error handling
30138 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30140 * ext/sidplay/gstsiddec.cc:
30141 * gst/modplug/gstmodplug.cc:
30142 parenthese NULL because C++ seems angry about it
30144 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30146 * gst-libs/gst/gst-i18n-plugin.h:
30147 add skeleton i18n stuff, but needs to be further implemented
30149 2004-01-18 Thomas Vander Stichele <thomas at apestaart dot org>
30151 * examples/gstplay/player.c: (main):
30152 * ext/aalib/gstaasink.c: (gst_aasink_open):
30153 * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
30154 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
30155 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
30156 * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
30157 (gst_afsink_close_file):
30158 * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
30159 (gst_afsrc_close_file):
30160 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
30161 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
30162 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
30163 * ext/esd/esdmon.c: (gst_esdmon_get):
30164 * ext/esd/esdsink.c: (gst_esdsink_chain):
30165 * ext/faac/gstfaac.c: (gst_faac_chain):
30166 * ext/faad/gstfaad.c: (gst_faad_chain):
30167 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
30168 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
30169 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
30170 * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
30171 (gst_flacdec_loop):
30172 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
30173 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
30174 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
30175 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
30176 (gst_gnomevfssink_close_file):
30177 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
30178 (gst_gnomevfssrc_open_file):
30179 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
30180 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
30181 * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
30182 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
30183 (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
30184 * ext/mad/gstmad.c: (gst_mad_chain):
30185 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
30186 * ext/mpeg2dec/gstmpeg2dec.c:
30187 * ext/mpeg2enc/gstmpeg2enc.cc:
30188 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30189 * ext/mplex/gstmplex.cc:
30190 * ext/mplex/gstmplexibitstream.cc:
30191 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
30192 (gst_ogg_demux_push), (gst_ogg_pad_push):
30193 * ext/raw1394/gstdv1394src.c:
30194 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
30195 (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
30196 * ext/sidplay/gstsiddec.cc:
30197 * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
30199 * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
30200 * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
30201 * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
30202 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
30203 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
30204 * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
30205 * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
30206 * gst-libs/gst/Makefile.am:
30207 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
30208 (gst_riff_read_element_data), (gst_riff_read_seek),
30209 (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
30210 * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
30211 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
30212 (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
30213 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
30214 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
30215 * gst/avi/gstavimux.c: (gst_avimux_stop_file):
30216 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
30217 * gst/goom/gstgoom.c: (gst_goom_chain):
30218 * gst/id3/gstid3types.c: (gst_id3types_loop):
30219 * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
30220 * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
30221 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
30222 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
30223 (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
30224 (gst_ebml_read_float), (gst_ebml_read_header):
30225 * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
30226 (gst_matroska_demux_parse_blockgroup):
30227 * gst/modplug/gstmodplug.cc:
30228 * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
30229 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
30230 * gst/oneton/gstoneton.c: (gst_oneton_chain):
30231 * gst/silence/gstsilence.c: (gst_silence_get):
30232 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
30233 * gst/smpte/gstsmpte.c: (gst_smpte_loop):
30234 * gst/speed/gstspeed.c: (speed_loop):
30235 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
30236 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30237 * gst/volenv/gstvolenv.c: (gst_volenv_chain):
30238 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
30239 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
30240 (gst_wavparse_loop):
30241 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
30242 (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
30243 (dxr3audiosink_close):
30244 * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
30245 * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
30246 (dxr3videosink_close), (dxr3videosink_write_data):
30247 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
30248 * sys/oss/gstosselement.h:
30249 * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
30250 (gst_osssink_chain):
30251 * sys/oss/gstosssrc.c: (gst_osssrc_get):
30252 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
30253 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
30254 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
30255 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
30256 (gst_v4l_enable_overlay):
30257 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
30258 (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
30259 (gst_v4l_get_frequency), (gst_v4l_set_frequency),
30260 (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
30261 (gst_v4l_set_audio):
30262 * sys/v4l/v4l_calls.h:
30263 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
30264 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
30265 (gst_v4lmjpegsink_playback_init),
30266 (gst_v4lmjpegsink_playback_start):
30267 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
30268 (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
30269 (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
30270 (gst_v4lmjpegsrc_requeue_frame):
30271 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
30272 (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
30273 (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
30274 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
30275 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
30276 (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
30277 (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
30278 (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
30279 (gst_v4l2src_capture_stop):
30280 * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
30281 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
30282 (gst_ximagesink_chain):
30283 * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
30284 (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
30285 (gst_xvideosink_xwindow_new):
30286 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30287 (gst_xvimagesink_chain):
30288 use new error signal, function and categories
30290 2004-01-18 Jeremy Simon <jesimon@libertysurf.fr>
30294 * ext/musicbrainz/gsttrm.c:
30295 * ext/musicbrainz/gsttrm.h:
30296 * ext/musicbrainz/Makefile.am:
30299 2004-01-18 Julien MOUTTE <julien@moutte.net>
30301 * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
30302 (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
30303 synchronous property for debugging.
30304 * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
30305 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30306 (gst_xvimagesink_set_property): Moving a pointer declaration to a
30307 smaller block, fixing indent.
30309 2004-01-16 David Schleef <ds@schleef.org>
30311 * gst/videofilter/gstvideobalance.c: Fix regression; changing a
30312 property affects the video stream.
30313 * sys/xvimage/xvimagesink.c:
30314 * sys/xvimage/xvimagesink.h:
30315 Add synchronous property for debugging. Should probably be
30316 disabled in non-CVS builds. Make sure that the Xv attribute
30317 exists before we set it (crash!). Fix a silly float bug that
30318 caused colorbalance to just not work.
30320 2004-01-17 Christian Schaller <Uraeus@gnome.org>
30322 * tools/gst-launch-ext.in - update for new plugins
30324 2004-01-16 David Schleef <ds@schleef.org>
30326 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
30327 already-freed caps.
30329 2994-01-16 Christian Schaller <Uraeus@gnome.org>
30331 * Update spec for new colorspace plugin and libcaca plugin
30332 * Fix compilation of libcaca plugin (clock -> id)
30334 2004-01-16 Julien MOUTTE <julien@moutte.net>
30336 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
30337 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
30338 (gst_xvimagesink_set_xwindow_id),
30339 (gst_xvimagesink_colorbalance_set_value),
30340 (gst_xvimagesink_colorbalance_get_value),
30341 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
30342 (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
30343 correct colorbalance properties. They can now be set when the element
30344 is still in NULL state. The values will be committed to the Xv Port
30345 when xcontext is initialized.
30346 * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
30347 brightness int values in the GstXvImagesink structure.
30349 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
30351 * gst-libs/gst/Makefile.am:
30352 restructure so having local patches works easier.
30354 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
30356 * ext/mpeg2enc/Makefile.am:
30357 * ext/mpeg2enc/gstmpeg2enc.cc:
30358 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30359 Bugfix with respect to EOS handling.
30361 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
30363 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
30364 Link with right caps (else, it segfaults).
30365 * ext/mplex/gstmplexjob.cc:
30366 Fix for slight API change in 1.6.1.93 release of mjpegtools.
30368 2004-01-15 David Schleef <ds@schleef.org>
30370 * gst-libs/gst/audio/Makefile.am:
30371 Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
30373 * gst-libs/gst/audio/gstaudiofilter.c:
30374 * gst-libs/gst/audio/gstaudiofilter.h:
30375 Add bytes_per_sample and size and n_samples calculation.
30376 * gst-libs/gst/audio/gstaudiofilterexample.c:
30377 Remove, now autogenerated.
30378 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
30379 Moved from gstaudiofilterexample, object name changed, code added
30380 so that it actually works.
30381 * gst-libs/gst/audio/make_filter:
30382 Script to build an audiofilter subclass from the template.
30383 * gst/colorspace/Makefile.am:
30384 * gst/colorspace/yuv2yuv.c:
30385 Remove file, since it's GPL, and we don't use it.
30387 2004-01-15 Julien MOUTTE <julien@moutte.net>
30389 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30390 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
30391 them use the buffer free function to test how the buffer was allocated.
30393 2004-01-15 David Schleef <ds@schleef.org>
30395 * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
30396 that handles osssink fallback.
30397 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
30398 (gst_audio_convert_getcaps):
30399 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
30400 Add audio/x-qdm2 for QDM2 audio.
30401 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
30402 * gst/sine/gstsinesrc.h: Add example of how to implement tags.
30403 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
30404 Decrease minimum size to 16x16.
30405 * gst/wavparse/gstwavparse.c:
30406 Convert disabled pad template caps to new caps.
30407 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
30408 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30409 (gst_xvimagesink_chain): Throw element error when display cannot
30410 be opened. Increase minimum framerate to 1.0. Check the data
30411 free function on a buffer to make sure it is the type we expect
30412 before manipulating it.
30414 2004-01-15 Julien MOUTTE <julien@moutte.net>
30416 * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
30417 (gst_videobalance_colorbalance_set_value): Implement passthru if
30418 settings are in the middle.
30419 * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
30421 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30423 * gst/videofilter/Makefile.am:
30424 * gst/volume/Makefile.am:
30425 Since we use videofilter symbols, link to it.
30427 2004-01-15 Julien MOUTTE <julien@moutte.net>
30429 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
30430 mixer interface type to HARDWARE.
30431 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
30433 * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
30434 * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
30435 * gst/volume/gstvolume.c: (gst_volume_interface_supported),
30436 (gst_volume_interface_init), (gst_volume_list_tracks),
30437 (gst_volume_set_volume), (gst_volume_get_volume),
30438 (gst_volume_set_mute), (gst_volume_mixer_init),
30439 (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
30440 (volume_init): Implementing mixer interface.
30441 * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
30442 * sys/oss/gstosselement.c: (gst_osselement_get_type),
30443 (gst_osselement_change_state): Removing some trailing commas in
30445 * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
30446 interface type to HARDWARE.
30447 * sys/v4l/gstv4lcolorbalance.c:
30448 (gst_v4l_color_balance_interface_init): Setting colorbalance interface
30450 * sys/v4l2/gstv4l2colorbalance.c:
30451 (gst_v4l2_color_balance_interface_init): Setting colorbalance
30452 interface type to HARDWARE.
30453 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
30454 same code than ximagesink for event handling.
30456 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30458 * ext/snapshot/Makefile.am:
30459 * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
30460 (gst_snapshot_chain):
30461 * ext/snapshot/gstsnapshot.h:
30462 This has to be a joke... Snapshot should be connected to a tee,
30463 colorspace element before it and EOS after that, where the other
30464 src of the tee receives normal data.
30465 The current way is *wrong*.
30467 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30469 * ext/hermes/gsthermescolorspace.c:
30470 Fix another compile error. Same as below.
30472 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30474 * gst/colorspace/gstcolorspace.c:
30475 * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
30476 (gst_colorspace_i420_to_yv12):
30477 Fix compiling... Didn't test if it actually works.
30479 2004-01-15 David Schleef <ds@schleef.org>
30482 * gst/colorspace/Makefile.am:
30483 * gst/colorspace/gstcolorspace.c:
30484 * gst/colorspace/gstcolorspace.h:
30485 * gst/colorspace/yuv2rgb.c:
30486 * gst/colorspace/yuv2rgb.h:
30487 Duplicate the ext/hermes colorspace plugin, and remove Hermes
30488 code and GPL code. Fix for new caps negotiation. Rewrite
30489 much of the format handling code, and some of the conversion
30490 code. Basically, rewrote almost everything. This element
30491 handles I420, YV12 to RGB conversions.
30492 * ext/hermes/Makefile.am:
30493 * ext/hermes/gsthermescolorspace.c:
30494 Rename colorspace to hermescolorspace. Fix negotiation issues.
30495 Remove non-Hermes related code. This element handles lots of
30496 RGB to RGB conversions, but no YUV.
30497 * ext/hermes/gstcolorspace.c:
30498 * ext/hermes/gstcolorspace.h:
30499 * ext/hermes/rgb2yuv.c:
30500 * ext/hermes/yuv2rgb.c:
30501 * ext/hermes/yuv2rgb.h:
30502 * ext/hermes/yuv2rgb_mmx16.s:
30503 * ext/hermes/yuv2yuv.c:
30504 * ext/hermes/yuv2yuv.h:
30507 2004-01-14 Colin Walters <walters@verbum.org>
30509 * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
30510 they've already been.
30512 2004-01-15 Benjamin Otte <in7y118@public.uni-hamburg.de>
30514 * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
30515 assume tag mode when pad is not connected
30517 2004-01-15 Benjamin Otte <in7y118@public.uni-hamburg.de>
30519 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30520 Don't update the time of the clock
30521 (gst_alsa_sink_loop):
30522 sync to the clock given to alsasink, not the own clock
30523 * sys/oss/gstosssink.c: (gst_osssink_chain):
30525 (gst_osssink_change_state):
30527 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30528 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
30529 remove bogus code that made DISCONT events unhandled
30530 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
30531 explicitly case to double in _set_simple. (fixes 2nd warning in bug
30533 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
30534 (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
30535 (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
30536 convert g_warning because of wrong asf data to GST_WARNINGs (fixes
30537 2nd warning in bug #131502)
30539 2004-01-14 Julien MOUTTE <julien@moutte.net>
30541 * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
30542 (gst_videobalance_colorbalance_set_value),
30543 (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
30544 for colorbalance interface implementation.
30545 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
30546 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
30547 (gst_ximagesink_dispose), (gst_ximagesink_init),
30548 (gst_ximagesink_class_init): Adding DISPLAY property.
30549 * sys/ximage/ximagesink.h: Adding display_name to store display.
30550 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30551 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
30552 (gst_xvimagesink_dispose), (gst_xvimagesink_init),
30553 (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
30554 properties (they still need polishing though for gst-launch use : no
30555 xcontext yet, i ll do that tomorrow).
30556 * sys/xvimage/xvimagesink.h: Adding display_name to store display.
30558 2004-01-14 Julien MOUTTE <julien@moutte.net>
30560 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
30561 (gst_play_set_location), (gst_play_set_visualization): Preparing
30562 switch integration, adding videobalance in the pipeline.
30564 2004-01-14 Julien MOUTTE <julien@moutte.net>
30566 * gst-libs/gst/colorbalance/colorbalance.c:
30567 (gst_color_balance_class_init): Adding a default type.
30568 * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
30570 * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
30571 (gst_videobalance_dispose), (gst_videobalance_class_init),
30572 (gst_videobalance_init), (gst_videobalance_interface_supported),
30573 (gst_videobalance_interface_init),
30574 (gst_videobalance_colorbalance_list_channels),
30575 (gst_videobalance_colorbalance_set_value),
30576 (gst_videobalance_colorbalance_get_value),
30577 (gst_videobalance_colorbalance_init): Implementing colorbalance
30579 * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
30581 * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
30582 bug which was triggering a BadAccess X error when setting an overlay
30583 before pad was really negotiated.
30584 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
30585 Using the colorbalance type macro.
30587 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30589 * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
30590 (gst_flacenc_chain):
30591 handle tags correctly
30592 * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
30593 extract ID3v1 tags correctly
30595 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
30597 * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
30599 Improve matroska typefinding for odd-typed headers...
30601 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
30603 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
30604 Fix for using incremental number on padnames.
30606 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
30608 * ext/divx/gstdivxdec.c:
30609 * ext/divx/gstdivxenc.c:
30610 Set category to divx4linux instead of divx (too generic).
30611 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
30612 (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
30613 (gst_wavparse_loop), (gst_wavparse_change_state):
30614 * gst/wavparse/gstwavparse.h:
30615 fix parsing of WAV files with non-standard fmt-tag size and fix
30616 skipping of unrecognized chunks... Someone please fix this thing
30617 to use rifflib so all this is automated.
30618 * sys/v4l/Makefile.am:
30619 * sys/v4l2/Makefile.am:
30620 Add X_CFLAGS because we depend on X (for overlay).
30622 2004-01-14 Jan Schmidt <thaytan@mad.scientist.com>
30624 * ext/mpeg2dec/gstmpeg2dec.c:
30625 Don't issue a timestamp unless we tagged the frame
30628 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30630 * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
30631 Query the audio element to get the time, not the clock. We're
30632 interested in the element's time here.
30634 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30636 * ext/aalib/gstaasink.c: (gst_aasink_chain):
30637 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30638 * ext/esd/esdsink.c: (gst_esdsink_chain):
30639 * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
30640 * ext/mas/massink.c: (gst_massink_chain):
30641 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
30642 * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
30643 (gst_matroska_demux_parse_metadata):
30644 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
30645 (gst_mpeg_parse_release_locks):
30646 * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
30647 * gst/udp/gstudpsink.c: (gst_udpsink_chain):
30648 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30649 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
30650 (gst_osssink_change_state):
30651 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
30652 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30653 * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
30654 (gst_xvideosink_release_locks):
30655 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
30657 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
30658 (gst_alsa_clock_stop):
30659 * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
30660 (gst_audio_clock_get_internal_time):
30661 simplify for use with new clocking code.
30662 * testsuite/alsa/Makefile.am:
30663 * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
30664 fix testsuite for new caps system
30666 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30668 * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
30669 * ext/flac/gstflacenc.c: (add_one_tag):
30670 length is already host endian, no need to convert. Fixes playback of
30671 tagged files on PPC. (bug #128384)
30673 2004-01-13 Julien MOUTTE <julien@moutte.net>
30675 * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
30676 colorbalance interface stating if it is hardware based or software
30678 * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
30679 Removing a trailing comma.
30680 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30681 (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
30682 Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
30683 the documentation seems to be wrong on the -1000 to 1000 interval.
30685 2004-01-12 David Schleef <ds@schleef.org>
30687 * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
30688 (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
30689 (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
30690 Fix negotiation. Add a bufferalloc function for the sink pad,
30691 and generally clean up some of the code.
30693 2004-01-12 Julien MOUTTE <julien@moutte.net>
30695 * gst-libs/gst/colorbalance/colorbalancechannel.c:
30696 (gst_color_balance_channel_dispose): Adding safety check in dispose
30698 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30699 (gst_xvimagesink_xcontext_clear),
30700 (gst_xvimagesink_interface_supported),
30701 (gst_xvimagesink_colorbalance_list_channels),
30702 (gst_xvimagesink_colorbalance_set_value),
30703 (gst_xvimagesink_colorbalance_get_value),
30704 (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
30705 Adding colorbalance interface support to set XV parameters such as
30706 HUE, BRIGHTNESS, CONTRAST, SATURATION.
30707 * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
30710 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
30712 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
30713 (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
30714 (gst_audio_convert_init), (gst_audio_convert_set_property),
30715 (gst_audio_convert_get_property), (gst_audio_convert_chain),
30716 (gst_audio_convert_link),
30717 (gst_audio_convert_buffer_to_default_format),
30718 (gst_audio_convert_buffer_from_default_format), (plugin_init):
30719 - implement _getcaps and use it
30721 - remove float caps since no float conversion is actually done
30722 - remove properties and arguments that were to be used for rate
30725 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
30727 * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
30728 (gst_audio_structure_set_int):
30729 * gst-libs/gst/audio/audio.h:
30730 add helper functions for _getcaps matching the standard audio
30733 2004-01-12 David Schleef <ds@schleef.org>
30735 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
30736 Test that pad is negotiated before getting its caps.
30738 2004-01-12 Julien MOUTTE <julien@moutte.net>
30740 * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
30741 analyzing the pads of an element the bin is mostly in READY state so
30742 no caps were negotiated. This helper function needs to work with
30743 _get_caps directly then. I was not freeing them though, added that to
30746 2004-01-12 Julien MOUTTE <julien@moutte.net>
30748 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30749 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
30750 direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
30751 than the free_func.
30753 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
30755 * sys/oss/gstossaudio.c: (plugin_init):
30756 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
30757 * sys/oss/gstosselement.h:
30758 make an oss debugging category
30759 make failure more descriptive
30761 2004-01-11 David Schleef <ds@schleef.org>
30763 * ext/ffmpeg/gstffmpeg.c:
30764 * ext/ffmpeg/gstffmpegcodecmap.c:
30765 * ext/ffmpeg/gstffmpegdec.c:
30766 * ext/ffmpeg/gstffmpegenc.c:
30767 * ext/ffmpeg/gstffmpegprotocol.c:
30768 * ext/gdk_pixbuf/gstgdkanimation.c:
30769 * ext/jpeg/gstjpeg.c:
30770 * ext/libpng/gstpng.c:
30771 * ext/mpeg2dec/perftest.c:
30772 * ext/speex/gstspeex.c:
30773 * gst-libs/gst/resample/dtos.c:
30774 * gst/intfloat/gstintfloatconvert.c:
30775 * gst/oneton/gstoneton.c:
30776 * gst/rtjpeg/RTjpeg.c:
30777 * gst/rtp/gstrtp.c:
30778 * sys/dxr3/dxr3init.c:
30779 * sys/glsink/gstgl_nvimage.c:
30780 * sys/glsink/gstgl_pdrimage.c:
30781 * sys/glsink/gstglsink.c:
30782 * testsuite/gst-lint:
30783 Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
30785 2004-01-11 David Schleef <ds@schleef.org>
30787 * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
30788 * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
30789 * ext/gdk_pixbuf/gstgdkanimation.c:
30790 (gst_gdk_animation_iter_create_pixbuf):
30791 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30792 (gst_gdk_pixbuf_chain):
30793 * ext/gdk_pixbuf/gstgdkpixbuf.h:
30794 * ext/jack/gstjack.c: (gst_jack_change_state):
30795 * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
30796 * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
30797 * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
30798 * gst/videofilter/gstvideofilter.c:
30799 (gst_videofilter_set_output_size):
30800 Remove all usage of gst_pad_get_caps(), and replace it with
30801 gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
30803 2004-01-11 David Schleef <ds@schleef.org>
30806 * ext/Makefile.am: Fixes to make ext/libcaca compile.
30807 * ext/divx/gstdivxdec.c:
30808 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30809 (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
30810 handle images that span multiple buffers. Now work with both
30811 filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
30812 * ext/gdk_pixbuf/gstgdkpixbuf.h:
30813 * ext/libcaca/gstcacasink.h: Fixes needed due to recent
30814 video/video.h changes
30815 * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
30816 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30817 (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
30818 of GstData free function.
30819 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30822 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
30824 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
30825 (gst_v4l2element_dispose), (gst_v4l2element_set_property),
30826 (gst_v4l2element_get_property):
30827 * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
30828 add norm, channel and frequency properties.
30829 * sys/v4l2/gstv4l2tuner.c:
30830 fixes for tuner interface changes
30831 * sys/v4l2/gstv4l2element.h:
30832 * sys/v4l2/gstv4l2src.c:
30833 * sys/v4l2/gstv4l2src.h:
30834 * sys/v4l2/v4l2src_calls.c:
30835 * sys/v4l2/v4l2src_calls.h:
30836 rework v4l2src to work with saa1734 cards and allow mmaped buffers.
30838 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
30840 * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
30841 (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
30842 (gst_tuner_channel_changed), (gst_tuner_norm_changed),
30843 (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
30844 * gst-libs/gst/tuner/tuner.h:
30845 GObjects aren't const.
30846 Add find_by_name functions.
30847 Add checks to _changed functions.
30848 * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
30849 (gst_v4l_tuner_get_norm):
30852 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
30854 * gst-libs/gst/video/video.h:
30855 Fix caps template names to be understandable.
30856 Prefix everything with GST_VIDEO.
30857 * ext/aalib/gstaasink.c:
30858 * ext/divx/gstdivxdec.c:
30859 * ext/divx/gstdivxenc.c:
30860 * ext/gdk_pixbuf/gstgdkpixbuf.c:
30861 * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
30862 * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
30863 * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
30864 * ext/libcaca/gstcacasink.c:
30865 * ext/libpng/gstpngenc.c: (raw_caps_factory):
30866 * ext/snapshot/gstsnapshot.c:
30867 * ext/swfdec/gstswfdec.c:
30868 * ext/xvid/gstxviddec.c:
30869 * ext/xvid/gstxvidenc.c:
30870 * gst/chart/gstchart.c:
30871 * gst/deinterlace/gstdeinterlace.c:
30872 * gst/effectv/gsteffectv.c:
30873 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
30874 * gst/goom/gstgoom.c:
30875 * gst/median/gstmedian.c:
30876 * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
30877 (gst_monoscope_srcconnect), (gst_monoscope_chain):
30878 * gst/overlay/gstoverlay.c:
30879 * gst/smooth/gstsmooth.c:
30880 * gst/smpte/gstsmpte.c:
30881 * gst/synaesthesia/gstsynaesthesia.c:
30882 * gst/videocrop/gstvideocrop.c:
30883 * gst/videodrop/gstvideodrop.c:
30884 * gst/y4m/gsty4mencode.c:
30885 * sys/qcam/gstqcamsrc.c:
30886 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
30887 Make them work with new video.h file.
30888 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30889 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
30890 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30891 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
30892 Make it work with new buffer allocation system.
30894 2004-01-11 Julien MOUTTE <julien@moutte.net>
30896 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
30897 pad_alloc_buffer implementation to use ->srcpad
30898 * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
30899 pad_alloc_buffer implementation to use ->srcpad
30900 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Fixing the
30901 pad_alloc_buffer implementation to use ->srcpad
30902 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
30903 (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
30904 (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
30905 a reference to everything we need.
30906 * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
30907 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
30908 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
30909 (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
30910 a reference to everything we need.
30911 * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
30913 2004-01-11 David Schleef <ds@schleef.org>
30915 * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
30916 * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
30917 (gst_fenced_buffer_default_copy): Fix for rename of buffer private
30919 * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
30920 value during a resize/renegotiation.
30921 * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
30922 gst_pad_alloc_buffer();
30923 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30924 (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
30926 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30927 Fix for rename of buffer private structure members.
30928 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30929 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
30930 Fix for rename of buffer private structure members.
30931 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30932 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
30933 Fix for rename of buffer private structure members.
30935 2004-01-11 Arwed v. Merkatz <v.merkatz@gmx.net>
30937 reviewed by: David Schleef <ds@schleef.org>
30939 * gst/videofilter/Makefile.am:
30940 * gst/videofilter/gstgamma.c: Gamma correction filter. Modified
30941 from the patch by ds to fit in with recent make_filter changes.
30943 2004-01-11 Julien MOUTTE <julien@moutte.net>
30945 * configure.ac: Adding examples/switch/Makefile
30946 * examples/Makefile.am: Adding examples/switch
30947 * examples/switch/Makefile.am: Adding switcher example.
30948 * examples/switch/switcher.c: (got_eos), (idle_iterate),
30949 (switch_timer), (main): Adding an example demonstrating switch usage
30950 with 2 videotestsrc showing different patterns.
30951 * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
30952 (gst_switch_init): Fixing switch with the new caps system.
30954 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
30956 * gst-libs/gst/video/video.h:
30957 Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
30958 They should probably be like
30959 GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
30961 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
30963 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
30964 (qtdemux_parse_trak):
30965 fix audio chunk size/timestamp calculation
30967 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
30969 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
30972 2004-01-11 Steve Baker <steve@stevebaker.org>
30974 * gst/effectv/gstaging.c: (gst_agingtv_get_type),
30975 (gst_agingtv_base_init), (gst_agingtv_class_init),
30976 (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
30977 (gst_agingtv_set_property), (gst_agingtv_get_property):
30978 Port agingTV to videofilter
30980 2004-01-09 Julien MOUTTE <julien@moutte.net>
30982 * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
30983 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30985 2004-01-09 Julien MOUTTE <julien@moutte.net>
30987 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
30988 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30989 * gst-libs/gst/xoverlay/xoverlay.c:
30990 (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
30991 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
30992 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30993 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30994 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30995 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30996 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
30997 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
30998 the bufferalloc_function to replace bufferpools, fixing the XOverlay
30999 interface implementation to handle xid being 0 and fix some bugs
31000 triggered by Benjamin's testcase.
31001 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
31002 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
31003 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
31004 the bufferalloc_function to replace bufferpools, fixing the XOverlay
31005 interface implementation to handle xid being 0 and fix some bugs
31006 triggered by Benjamin's testcase.
31008 2004-01-09 David Schleef <ds@schleef.org>
31010 * ext/librfb/gstrfbsrc.c: Hacking. Added actual decoding and
31011 mouse pointer events. It works.
31013 2004-01-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
31015 * ext/divx/gstdivxenc.c: (gst_divxenc_init):
31016 Use explicit caps - fix capsnego.
31017 * ext/xvid/gstxviddec.c:
31018 * ext/xvid/gstxvidenc.c:
31019 Remove macro-inside-macro which caused compile errors.
31020 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
31021 Error out if it's not a RIFF file. Else we error out without
31022 gst_element_error() which is not good...
31024 2004-01-08 David Schleef <ds@schleef.org>
31026 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
31027 Fix pad_link function to handle formats that ffmpeg returns
31028 as multiple caps structures.
31029 * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
31030 Only complain if source buffer is _smaller_ than expected.
31031 * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
31032 (gst_videoscale_handle_src_event): Resize navigation events
31033 when passing them upstream.
31034 * gst/videotestsrc/gstvideotestsrc.c:
31035 * gst/videotestsrc/gstvideotestsrc.h:
31036 * gst/videotestsrc/videotestsrc.c:
31037 * gst/videotestsrc/videotestsrc.h:
31038 Rewrite many of the buffer painting functions to handle odd
31039 sizes (for many formats, size%4!=0 or size%8!=0). Most have
31040 been verified to work with my video card.
31041 * testsuite/gst-lint: Add check for elements calling
31042 gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
31044 2004-01-08 David Schleef <ds@schleef.org>
31046 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
31047 (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
31049 2004-01-08 Julien MOUTTE <julien@moutte.net>
31051 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
31052 configure event is not emiting the desired size signal. That fixes
31053 aspect ratio issues with gst-player.
31055 2004-01-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
31057 * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
31060 2004-01-08 Julien MOUTTE <julien@moutte.net>
31062 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
31063 public method to fire size signal.
31065 2004-01-07 Julien MOUTTE <julien@moutte.net>
31067 * examples/gstplay/Makefile.am: Adding the interface library.
31068 * gst-libs/gst/play/Makefile.am: Adding the interface library.
31069 * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to the XOverlay size signal instead of GstVideoSink.
31070 * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
31071 GST_IS_X_OVERLAY before signal connect.
31072 * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
31073 Removing the have_video_size signal.
31074 * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
31075 and associated public method.
31076 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
31077 (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
31079 * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
31080 (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
31082 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
31083 Using XOverlay public method to fire size signal.
31085 2004-01-07 David Schleef <ds@schleef.org>
31087 * gst/videofilter/Makefile.am:
31088 * gst/videofilter/gstvideotemplate.c:
31089 * gst/videofilter/make_filter:
31090 Create gstvideoexample.c in a srcdir!=builddir friendly way.
31091 Convert make_filter to /bin/sh script.
31093 2004-01-07 Thomas Vander Stichele <thomas at apestaart dot org>
31095 * gst/modplug/gstmodplug.cc: fix element description
31097 2004-01-07 Julien MOUTTE <julien@moutte.net>
31099 * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
31100 (got_video_size): Adding some new lines in g_print calls.
31101 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
31102 (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
31103 (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
31104 (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
31105 (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
31106 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
31107 Complete code review, reverting some stuff i disagree with, adding
31108 some fixes : time synchronization on invalid timestamps, renegotiation
31110 * sys/ximage/ximagesink.h:
31111 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
31112 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
31113 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
31114 (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
31115 (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
31116 (gst_xvimagesink_buffer_new),
31117 (gst_xvimagesink_navigation_send_event),
31118 (gst_xvimagesink_set_xwindow_id),
31119 (gst_xvimagesink_get_desired_size),
31120 (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
31121 stuff i disagree with, adding some fixes : Renegotiation of private
31122 window, implementing get_desired_size.
31124 2004-01-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
31126 * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
31127 (gst_afsink_handle_event):
31128 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
31129 * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
31130 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
31131 * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
31132 * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
31133 Fix for instantiate-test (see core). Also remove dead code from
31134 jpegenc (which still needs fixing, but that's lower on my TODO
31136 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
31137 Never return NULL as caps.
31139 2004-01-07 David Schleef <ds@schleef.org>
31143 * ext/librfb/Makefile.am:
31144 * ext/librfb/gstrfbsrc.c:
31145 New source plugin based on librfb-0.1. RFB (remote framebuffer)
31146 is the protocol used by VNC.
31148 2004-01-07 David Schleef <ds@schleef.org>
31150 * gst/videofilter/gstvideotemplate.c:
31151 * gst/videofilter/gstvideotemplate.h:
31152 * gst/videofilter/make_filter:
31153 Merge videotemplate header into source file.
31154 * gst/effectv/Makefile.am:
31155 * gst/effectv/gsteffectv.c: (plugin_init):
31156 * gst/effectv/gstwarp.c:
31157 Make warpTV a subclass of videofilter.
31159 2004-01-07 Benjamin Otte <in7y118@public.uni-hamburg.de>
31161 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
31162 Add guard against invalid utf-8 conversions in mad. Just in case.
31164 2004-01-07 Benjamin Otte <in7y118@public.uni-hamburg.de>
31166 * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
31167 Fix for bug shown by poisoning
31169 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
31171 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
31172 (gst_v4lmjpegsrc_buffer_free):
31173 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
31174 (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
31175 (gst_v4lsrc_buffer_free):
31176 Fix for removed bufferpools.
31178 2004-01-07 Jan Schmidt <thaytan@mad.scientist.com>
31180 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
31181 Fix caps negotiation.
31183 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
31184 (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
31185 (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
31187 * ext/mpeg2dec/gstmpeg2dec.c:
31188 * gst-libs/gst/navigation/navigation.c:
31189 (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
31190 * gst-libs/gst/navigation/navigation.h:
31191 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
31192 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
31193 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
31194 Super-simple first version of mouse and keyboard events. Clicking
31195 on a DVD menu now works, although it may not take you where you
31198 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
31199 * gst/videotestsrc/gstvideotestsrc.c:
31200 (gst_videotestsrc_src_fixate):
31201 These fixate functions were broken - they never actually
31204 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
31206 * ext/shout/gstshout.c: (gst_icecastsend_base_init),
31207 (gst_icecastsend_init):
31208 fix for new caps system.
31209 * gst-libs/gst/mixer/mixertrack.h:
31210 * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
31211 Add 'master track' flag (for tools like ACME that only want to
31212 change the main volume).
31214 2004-01-07 Jan Schmidt <thaytan@mad.scientist.com>
31216 * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
31217 (gst_xvid_csp_to_caps):
31218 * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
31219 * ext/xvid/gstxvidenc.c:
31220 ifdef out ARGB type when it isn't available
31221 in xvidcore 1.0.0beta2
31223 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
31225 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
31226 When we have received a new SCR right in the first buffer after
31227 a seek (so in the same cycle that handles the discont), we should
31228 handle the buffer instead of unreffing it, else we lose data.
31230 2004-01-06 Iain <iain@prettypeople.org>
31232 * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
31233 buffer-frames caps too.
31235 * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
31236 caps that we need, don't destroy them all and rebuild them. And when
31237 creating src pads, use the src pad template rather than the sink...
31239 2004-01-05 Ronald Bultje <rbultje@ronald.bitfreak.net>
31241 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
31242 Add pad to element *after* setting functions such as event handler.
31243 Without this, the scheduler (opt) will link pads, set the event
31244 handler from the default event function (dispatcher in gstpad.c)
31245 and *after* that, we will set our own event function, which will
31246 thus never be used (and thus mpegdemux doesn't handle events).
31248 2004-01-04 David Schleef <ds@schleef.org>
31250 Fix the fixate functions to handle new prototype:
31251 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
31252 * gst/videotestsrc/gstvideotestsrc.c:
31253 (gst_videotestsrc_src_fixate):
31254 * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
31255 * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
31256 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
31258 2004-01-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
31260 * sys/ximage/ximagesink.h:
31261 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
31262 (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
31263 (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
31264 (gst_ximagesink_xoverlay_init):
31265 assorted fixes to make (re)embedding work
31266 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
31267 (gst_ximagesink_get_desired_size):
31268 implement desired size additions to XOverlay
31270 2004-01-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
31272 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
31273 (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
31274 (gst_x_overlay_got_desired_size):
31275 * gst-libs/gst/xoverlay/xoverlay.h:
31276 Add optional "desired size" signal and querying.
31278 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31280 * gst/matroska/matroska-demux.c:
31281 (gst_matroska_demux_parse_blockgroup):
31282 Fix EBML-laced block parsing. Diffs are relative to previous
31283 lace, not the first lace. Thanks to Mosu from the Matroska
31284 team for detecting this.
31285 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
31286 (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
31287 (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
31288 (gst_wavparse_change_state):
31289 * gst/wavparse/gstwavparse.h:
31290 Quickfix for capsnego.
31292 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31294 * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
31295 Fix indenting, fix pad creation.
31297 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31299 * ext/xvid/gstxviddec.c: (gst_xviddec_init),
31300 (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
31301 (gst_xviddec_sink_link):
31302 Implement src_getcaps() so proper size caps is negotiated.
31304 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31306 * ext/flac/gstflacdec.c: (gst_flacdec_loop):
31307 Finish flac decoder on EOS. See #116178.
31309 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31311 * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
31312 (gst_matroska_demux_add_stream):
31313 * gst/matroska/matroska-ids.h:
31314 Add getcaps() function to fix capsnego...
31316 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31318 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
31319 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
31320 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
31321 Fix more integer overflows. Again, see #126967.
31323 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31325 * ext/mpeg2dec/gstmpeg2dec.c:
31326 Add support for mpeg2dec-0.4.0 (released two weeks ago). See
31329 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31332 * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
31333 (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
31334 * ext/xvid/gstxvid.h:
31335 * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
31336 (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
31337 (gst_xviddec_src_link), (gst_xviddec_sink_link),
31338 (gst_xviddec_change_state):
31339 * ext/xvid/gstxviddec.h:
31340 * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
31341 (gst_xvidenc_base_init), (gst_xvidenc_class_init),
31342 (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
31343 (gst_xvidenc_link), (gst_xvidenc_set_property),
31344 (gst_xvidenc_get_property), (gst_xvidenc_change_state):
31345 * ext/xvid/gstxvidenc.h:
31346 Update xvid plugin to latest xvid (1.0.0-beta3) API.
31348 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31350 * gst/rtp/rtp-packet.c:
31351 Add sys/types.h include, since OS X doesn't define in_addr_t
31352 in netinet/in.h, like it does on Linux (see #129600).
31354 2004-01-03 Thomas Canty <tommydal@optushome.com.au>
31356 reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net>
31358 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
31359 Correct logic of dispose function (see #129306).
31361 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31363 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
31364 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
31365 (gst_mpeg_parse_init):
31366 * gst/mpegstream/gstmpegparse.h:
31367 Remove clock (which was never provided, i.e. dead code), and
31368 also fix integer overflows at high PTS values (see #126967).
31370 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31372 * ext/flac/gstflacdec.c:
31373 * ext/libpng/gstpngenc.h:
31374 * ext/mikmod/gstmikmod.h:
31375 OS X fixes (see #126628).
31377 2004-01-02 David Schleef <ds@schleef.org>
31379 * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
31380 (gst_alsa_src_base_init): Remove bogus "src" request pad.
31381 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
31382 (gst_mpeg_parse_class_init): Move pad template registration
31383 to class_init, since the derived class (mpegdemux) doesn't
31386 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31388 * sys/ximage/Makefile.am:
31389 * sys/xvideo/Makefile.am:
31390 * sys/xvimage/Makefile.am:
31391 Move interface libs from LDFLAGS to LIBADD, fix relocation errors
31392 after installation (see #127664).
31394 2004-01-02 David Schleef <ds@schleef.org>
31396 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
31397 (gst_ffmpegenc_connect): Negotiation fixes.
31398 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
31399 Remove inappropriate gst_caps_free().
31400 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31401 Reenable Ronald's internal resize code, since the core handles
31404 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31406 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
31407 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
31408 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
31409 Fix pad template stuff.
31411 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31413 * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
31414 * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
31415 fix signed integer reading/writing.
31417 2004-01-02 Benjamin Otte <in7y118@public.uni-hamburg.de>
31420 Remove outdated document
31422 2004-01-03 Jan Schmidt <thaytan@mad.scientist.com>
31424 * gst/cutter/gstcutter.c: (gst_cutter_init):
31425 src pad was being created twice - oops.
31427 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31429 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31430 Comment out internal resize. It doesn't handle the resulting
31431 XEvent internally, does another try_set_caps() which leads to
31432 a really nice loop.
31433 Real fix will come when Julien and Dave are awake. ;).
31435 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31437 * ext/mpeg2enc/gstmpeg2enc.cc:
31438 fix const/nonconst compile issue.
31440 2004-01-02 David Schleef <ds@schleef.org>
31442 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
31443 (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
31444 Add fixate function and a check for bad formats.
31446 2004-01-01 David Schleef <ds@schleef.org>
31449 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
31450 (gst_audiofilter_init):
31451 * gst/debug/efence.c: (gst_efence_init):
31452 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
31453 (gst_deinterlace_init):
31454 * gst/volume/gstvolume.c: (volume_connect):
31456 2004-01-01 David Schleef <ds@schleef.org>
31458 Convert elements to use gst_pad_use_explicit_caps() where
31460 * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
31461 * ext/audiofile/gstafparse.c: (gst_afparse_init),
31462 (gst_afparse_open_file):
31463 * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
31464 (gst_afsrc_open_file):
31465 * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
31466 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
31467 (gst_ffmpegdec_chain):
31468 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
31469 * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
31470 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
31471 (gst_gdk_pixbuf_chain):
31472 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
31473 (gst_jpegdec_chain):
31474 * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
31475 * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
31476 (gst_mikmod_negotiate):
31477 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
31478 (gst_mpeg2dec_negotiate_format):
31479 * ext/mpeg2enc/gstmpeg2enc.cc:
31480 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
31481 * ext/speex/gstspeexdec.c: (gst_speexdec_init),
31482 (gst_speexdec_sinkconnect):
31483 * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
31484 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
31485 (gst_vorbisfile_new_link):
31486 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
31487 (gst_ac3parse_chain):
31488 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
31489 (gst_asf_demux_setup_pad):
31490 * gst/auparse/gstauparse.c: (gst_auparse_init),
31491 (gst_auparse_chain):
31492 * gst/id3/gstid3types.c: (gst_id3types_loop):
31493 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
31494 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
31495 (mp1videoparse_parse_seq):
31496 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
31498 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
31499 (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
31500 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
31501 (gst_mpeg_parse_send_data):
31502 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
31503 (gst_qtdemux_add_stream):
31504 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
31505 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
31506 (gst_wavparse_parse_fmt):
31508 2004-01-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
31511 Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
31512 1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
31513 it therefore uses the wrong include paths. Too bad... Note
31514 that 1.6.1.93 is not release yet. ;).
31515 Also add a check for mplex, which is now using the lib'ified
31516 mplex from mjpegtools, too.
31517 * ext/ffmpeg/gstffmpegcodecmap.c:
31518 Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
31519 issues. I don't think ffmpeg handles 3ivx correctly, so this
31520 probably won't work. But it won't hurt either.
31521 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
31522 (gst_ffmpegdec_chain):
31523 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
31524 (gst_ffmpegenc_chain_audio):
31525 Fix memleak in audio encoding. Close codec if open fails, this
31526 calls the cleanup routines so we can re-use the context.
31527 * ext/mpeg2enc/gstmpeg2enc.cc:
31528 Fix pad template names/types, fix memory issue with getcaps().
31529 * ext/mpeg2enc/gstmpeg2encoder.cc:
31530 * ext/mpeg2enc/gstmpeg2encoder.hh:
31531 Fix compile issue with new caps system (const thingy).
31532 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
31533 * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
31534 We read a first frame right on initing, so that we have a caps
31535 when we init the output. This caps is cached in padprivate and
31536 read as first frame.
31537 * ext/mplex/Makefile.am:
31538 * ext/mplex/gstmplex.cc:
31539 * ext/mplex/gstmplex.h:
31540 * ext/mplex/gstmplex.hh:
31541 * ext/mplex/gstmplexibitstream.cc:
31542 * ext/mplex/gstmplexibitstream.hh:
31543 * ext/mplex/gstmplexjob.cc:
31544 * ext/mplex/gstmplexjob.hh:
31545 * ext/mplex/gstmplexoutputstream.cc:
31546 * ext/mplex/gstmplexoutputstream.hh:
31547 We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
31548 had issues, didn't do capsnego, supported only a subset of the
31549 mplex features and required a mplex fork in our local CVS. Plus
31550 that it worked agaist a very old mplex version. Rewriting was
31551 faster than updating it.
31552 * gst-libs/ext/Makefile.am:
31553 * gst-libs/ext/mplex/INSTRUCT:
31554 * gst-libs/ext/mplex/Makefile.am:
31555 * gst-libs/ext/mplex/README:
31556 * gst-libs/ext/mplex/TODO:
31557 * gst-libs/ext/mplex/ac3strm_in.cc:
31558 * gst-libs/ext/mplex/audiostrm.hh:
31559 * gst-libs/ext/mplex/audiostrm_out.cc:
31560 * gst-libs/ext/mplex/aunit.hh:
31561 * gst-libs/ext/mplex/bits.cc:
31562 * gst-libs/ext/mplex/bits.hh:
31563 * gst-libs/ext/mplex/buffer.cc:
31564 * gst-libs/ext/mplex/buffer.hh:
31565 * gst-libs/ext/mplex/fastintfns.h:
31566 * gst-libs/ext/mplex/format_codes.h:
31567 * gst-libs/ext/mplex/inputstrm.cc:
31568 * gst-libs/ext/mplex/inputstrm.hh:
31569 * gst-libs/ext/mplex/lpcmstrm_in.cc:
31570 * gst-libs/ext/mplex/mjpeg_logging.cc:
31571 * gst-libs/ext/mplex/mjpeg_logging.h:
31572 * gst-libs/ext/mplex/mjpeg_types.h:
31573 * gst-libs/ext/mplex/mpastrm_in.cc:
31574 * gst-libs/ext/mplex/mpegconsts.cc:
31575 * gst-libs/ext/mplex/mpegconsts.h:
31576 * gst-libs/ext/mplex/mplexconsts.hh:
31577 * gst-libs/ext/mplex/multplex.cc:
31578 * gst-libs/ext/mplex/outputstream.hh:
31579 * gst-libs/ext/mplex/padstrm.cc:
31580 * gst-libs/ext/mplex/padstrm.hh:
31581 * gst-libs/ext/mplex/stillsstream.cc:
31582 * gst-libs/ext/mplex/stillsstream.hh:
31583 * gst-libs/ext/mplex/systems.cc:
31584 * gst-libs/ext/mplex/systems.hh:
31585 * gst-libs/ext/mplex/vector.cc:
31586 * gst-libs/ext/mplex/vector.hh:
31587 * gst-libs/ext/mplex/videostrm.hh:
31588 * gst-libs/ext/mplex/videostrm_in.cc:
31589 * gst-libs/ext/mplex/videostrm_out.cc:
31590 * gst-libs/ext/mplex/yuv4mpeg.cc:
31591 * gst-libs/ext/mplex/yuv4mpeg.h:
31592 * gst-libs/ext/mplex/yuv4mpeg_intern.h:
31593 * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
31594 We don't fork mjpegtools' mplex in our CVS anymore.
31595 * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
31596 (gst_avi_demux_add_stream):
31597 * gst/avi/gstavidemux.h:
31598 Add getcaps() function for proper caps nego. This makes some
31599 parts of AVI playback/reading work.
31600 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31601 Resize window on new capsnego. This is probably wrong, but
31602 I'm still committing it because with current capsnego, the
31603 first successfull capsnego is auto-fixated, therefore rounded
31604 down to the lowest values in the caps. this results in a 16x16
31605 XWindow that is not reized when real capsnego finishes.
31606 Dave, I see more cases of this, do you know a proper solution?
31607 * tools/gst-launch-ext.in:
31608 Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
31610 2003-12-31 David Schleef <ds@schleef.org>
31612 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
31613 * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
31614 Change gst_pad_proxy_link() to gst_pad_try_set_caps()
31616 2003-12-30 David Schleef <ds@schleef.org>
31618 * ext/ffmpeg/gstffmpegcolorspace.c:
31619 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
31620 (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
31621 (gst_ffmpegcsp_chain): Negotiation fixes
31622 * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
31623 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
31624 (gst_audio_convert_link), (gst_audio_convert_channels):
31625 * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
31626 (gst_audioscale_link), (gst_audioscale_get_buffer),
31627 (gst_audioscale_chain): Negotiation fixes
31628 * gst/audioscale/gstaudioscale.h:
31629 * gst/videofilter/gstvideofilter.c:
31630 (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
31631 (gst_videofilter_link), (gst_videofilter_init),
31632 (gst_videofilter_set_output_size), (gst_videofilter_setup),
31633 (gst_videofilter_find_format_by_structure):
31634 * gst/videofilter/gstvideofilter.h: Negotiation fixes
31635 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
31636 (gst_videoscale_link):
31637 * gst/videoscale/videoscale.c: (videoscale_get_structure),
31638 (videoscale_find_by_structure), (gst_videoscale_setup):
31639 * gst/videoscale/videoscale.h: Negotiation fixes
31640 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
31641 (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
31642 function, restrict resizing to a multiple of 4 (hack until
31643 everyone supports odd sizes correctly).
31645 2003-12-29 Colin Walters <walters@verbum.org>
31647 * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
31650 2003-12-30 Jan Schmidt <thaytan@mad.scientist.com>
31652 * ext/sndfile/gstsf.c: (gst_sf_loop):
31653 Fix warning about discarding const qualifier
31655 2003-12-27 Jeremy Simon <jesimon@libertysurf.fr>
31657 * gst/cutter/gstcutter.c:
31658 * gst/videoscale/gstvideoscale.c:
31659 * gst/volenv/gstvolenv.c:
31660 * gst-libs/gst/audio/audio.c:
31661 * gst-libs/gst/video/video.c:
31664 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31666 * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
31667 Don't send ALSA debugging to stderr.
31668 * ext/alsa/gstalsa.h:
31669 Use GST_WARNING instead of g_warning when ALSA functions fail.
31671 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31673 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
31674 Free XVAdapterInfo correctly.
31676 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31678 * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
31679 (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
31680 Make id3tag use correct caps nego.
31682 2003-12-27 Amaury Jacquot <sxpert@esitcom.org>
31684 * ext/ivorbis/vorbis.c:
31685 * ext/ivorbis/vorbisenc.h:
31686 * ext/ivorbis/vorbisfile.c:
31687 Modify so that it uses the new caps things
31689 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31691 * testsuite/spider/spider1.c: (main):
31692 * testsuite/spider/spider2.c: (main):
31693 * testsuite/spider/spider3.c: (main):
31694 Make tests compile again. They probably don't work.
31696 2003-12-24 Colin Walters <walters@verbum.org>
31698 * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
31699 we can't fixate the caps anymore.
31701 2003-12-23 David Schleef <ds@schleef.org>
31703 * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
31704 * sys/oss/gstosssink.c: (gst_osssink_init),
31705 (gst_osssink_sink_fixate): Add fixate function.
31707 2003-12-24 Ronald Bultje <rbultje@ronald.bitfreak.net>
31709 * ext/ffmpeg/gstffmpegcodecmap.c:
31710 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
31711 (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
31712 (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
31713 (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
31714 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
31715 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
31716 (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
31717 fix typo in RGB masks, and move back to "old" colorspace
31718 capsnego code until whoever wrote this new crap has actually
31719 tested it so that it works.
31720 And yes, this works, keep it that way please.
31722 2003-12-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
31724 * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
31725 (gst_divxdec_init), (gst_divxdec_negotiate):
31726 * ext/divx/gstdivxdec.h:
31727 * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
31728 (gst_divxenc_init):
31729 * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
31730 (gst_faac_sinkconnect), (gst_faac_srcconnect):
31731 * ext/mpeg2enc/gstmpeg2enc.cc:
31732 * ext/mpeg2enc/gstmpeg2encoder.cc:
31733 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
31734 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
31735 (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
31736 * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
31737 (dxr3spusink_init):
31738 * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
31739 (dxr3videosink_init):
31740 Fix caps breakage after Dave's caps branch merge.
31742 2003-12-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
31744 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
31745 Fix for 24bpp display.
31747 2003-12-23 Colin Walters <walters@verbum.org>
31749 * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
31750 a GnomeVFSHandle directly.
31752 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31754 * gst/volume/Makefile.am:
31755 * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
31756 (volume_base_init), (volume_init):
31757 Reenable volume element and fix to work with new caps stuff.
31758 Rhythmbox needs this.
31760 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31762 * gst/qtdemux/qtdemux.c: (plugin_init):
31763 qtdemux requires bytestream
31765 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31767 * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
31768 Fix remaining caps handling errors due to CAPS merge.
31770 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31772 * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
31773 (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
31774 (gst_faad_srcconnect):
31775 Port to new caps system.
31777 2003-12-21 Julien MOUTTE <julien@moutte.net>
31779 * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
31780 (got_video_size), (main): using g_print instead of g_message.
31781 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
31782 signal which was not emitted because of "switch" element added to the
31783 bin but not connected. (Removing from the bin temporarily)
31785 2003-12-21 Julien MOUTTE <julien@moutte.net>
31787 * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
31788 find X development files. I don't understand the previous tests and
31789 they fail on my debian/ppc unstable. This one works.
31790 * examples/gstplay/player.c: (main): Set the pipeline to READY before
31792 * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
31793 (gst_play_set_video_sink), (gst_play_set_audio_sink),
31794 (gst_play_set_visualization): Add some safety checks in set_ methods
31795 and state_change. This was throwing some ugly CRITICAL messages when
31796 pipeline was getting disposed and casts were failing.
31798 2003-12-21 Ronald Bultje <rbultje@ronald.bitfreak.net>
31801 Improve mpeg2enc detection. This is for distributions that do
31802 ship mjpegtools, but without mpeg2enc. Also does object check
31803 for might there ever be ABI incompatibility.
31804 * ext/mpeg2enc/gstmpeg2enc.cc:
31805 Add Andrew as second maintainer (he's helping me), and also add
31806 an error if no caps was set. This happens if I pull before capsnego
31807 and that's something I should solve sometime else.
31808 * gst/matroska/matroska-demux.c:
31809 (gst_matroska_demux_parse_blockgroup):
31811 * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
31812 (gst_matroska_mux_track_header):
31813 Add caps to templates.
31814 * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
31815 Add mpegversion=1 to prevent confusion with MPEG/AAC.
31816 * gst/mpegstream/gstmpegdemux.c:
31817 Remove layer since it causes warnings about unfixed caps.
31818 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
31819 Fix obvious typo (we error out if caps were set, we should of
31820 course error out if *no* caps were set).
31821 * sys/oss/gstosselement.c: (gst_osselement_convert):
31822 Fix format conversion, we confused bits/bytes.
31823 * sys/oss/gstosselement.h:
31824 Improve documentation for 'bps'.
31826 Remove stuff about plugins that need removing - this was done
31828 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
31829 (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
31830 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
31831 (gst_v4lsrc_src_query):
31832 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
31833 (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
31834 Add get_query_types(), get_formats() and query() functions.
31836 2003-12-21 Thomas Vander Stichele <thomas at apestaart dot org>
31838 * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
31839 * moved CVS to freedesktop.org