1 2007-03-29 Sebastian Dröge <slomo@circular-chaos.org>
3 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
4 PCM samples with width=8 must be always unsigned, no matter what
7 2007-03-29 Andy Wingo <wingo@pobox.com>
9 * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev): Make
10 perfect offsets also, not just timestamps.
12 * tests/check/elements/videorate.c (test_more): Test that given
13 any incoming offsets, that videorate produces perfect offsets.
15 2007-03-29 Wim Taymans <wim@fluendo.com>
17 * gst-libs/gst/riff/riff-ids.h:
18 Add some more RIFF formats.
20 2007-03-29 Wim Taymans <wim@fluendo.com>
22 * gst-libs/gst/rtp/gstrtpbuffer.c:
23 (gst_rtp_buffer_default_clock_rate):
24 * gst-libs/gst/rtp/gstrtpbuffer.h:
25 Fix fixed payload names and docs.
26 Added method to get the default clock rates of fixed payload types.
27 API: GstRTPBuffer::gst_rtp_buffer_default_clock_rate()
29 2007-03-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
31 * tests/check/pipelines/.cvsignore:
32 Add new vorbisdec test to cvsignore.
34 2007-03-28 Wim Taymans <wim@fluendo.com>
36 * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
37 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
38 (gst_base_audio_sink_query), (gst_base_audio_sink_get_time),
39 (gst_base_audio_sink_set_property),
40 (gst_base_audio_sink_get_property), (gst_base_audio_sink_event),
41 (clock_convert_external), (gst_base_audio_sink_resample_slaving),
42 (gst_base_audio_sink_skew_slaving),
43 (gst_base_audio_sink_handle_slaving), (gst_base_audio_sink_render),
44 (gst_base_audio_sink_async_play):
45 * gst-libs/gst/audio/gstbaseaudiosink.h:
46 Store private stuff in GstBaseAudioSinkPrivate.
47 Add configurable clock slaving modes property.
48 API:: GstBaseAudioSink::slave-method property
49 Some more latency reporting tweaks.
50 Added skew based clock slaving correction and make it the default until
51 the resampling method is more robust.
53 2007-03-27 Sebastian Dröge <slomo@circular-chaos.org>
55 * gst/audioconvert/audioconvert.c:
56 Add docs to the integer pack functions and implement proper
57 rounding. Before we had rounding towards negative infinity, i.e.
58 always the smaller number was taken. Now we use natural rounding,
59 i.e. rounding to the nearest integer and to the one with the largest
60 absolute value for X.5. The old rounding introduced some minor
61 distortions. Fixes #420079
62 * tests/check/elements/audioconvert.c: (GST_START_TEST):
63 Fix one unit test that assumed the old rounding and added unit tests
64 for checking signed/unsigned int16 <-> signed/unsigned int16 with
65 depth 8, one for signed int16 <-> unsigned int16 and one for the new
66 rounding from signed int32 to signed/unsigned int16.
68 2007-03-27 Michael Smith <msmith@fluendo.com>
70 * gst/audioconvert/gstaudioconvert.c: (strip_width_64),
71 (gst_audio_convert_transform_caps):
72 Fix typo in debug line introduced recently, as pointed out on irc.
74 2007-03-27 Tim-Philipp Müller <tim at centricular dot net>
76 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
77 * tests/check/libs/tag.c: (GST_START_TEST):
78 Make sure we parse floating-point numbers in vorbis comments
79 correctly with either '.' or ',' as separator, no matter what
80 the current locale is. Add unit test for this too.
82 2007-03-26 Tim-Philipp Müller <tim at centricular dot net>
84 Patch by: René Stadler <mail at renestadler de>
86 * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_to_vorbis_comments):
87 When writing out floating-point numbers to vorbis comment tags, always
88 use the same character as separator no matter what the current locale is
91 * tests/check/libs/tag.c: (GST_START_TEST):
92 Add unit tests for replaygain tags in vorbis comments (closes #423055).
94 2007-03-26 Thomas Vander Stichele <thomas at apestaart dot org>
96 * ext/vorbis/vorbisdec.c (vorbis_dec_push_forward,
97 vorbis_handle_data_packet):
98 Correctly set DURATION to generate a timestamp-continuous stream.
99 One bug left at the end; see
100 ihttp://bugzilla.gnome.org/show_bug.cgi?id=423086
101 * tests/check/Makefile.am:
102 * tests/check/pipelines/vorbisenc.c (GST_START_TEST):
103 Add a test to check this. Without the above patch this test fails.
105 2007-03-26 Jan Schmidt <thaytan@mad.scientist.com>
107 * gst-libs/gst/rtp/Makefile.am:
108 The base audio payloader uses GstAdapter - we need GST_BASE_LIBS.
110 2007-03-23 Michael Smith <msmith@fluendo.com>
112 * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
113 (gst_video_rate_reset), (gst_video_rate_chain):
114 If videorate changes caps, we can no longer use the old buffer
115 (which may have a different size, incompatible with our caps).
116 So don't do that; just duplicate the new frame more times.
118 2007-03-22 Jan Schmidt <thaytan@mad.scientist.com>
120 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
121 Remove playbin's override of the set_clock vmethod. It's irrelevant
122 after Wim's commit on the 19th.
124 2007-03-22 Wim Taymans <wim@fluendo.com>
126 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_size),
127 (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
128 * ext/gnomevfs/gstgnomevfssrc.h:
129 Don't cache file sizes. Fixes #341078.
131 2007-03-21 Tim-Philipp Müller <tim at centricular dot net>
133 * gst/playback/gstplaybin.c: (add_sink):
134 Use GST_PTR_FORMAT to log caps.
136 2007-03-21 Tim-Philipp Müller <tim at centricular dot net>
138 Patch by: Young-Ho Cha <ganadist at chollian net>
140 * gst/subparse/samiparse.c: (handle_start_font):
141 Special-case some more colour names that pango doesn't handle by
142 default. Fixes #420578.
144 2007-03-20 Michael Smith <msmith@fluendo.com>
146 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
147 If we get a zero-sized input buffer, don't pass it to libvorbis, as
148 that marks EOS internally. After that, libvorbis will buffer all
149 input data, and encode none of it, eventually leading to memory
152 2007-03-19 Wim Taymans <wim@fluendo.com>
154 * gst/playback/gstdecodebin.c: (remove_fakesink):
155 Don't post STATE_DIRTY anymore.
157 * gst/playback/gstplaybin.c: (add_sink), (gst_play_bin_send_event),
158 (gst_play_bin_change_state):
159 Remove stream_time reset in seek handling, core does that now.
160 Disable clocking for live pipelines by forcing a NULL clock to the
161 complete pipeline, core is too smart now for our previous hack.
162 We can always autoplug in PAUSED now.
164 2007-03-17 David Schleef <ds@schleef.org>
166 * REQUIREMENTS: Update this file, change the formatting to make
167 it more consistent, plus more machine readable.
169 2007-03-16 Michael Smith <msmith@fluendo.com>
171 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
172 (strip_width_64), (append_with_other_format):
173 Previous fix was too simplistic, and broke the tests. Use a better
174 approach; only strip 64 from widths for integer audio.
176 2007-03-16 Michael Smith <msmith@fluendo.com>
178 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
179 (gst_audio_convert_transform_caps):
180 We don't support 64 bit integer audio, so don't try to claim we can.
181 Stops us producing caps don't match our template caps.
184 2007-03-15 Michael Smith <msmith@fluendo.com>
186 * gst/audioresample/gstaudioresample.c:
187 (audioresample_check_discont), (audioresample_transform):
188 Don't trigger discontinuities for very small imperfections; a filter
189 flush will sound bad, and many plugins have rounding errors leading
192 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
194 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
195 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
196 Add min-ptime property to RTP base audio payloader. Patch by
197 olivier.crete@collabora.co.uk.
200 Indentation/whitespace/documentation fixes.
202 2007-03-14 Julien MOUTTE <julien@moutte.net>
204 * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
205 (audioresample_transform_size), (audioresample_do_output),
206 (audioresample_transform), (audioresample_pushthrough): Handle
207 discontinuous streams.
208 * gst/audioresample/gstaudioresample.h:
209 * tests/check/elements/audioresample.c:
210 (test_discont_stream_instance), (GST_START_TEST),
211 (audioresample_suite): Add a test for discontinuous streams.
212 * win32/common/config.h: Updated.
214 2007-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
229 Update translations from translation project.
231 2007-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
233 * gst/audioresample/debug.h:
234 * gst/audioresample/resample.c: (resample_init):
235 Since I really am not interested in a debug line for each sample
236 being processed, move the library's debugging to its own category,
239 2007-03-13 Michael Smith <msmith@fluendo.com>
241 * ext/theora/theoradec.c: (theora_handle_type_packet):
242 Since the plugin doesn't support anything other than 4:2:0 right
243 now, post an error and fail if we get something else. Won't matter
244 until libtheora supports the other pixel formats, but hopefully
247 2007-03-10 Sebastien Moutte <sebastien@moutte.net>
249 * gst-libs/gst/audio/gstbaseaudiosink.c:(gst_base_audio_sink_render):
250 Use gst_guint64_to_gdouble for conversion.
252 Add new files to the win32 MANIFEST.
253 * win32/common/libgstaudio.def:
254 * win32/common/libgstpbutils.def:
255 Add new exported functions.
256 * win32/vs6/gst_plugins_base.dsw:
257 * win32/vs6/libgstdecodebin.dsp:
258 * win32/vs6/libgstplaybin.dsp:
259 Change the link to libgstpbutils.lib.
260 * win32/vs6/libgstdecodebin2.dsp:
261 Add a new project for decodebin2.
262 * win32/vs6/libgstpbutils.dsp:
263 Add a new project for pbutils.
265 2007-03-10 Tim-Philipp Müller <tim at centricular dot net>
267 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
268 Also accept partial dates with only year and month,
269 like 1999-12-00 (fixes #410396 even more).
271 * tests/check/libs/tag.c: (GST_START_TEST):
272 Add unit test for the above.
274 2007-03-10 Tim-Philipp Müller <tim at centricular dot net>
276 * tests/check/elements/subparse.c: (GST_START_TEST),
278 Add unit test for MPL2 subtitle format (#413799).
280 2007-03-10 Tim-Philipp Müller <tim at centricular dot net>
282 Patch by: Kamil Pawlowski <kamilpe gmail com>
284 * gst/subparse/Makefile.am:
285 * gst/subparse/gstsubparse.c:
286 (gst_sub_parse_data_format_autodetect),
287 (gst_sub_parse_format_autodetect), (gst_sub_parse_sink_event),
288 (gst_subparse_type_find):
289 * gst/subparse/gstsubparse.h:
290 * gst/subparse/mpl2parse.c: (mpl2_parse_line), (parse_mpl2):
291 * gst/subparse/mpl2parse.h:
292 Add support for MPL2 subtitle format (#413799).
294 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
297 We require core CVS for the new buffer metadata copy functions.
299 2007-03-09 Wim Taymans <wim@fluendo.com>
301 * gst-libs/gst/tag/gstid3tag.c:
302 Add read support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
305 Patch by: Alex Lancaster <alexl at users sourceforge net>
307 2007-03-09 Wim Taymans <wim@fluendo.com>
309 * ext/libvisual/visual.c: (gst_visual_sink_setcaps),
310 (gst_vis_src_negotiate), (get_buffer), (gst_visual_chain):
311 Improve adapter usage and comments.
313 2007-03-09 Wim Taymans <wim@fluendo.com>
315 * ext/pango/gsttextrender.c: (gst_text_render_chain):
316 * ext/vorbis/vorbistag.c: (gst_vorbis_tag_parse_packet):
317 * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_copy):
318 Use new metadata copy function.
320 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
321 (gst_ffmpegcsp_transform):
322 * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
323 Basetransform copied the metadata for us.
325 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
327 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
328 (gst_text_overlay_video_event):
329 Some more logging. Only accept newsegment events in TIME format and
330 send a WARNING message if they are not in TIME format.
332 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
333 (gst_sub_parse_init), (gst_sub_parse_src_event), (handle_buffer),
334 (gst_sub_parse_chain), (gst_sub_parse_sink_event):
335 * gst/subparse/gstsubparse.h:
336 No need to allocate GstSegment structure dynamically, just put it
337 into the instance structure; ignore newsegment events in BYTE
338 format and in particular don't let it overwrite our saved TIME
339 segment from the last seek.
341 2007-03-09 Michael Smith <msmith@fluendo.com>
343 * gst/typefind/gsttypefindfunctions.c: (ac3_type_find):
344 Replace AC3 typefinder with one that isn't terrible, and actually
347 2007-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
349 * gst/audioconvert/gstaudioconvert.c:
350 (gst_audio_convert_transform):
351 fix error category and translatable string
354 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
356 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
357 * pkgconfig/gstreamer-plugins-base.pc.in:
358 Fix up utils => pbutils here too.
360 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
362 * gst/subparse/gstsubparse.c: (handle_buffer):
363 Break out of loop in chain function as soon as possible if we get
364 a non-OK flow return.
366 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
368 * tests/check/elements/alsa.c: (GST_START_TEST):
369 Unref the mixer if the state change fails too (if the
370 alsa devices are inaccessible, for example)
372 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
374 * tests/check/Makefile.am:
375 Don't test libvisual elements in the states check, because libvisual
376 seems to leak internally.
378 Re-enable the alsa and states tests now that there's new suppressions
381 * tests/check/elements/alsa.c: (GST_START_TEST):
382 Don't leak the alsamixer we instantiated.
384 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
386 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
387 (gst_ximagesink_change_state), (gst_ximagesink_reset),
388 (gst_ximagesink_finalize):
389 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
390 (gst_xvimagesink_reset), (gst_xvimagesink_finalize):
391 Move some cleanup stuff from the state change handler into a _reset()
392 function that can be called from _finalize(). This ensures that things
393 get freed even if (for some reason) the NULL->READY state transition
394 fails in the parent class.
395 Even if a parent state change fails, process our downward state change
396 logic instead of bailing out early.
397 Free the correct xcontext pointer in ximagesink's xcontext_clear.
399 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
401 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
404 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_init):
405 * ext/pango/gsttimeoverlay.c: (gst_time_overlay_init):
406 Use pango_font_description_set_family_static instead of
407 pango_font_description_set_family to save a string copy (it was
408 leaking due to the strdup anyway)
410 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_finalize):
411 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_finalize):
412 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_finalize):
413 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_finalize):
414 Chain up in finalize.
416 2007-03-07 Tim-Philipp Müller <tim at centricular dot net>
418 * gst-libs/gst/interfaces/mixertrack.c:
419 (gst_mixer_track_class_init), (gst_mixer_track_get_property),
420 (gst_mixer_track_set_property):
421 API: add "untranslated-label" property which should be set by
422 implementations at construct time (#414645).
424 * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
425 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
426 Set "untranslated-label" when constructing mixer track objects.
428 * tests/check/elements/alsa.c: (GST_START_TEST), (alsa_suite):
429 Unit test to check the above.
431 2007-03-07 Wim Taymans <wim@fluendo.com>
433 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
434 Fix confusing debug message.
436 2007-03-07 Jan Schmidt <thaytan@mad.scientist.com>
438 * gst-plugins-base.doap:
439 update doap file with new version
441 2007-03-07 Jan Schmidt <thaytan@mad.scientist.com>
446 === release 0.10.12 ===
448 2007-03-07 Jan Schmidt <thaytan@mad.scientist.com>
451 releasing 0.10.12, "Zombie Horde"
453 2007-03-06 Jan Schmidt <thaytan@mad.scientist.com>
456 Bump version to 0.10.11.4 pre-release
458 2007-03-06 Wim Taymans <wim@fluendo.com>
460 * gst-libs/gst/audio/gstbaseaudiosink.c:
461 (gst_base_audio_sink_async_play):
462 Fix regression that made GStreamer skip the first samples of audio.
465 2007-03-05 Jan Schmidt <thaytan@mad.scientist.com>
468 Bump version to 0.10.11.3 pre-release
470 2007-03-05 Sebastian Dröge <slomo@circular-chaos.org>
473 Update paths for the rename from utils to pbutils to fix the build.
475 2007-03-05 Tim-Philipp Müller <tim at centricular dot net>
477 * gst-libs/gst/pbutils/Makefile.am:
478 Change directory to install headers in from gst/utils to gst/pbutils
481 2007-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
484 * docs/libs/gst-plugins-base-libs-docs.sgml:
485 * docs/libs/gst-plugins-base-libs-sections.txt:
486 * gst-libs/gst/Makefile.am:
487 * gst-libs/gst/interfaces/mixer.c:
488 * gst-libs/gst/pbutils/Makefile.am:
489 * gst-libs/gst/pbutils/descriptions.c:
490 (gst_pb_utils_get_source_description),
491 (gst_pb_utils_get_sink_description),
492 (gst_pb_utils_get_decoder_description),
493 (gst_pb_utils_get_encoder_description),
494 (gst_pb_utils_get_element_description),
495 (gst_pb_utils_add_codec_description_to_tag_list),
496 (gst_pb_utils_get_codec_description), (gst_pb_utils_list_all):
497 * gst-libs/gst/pbutils/descriptions.h:
498 * gst-libs/gst/pbutils/install-plugins.c:
499 * gst-libs/gst/pbutils/install-plugins.h:
500 * gst-libs/gst/pbutils/missing-plugins.c:
501 (gst_missing_uri_source_message_new),
502 (gst_missing_uri_sink_message_new),
503 (gst_missing_element_message_new),
504 (gst_missing_decoder_message_new),
505 (gst_missing_encoder_message_new),
506 (gst_missing_plugin_message_get_description):
507 * gst-libs/gst/pbutils/missing-plugins.h:
508 * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
509 * gst-libs/gst/pbutils/pbutils.h:
510 * gst-libs/gst/utils/Makefile.am:
511 * gst-libs/gst/utils/base-utils.c:
512 * gst-libs/gst/utils/base-utils.h:
513 * gst-libs/gst/utils/descriptions.c:
514 * gst-libs/gst/utils/descriptions.h:
515 * gst-libs/gst/utils/install-plugins.c:
516 * gst-libs/gst/utils/install-plugins.h:
517 * gst-libs/gst/utils/missing-plugins.c:
518 * gst-libs/gst/utils/missing-plugins.h:
519 * gst-plugins-base.spec.in:
520 * gst/playback/Makefile.am:
521 * gst/playback/gstdecodebin.c:
522 * gst/playback/gstdecodebin2.c:
523 * gst/playback/gstplaybasebin.c: (setup_subtitle),
524 (gen_source_element):
525 * gst/playback/gstplaybin.c: (plugin_init):
526 * tests/check/Makefile.am:
527 * tests/check/libs/pbutils.c: (GST_START_TEST),
528 (test_pb_utils_install_plugins_do_callout), (libgstpbutils_suite):
529 * tests/check/libs/utils.c:
530 rename utils to pbutils
532 2007-03-02 Jan Schmidt <thaytan@mad.scientist.com>
534 * docs/plugins/Makefile.am:
535 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
536 * docs/plugins/gst-plugins-base-plugins-sections.txt:
537 * docs/plugins/inspect/plugin-decodebin2.xml:
538 * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
539 Add documentation for decodebin2 that indicates that the API
542 2007-03-01 Jan Schmidt <thaytan@mad.scientist.com>
545 Update to 0.10.11.2 (0.10.12 pre-release)
547 2007-03-01 Wim Taymans <wim@fluendo.com>
549 * gst-libs/gst/audio/gstbaseaudiosink.c:
550 (gst_base_audio_sink_async_play):
551 base time is irrelevant here.
553 2007-03-01 Wim Taymans <wim@fluendo.com>
555 * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
556 * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
559 * gst-libs/gst/audio/gstbaseaudiosink.c:
560 (gst_base_audio_sink_query), (gst_base_audio_sink_event),
561 (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
562 Improve latency and clock slaving calculations.
563 Improve slave clock calibration.
565 * gst-libs/gst/audio/gstringbuffer.c:
566 (gst_ring_buffer_commit_full):
567 When we are asked to render N sample to 0 bytes, return N.
569 2007-03-01 Wim Taymans <wim@fluendo.com>
571 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
572 (gst_alsasink_write), (gst_alsasink_reset):
573 * ext/alsa/gstalsasink.h:
574 Remove unused dispose function.
575 Rename lock to not interfere with alsasrc lock.
577 * ext/alsa/gstalsasrc.c: (gst_alsasrc_finalize),
578 (gst_alsasrc_class_init), (gst_alsasrc_init), (set_swparams),
579 (gst_alsasrc_read), (gst_alsasrc_reset):
580 * ext/alsa/gstalsasrc.h:
581 Implement finalize function.
582 Use lock to protect alsa access.
586 2007-02-28 Thomas Vander Stichele <thomas at apestaart dot org>
589 Convert to new AG_GST style.
591 2007-02-28 Wim Taymans <wim@fluendo.com>
593 Patch by: Ed Catmur <ed at catmur dot co dot uk>
595 * gst/playback/gstplaybin.c: (gst_play_bin_vis_unblocked),
596 (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
597 Fix race condition when rapidly switching visualisations in playbin.
600 2007-02-28 Jan Schmidt <thaytan@mad.scientist.com>
602 * tests/check/Makefile.am:
603 Include local stuff before system installed things in LDFLAGS and
606 2007-02-28 Wim Taymans <wim@fluendo.com>
608 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_activate):
611 2007-02-28 Wim Taymans <wim@fluendo.com>
613 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
614 (gst_v4lsrc_fixate), (gst_v4lsrc_query):
615 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
616 Fix duration and timestamping, taking latency into account.
617 Implement latency query.
619 2007-02-28 Wim Taymans <wim@fluendo.com>
621 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
622 (gst_audio_clock_new):
625 * gst-libs/gst/audio/gstbaseaudiosink.c:
626 (gst_base_audio_sink_init), (gst_base_audio_sink_query):
627 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
628 (gst_base_audio_src_query), (gst_base_audio_src_get_offset),
629 (gst_base_audio_src_create):
630 Improve latency query code.
631 Use proper clock names.
633 2007-02-28 Thomas Vander Stichele <thomas at apestaart dot org>
635 * tests/check/generic/states.c: (GST_START_TEST):
636 Copy the states.c test from core again
637 * tests/check/Makefile.am:
638 ignore cdio and cdparanoiasrc
640 2007-02-28 Stefan Kost <ensonic@users.sf.net>
642 * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
643 (double_hq), (audio_convert_get_func_index), (check_default),
644 (audio_convert_prepare_context), (audio_convert_convert):
645 Also make valgrind happy and avoid copying data in some cases.
647 2007-02-28 Stefan Kost <ensonic@users.sf.net>
649 * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
650 (double_hq), (audio_convert_get_func_index),
651 (audio_convert_prepare_context), (audio_convert_convert):
652 * gst/audioconvert/gstaudioconvert.c:
653 (gst_audio_convert_class_init), (gst_audio_convert_get_unit_size),
654 (gst_audio_convert_transform_caps):
655 * tests/check/elements/audioconvert.c: (GST_START_TEST),
656 (audioconvert_suite):
657 Don't run inplace if that overwrites source data as we go. Add more
658 tests. Fixes #339837 even more.
660 2007-02-27 Julien MOUTTE <julien@moutte.net>
662 * tests/examples/seek/seek.c: (do_seek), (set_update_scale),
663 (msg_segment_done): Fix various seeking bugs (Slider was not
664 updating when doing a non flushing seek, Reverse playback
665 on segment seek was wrong).
667 2007-02-26 Wim Taymans <wim@fluendo.com>
669 * tests/examples/seek/seek.c: (stop_seek):
670 When we stop scrubbing, don't leave the pipeline PLAYING when we
671 requested a PAUSED state.
673 2007-02-25 Tim-Philipp Müller <tim at centricular dot net>
675 Patch by: René Stadler <mail at renestadler de>
677 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
678 Parse date strings in vorbis comments that have an invalid (zero)
679 month or day (#410396).
681 * tests/check/libs/tag.c: (GST_START_TEST):
682 Test case for the above.
684 2007-02-24 Tim-Philipp Müller <tim at centricular dot net>
686 Patch by: Loïc Minier <lool+gnome at via ecp fr>
689 * ext/alsa/Makefile.am:
690 * gst/audiotestsrc/Makefile.am:
691 Fix compilation with LDFLAGS='-Wl,-z,defs' (#410963).
693 2007-02-23 Tim-Philipp Müller <tim at centricular dot net>
695 * gst/playback/gstplaybin.c:
696 Improve docs: point out that the application needs to assist playbin
699 2007-02-23 Tim-Philipp Müller <tim at centricular dot net>
701 * gst-libs/gst/utils/install-plugins.c:
702 * gst-libs/gst/utils/missing-plugins.c:
703 * tests/check/libs/utils.c: (missing_msg_check_getters):
704 Change GStreamer marker prefix in detail string from 'gstreamer.net'
705 to just 'gstreamer'. Document the caps string component of the
706 decoder/encoder detail a bit better, since not everyone will be
707 familiar with the GStreamer media type/caps system (but they better
708 enjoy nested itemized lists).
710 2007-02-22 Tim-Philipp Müller <tim at centricular dot net>
712 * gst-libs/gst/netbuffer/gstnetbuffer.c:
713 (notgst_buffer_copy_fields_in_place), (gst_netbuffer_copy):
714 Fix copying of GstNetBuffer (would crash before, or at least lead to
715 invalid memory access, #410772), for now by copying the GstBuffer copy
716 code from the core over here so we can copy the GstBuffer fields on a
717 provided buffer instance (of type GstNetBuffer in this case). Would be
718 better to fix this with some support by the core though (and in the long
719 run change the broken GstBuffer/GstMiniObject copy semantics, #393099).
721 * tests/check/Makefile.am:
722 Enable unit test for GstNetBuffer.
724 2007-02-22 Andy Wingo <wingo@pobox.com>
726 * gst-libs/gst/audio/gstbaseaudiosink.c
727 (gst_base_audio_sink_init): Disable pull-mode activation until we
728 figure out how to make audio sinks go to PLAYING.
730 2007-02-22 Stefan Kost <ensonic@users.sf.net>
732 * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
733 (double_hq), (audio_convert_get_func_index),
734 (audio_convert_prepare_context), (audio_convert_convert):
735 * gst/audioconvert/audioconvert.h:
736 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_setup_matrix),
737 (gst_channel_mix_mix_int), (gst_channel_mix_mix_float):
738 * gst/audioconvert/gstchannelmix.h:
739 * tests/check/elements/audioconvert.c: (GST_START_TEST):
740 Add float as an intermediate format, as well as float mixing. Enable
741 test that was failing before. Fixes #339837
743 2007-02-21 Jan Schmidt <thaytan@mad.scientist.com>
745 * tests/examples/seek/seek.c: (do_seek):
746 Undo the previous commit: -1 as a stop time implies that the stop
747 time is the end of file, clearing any previously configured segment.
749 2007-02-21 Jan Schmidt <thaytan@mad.scientist.com>
751 * tests/examples/seek/seek.c: (do_seek):
752 Don't SEEK_SET with a stop time of -1, use SEEK_NONE instead.
754 2007-02-21 Stefan Kost <ensonic@users.sf.net>
756 * gst/volume/gstvolume.c: (volume_process_int16),
757 (volume_process_int16_clamp), (volume_set_caps):
758 Unbreak volume, value remains gint.
760 2007-02-21 Stefan Kost <ensonic@users.sf.net>
762 * gst/volume/gstvolume.c: (volume_choose_func),
763 (volume_update_real_volume), (gst_volume_set_volume),
764 (gst_volume_init), (volume_process_double), (volume_process_float),
765 (volume_process_int16), (volume_process_int16_clamp),
766 (volume_set_caps), (volume_transform_ip), (volume_update_volume):
767 * gst/volume/gstvolume.h:
768 Extend float audio support (double) and some int->uint cleanups.
770 2007-02-20 Edward Hervey <edward@fluendo.com>
772 * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
773 (multi_queue_underrun_cb), (gst_decode_group_check_if_drained),
774 (sort_end_pads), (gst_decode_group_expose),
775 (gst_decode_group_hide):
776 Don't free groups from the streaming threads. Just put them aside and
777 free them in dispose.
779 2007-02-20 Edward Hervey <edward@fluendo.com>
781 * gst/playback/gstdecodebin2.c: (connect_element),
782 (pad_added_group_cb), (gst_decode_group_check_if_blocked),
783 (sort_end_pads), (gst_decode_group_expose):
784 Handle dynamic pads within groups.
785 Sort pads before exposing them in order to make playbin happy.
786 There still is a race with the multiqueue filling up. This should be
790 2007-02-16 Tim-Philipp Müller <tim at centricular dot net>
792 * gst-libs/gst/utils/base-utils.c:
793 * gst-libs/gst/utils/descriptions.c:
794 * gst-libs/gst/utils/install-plugins.c:
795 * gst-libs/gst/utils/missing-plugins.c:
796 Some more docs (and descriptions for two subtitle formats).
798 2007-02-16 Tim-Philipp Müller <tim at centricular dot net>
800 * gst-libs/gst/audio/audio.c:
803 2007-02-16 Tim-Philipp Müller <tim at centricular dot net>
805 Patch by: Yves Lefebvre <ivanohe abacom com>
807 * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps):
808 Don't leak caps. Fixes #408278.
810 2007-02-15 Stefan Kost <ensonic@users.sf.net>
812 * ext/cdparanoia/gstcdparanoiasrc.h:
813 * ext/ogg/gstoggdemux.h:
814 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
815 (gst_audio_frame_length), (gst_audio_duration_from_pad_buffer),
816 (gst_audio_is_buffer_framed), (gst_audio_structure_set_int):
817 * gst-libs/gst/audio/audio.h:
818 * gst-libs/gst/audio/gstaudiofilter.h:
819 * gst-libs/gst/interfaces/videoorientation.h:
820 * gst/adder/gstadder.h:
821 More docs coverage and some ChangeLog surgery (add missing names)
823 2007-02-15 Wim Taymans <wim@fluendo.com>
825 * sys/ximage/ximagesink.c:
826 (gst_ximagesink_calculate_pixel_aspect_ratio):
827 * sys/xvimage/xvimagesink.c:
828 (gst_xvimagesink_calculate_pixel_aspect_ratio):
829 Small constifications.
831 2007-02-15 Wim Taymans <wim@fluendo.com>
833 * gst-libs/gst/audio/gstbaseaudiosink.c:
834 (gst_base_audio_sink_class_init), (gst_base_audio_sink_query),
835 (gst_base_audio_sink_render), (gst_base_audio_sink_callback),
836 (gst_base_audio_sink_async_play),
837 (gst_base_audio_sink_change_state):
838 Answer latency query.
839 Use configured latency when syncing.
842 * gst-libs/gst/audio/gstbaseaudiosrc.c:
843 (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
844 (gst_base_audio_src_query), (gst_base_audio_src_change_state):
845 Fix possible memleak.
846 Implement latency query.
849 2007-02-15 Wim Taymans <wim@fluendo.com>
851 * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
852 Ignore errors in reset, these are not fatal. They also grab the element
853 lock which is already taking when this function is called. Fixes
856 2007-02-13 Stefan Kost <ensonic@users.sf.net>
859 Remove 'tests/examples/xerror/Makefile' from output files again.
861 2007-02-13 Stefan Kost <ensonic@users.sf.net>
864 * docs/plugins/Makefile.am:
865 Also crossref against gst-plugins-base-libs.
867 2007-02-12 Stefan Kost <ensonic@users.sf.net>
870 * docs/libs/Makefile.am:
871 * docs/plugins/Makefile.am:
872 Add crossreferences to glib/gobject/gstream docs.
874 * gst-libs/gst/audio/audio.h:
877 * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
878 Add own debug category.
880 2007-02-12 Tim-Philipp Müller <tim at centricular dot net>
882 Patch by: René Stadler <mail at renestadler de>
884 * gst-libs/gst/tag/gstvorbistag.c:
885 Add vorbis/FLAC-tag mapping for new GST_TAG_REFERENCE_LEVEL
888 2007-02-10 Tim-Philipp Müller <tim at centricular dot net>
890 * gst/playback/gstplaybasebin.c: (setup_source):
891 When we have external subtitles and wait for the subtitle decodebin
892 to get up and running, we set up a (sync) bus handler for the
893 subtitle decodebin, so we can stop waiting when it posts an error
894 message. However, we should do that before we set the subtitle
895 decodebin's state to playing, otherwise things are racy and we might
896 miss error messages posted before we had a chance to set up the bus.
897 This should finally fix totem hanging on .txt pseudo-subtitle files.
899 2007-02-10 Sébastien Moutte <sebastien at moutte dot net>
901 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:(gst_base_rtp_audio_payload_handle_frame_based_buffer):
902 Use gst_gdouble_to_guint64 for conversions.
903 * win32/common/config.h.in:
904 Add a define for GST_INSTALL_PLUGINS_HELPER
905 * win32/common/libgstaudio.def:
906 * win32/common/libgstcdda.def:
907 * win32/common/libgstnetbuffer.def:
908 * win32/common/libgstrtp.def:
909 * win32/common/libgutils.def:
910 Add new exported functions.
911 * win32/vs6/gst_plugins_base.dsw:
912 * win32/vs6/libgstdecodebin.dsp:
913 * win32/vs6/libgstnetbuffer.dsp:
914 * win32/vs6/libgstplaybin.dsp:
915 * win32/vs6/libgstrtp.dsp:
916 * win32/vs6/libgstvorbis.dsp:
917 * win32/vs6/libgstcdda.dsp:
918 * win32/vs6/libgstgdp.dsp:
919 * win32/vs6/libgstutils.dsp:
920 Update and add new project files.
922 2007-02-10 Tim-Philipp Müller <tim at centricular dot net>
924 * gst/subparse/gstsubparse.c: (subrip_remove_unhandled_tag),
925 (subrip_remove_unhandled_tags), (parse_subrip):
926 For SubRip (.srt) subtitles, ignore all markup tags we don't
927 handle (like font tags, for example).
929 * tests/check/elements/subparse.c:
932 2007-02-09 Tim-Philipp Müller <tim at centricular dot net>
934 * gst/playback/gstdecodebin.c: (add_fakesink),
935 (gst_decode_bin_change_state):
936 * gst/playback/gstdecodebin2.c: (add_fakesink),
937 (gst_decode_bin_change_state):
938 Don't error out if there is no fakesink in the NULL to READY state
939 change, since when decodebin is re-used, we're only adding the
940 fakesink element in READY to PAUSED.
942 * tests/check/elements/decodebin.c:
943 (new_decoded_pad_plug_fakesink_cb), (GST_START_TEST),
945 Minimal unit test to make sure we can use the same decodebin
946 instance twice (at least with audiotestsrc input).
948 2007-02-09 Tim-Philipp Müller <tim at centricular dot net>
950 * ext/alsa/gstalsa.c: (gst_alsa_find_device_name):
951 Try to get devic-name from device string first, and from handle only
952 as fallback (seems to yield better results and is more robust
953 against buggy probing code on the application side).
955 2007-02-08 Tim-Philipp Müller <tim at centricular dot net>
957 Based on patch by: Julien Puydt <julien.puydt at laposte net>
959 * ext/alsa/gstalsa.c: (gst_alsa_find_device_name_no_handle),
960 (gst_alsa_find_device_name):
961 * ext/alsa/gstalsa.h:
962 * ext/alsa/gstalsasink.c: (gst_alsasink_get_property):
963 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_property):
964 Improve device-name detection a bit, especially in the case where
965 the device is not actually open (#405020, #405024). Move common code
966 into gstalsa.c instead of duplicating it.
968 2007-02-07 Tim-Philipp Müller <tim at centricular dot net>
970 * gst/audioconvert/gstaudioconvert.c:
971 Fix up docs chunk so that gtk-doc doesn't complain, and fix typo.
973 2007-02-06 Julien MOUTTE <julien@moutte.net>
975 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
976 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_clear),
977 (gst_xvimagesink_interface_supported),
978 (gst_xvimagesink_probe_get_properties),
979 (gst_xvimagesink_probe_probe_property),
980 (gst_xvimagesink_probe_needs_probe),
981 (gst_xvimagesink_probe_get_values),
982 (gst_xvimagesink_property_probe_interface_init),
983 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
984 (gst_xvimagesink_init), (gst_xvimagesink_class_init),
985 (gst_xvimagesink_get_type):
986 * sys/xvimage/xvimagesink.h: Implement PropertyProbe Interface
987 for XVAdaptors so that one can choose the adaptor to use with
988 gstreamer-properties.
990 2007-02-06 Stefan Kost <ensonic@users.sf.net>
992 * gst/audioconvert/gstaudioconvert.c:
993 Also mention that a conversion from double to float is suboptimal still.
995 2007-02-06 Tim-Philipp Müller <tim at centricular dot net>
997 * gst-libs/gst/audio/gstaudiofilter.c:
998 (gst_audio_filter_class_init), (gst_audio_filter_change_state):
999 Clear our formats structure and free the caps contained in it when
1002 2007-02-05 Andy Wingo <wingo@pobox.com>
1004 * gst-libs/gst/audio/gstbaseaudiosink.c
1005 (gst_base_audio_sink_callback): Update basesink->offset so that we
1006 pull monotonically increasing offsets instead of, um, seeking back
1007 to 0 each time. Fixes alsasrc ! alsasink!
1009 2007-02-05 Tim-Philipp Müller <tim at centricular dot net>
1011 * gst/videoscale/gstvideoscale.c:
1012 A width and height of 1 makes us crash, so increase minimum size to
1013 2x2 pixels until someone feels like fixing this (#404512).
1015 2007-02-04 Tim-Philipp Müller <tim at centricular dot net>
1017 * tests/check/pipelines/oggmux.c: (GST_START_TEST), (oggmux_suite):
1018 Add small test to make sure request pads are cleaned up properly
1019 even if oggmux never changes state out of NULL.
1021 2007-02-04 Tim-Philipp Müller <tim at centricular dot net>
1023 * tests/check/libs/utils.c: (GST_START_TEST):
1024 Fix unit test. Turns out things work much better when you
1025 NULL-terminate string arrays. Should make p5 build bot happy again.
1027 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
1029 * gst-libs/gst/audio/Makefile.am:
1030 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
1031 (gst_audio_filter_template_base_init),
1032 (gst_audio_filter_template_class_init),
1033 (gst_audio_filter_template_init),
1034 (gst_audio_filter_template_set_property),
1035 (gst_audio_filter_template_get_property),
1036 (gst_audio_filter_template_setup),
1037 (gst_audio_filter_template_filter),
1038 (gst_audio_filter_template_filter_inplace), (plugin_init):
1039 Oops, forgot to commit fixed-up example.
1041 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
1043 * docs/libs/gst-plugins-base-libs-sections.txt:
1044 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
1045 (gst_audio_filter_class_init), (gst_audio_filter_init),
1046 (gst_audio_filter_set_caps),
1047 (gst_audio_filter_class_add_pad_templates):
1048 * gst-libs/gst/audio/gstaudiofilter.h:
1049 Port GstAudioFilter to 0.10. This change technically breaks
1050 API and ABI (and thus also every library developer's heart),
1051 but seems justifiable on the grounds that the base class was
1052 completely unusable before (ie. would crash immediately when
1053 actually used). Fixes #403963 (and eventually also #403572).
1054 Also document all of this a bit.
1056 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
1058 * gst-libs/gst/utils/install-plugins.c:
1059 (gst_install_plugins_spawn_child):
1060 * tests/check/libs/utils.c:
1061 (test_base_utils_install_plugins_do_callout):
1062 Lowering log level to see why things fail on the p5 build bot;
1063 fix some typos in unit test messages.
1065 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
1067 * tests/check/libs/utils.c:
1068 (test_base_utils_install_plugins_do_callout):
1069 Don't hard-code temp directory for test helper; use GLib functions
1070 to write out file and do error checking etc.
1072 2007-02-02 Tim-Philipp Müller <tim at centricular dot net>
1074 * gst-libs/gst/utils/Makefile.am:
1075 * gst-libs/gst/utils/base-utils.h:
1076 * gst-libs/gst/utils/install-plugins.c:
1077 (gst_install_plugins_context_set_xid),
1078 (gst_install_plugins_context_new),
1079 (gst_install_plugins_context_free),
1080 (gst_install_plugins_get_helper),
1081 (gst_install_plugins_spawn_child),
1082 (gst_install_plugins_return_from_status),
1083 (gst_install_plugins_installer_exited),
1084 (gst_install_plugins_async), (gst_install_plugins_sync),
1085 (gst_install_plugins_return_get_name),
1086 (gst_install_plugins_installation_in_progress):
1087 * gst-libs/gst/utils/install-plugins.h:
1088 API: add API for applications to initiate installation of missing
1089 plugins, ie. gst_install_plugins_async() primarily.
1090 Based on libgimme-codec by Ryan Lortie.
1093 Add --with-install-plugins-helper configure option so distros can specify
1094 the path of the helper script or program to call when plugin installation
1095 is requested (distros: please do any argument munging in this helper
1096 script instead of patching GStreamer to pass arguments differently
1097 to another program directly).
1099 * docs/libs/gst-plugins-base-libs-docs.sgml:
1100 * docs/libs/gst-plugins-base-libs-sections.txt:
1101 Build and document new API.
1103 * tests/check/libs/utils.c: (result_cb),
1104 (test_base_utils_install_plugins_do_callout), (GST_START_TEST),
1105 (libgstbaseutils_suite):
1106 Some simple checks for the new API.
1108 2007-02-02 Tim-Philipp Müller <tim at centricular dot net>
1110 * tests/check/elements/audioconvert.c: (test_float_conversion):
1111 Add small test for 32bit float <=> 64bit float conversion (works
1112 only one way so far, 32=>64 produces structured noise).
1114 2007-02-02 Tim-Philipp Müller <tim at centricular dot net>
1116 * gst/audioconvert/gstaudioconvert.c:
1117 (set_structure_widths_32_and_64), (make_lossless_changes):
1118 We don't support floats with a width of 40, 48 or 56 bits.
1120 2007-02-02 Stefan Kost <ensonic@users.sf.net>
1122 * gst/audioconvert/audioconvert.c: (float), (double),
1123 (audio_convert_get_func_index):
1124 * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
1125 (make_lossless_changes):
1126 Support for 64-bit float audio in audioconvert (#339837)
1128 2007-02-01 Tim-Philipp Müller <tim at centricular dot net>
1130 Patch by: Holger Wansing <linux wansing-online de>
1134 Add German translation (#352069).
1136 2007-02-01 Sebastian Dröge <slomo@circular-chaos.org>
1138 reviewed by: Wim Taymans <wim@fluendo.com>
1140 * ext/ogg/gstoggmux.c: (gst_ogg_mux_ogg_pad_destroy_notify),
1141 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad):
1142 Use newly added GstCollectPads API to free the allocated resources in
1143 the GstOggPad structures (#402393).
1145 2007-01-31 Jan Schmidt <thaytan@mad.scientist.com>
1147 * gst/playback/gstplaybin.c: (gen_vis_element):
1148 Add audioresample+audioconvert in front of the visualisation
1149 element, so that elements like libvisual 0.4 that don't support all
1150 samplerates can work.
1154 2007-01-30 Tim-Philipp Müller <tim at centricular dot net>
1156 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property),
1157 (gst_play_base_bin_get_streaminfo_value_array):
1158 Take some locks and make a copy of the streaminfo value array we
1159 maintain while holding the lock, so that the application can
1160 retrieve the stream-info as a value array in a thread-safe way.
1162 2007-01-30 Wim Taymans <wim@fluendo.com>
1164 * gst/audioconvert/gstaudioconvert.c:
1165 Don't fail on 0 sized buffers. Fixes #396835.
1167 2007-01-29 David Schleef <ds@schleef.org>
1169 * gst/typefind/gsttypefindfunctions.c:
1170 Detect BBCD as video/x-dirac, so we can play raw dirac
1173 2007-01-29 Tim-Philipp Müller <tim at centricular dot net>
1175 * ext/theora/theoraenc.c: (theora_enc_chain):
1176 Check return value of theora_encode_header(), or we might try to
1177 allocate a random number of bytes. theora_encode_header() can fail
1178 if libtheora has been compiled with encoding support disabled.
1181 2007-01-29 Wim Taymans <wim@fluendo.com>
1183 * tests/check/gst/.cvsignore:
1184 Do as buildbot says.
1186 2007-01-29 Wim Taymans <wim@fluendo.com>
1188 * ext/libvisual/visual.c: (gst_visual_src_setcaps):
1189 Fix strides in libvisual. Gst uses X strides.
1190 Inspired by: <ed at catmur dot co dot uk> and
1191 <tim at centricular dot net>
1194 2007-01-27 Wim Taymans <wim@fluendo.com>
1196 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
1197 (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
1198 (gst_ogg_demux_get_prev_page), (gst_ogg_demux_do_seek),
1199 (gst_ogg_demux_perform_seek),
1200 (gst_ogg_demux_bisect_forward_serialno),
1201 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
1202 (gst_ogg_demux_find_chains), (gst_ogg_demux_handle_page),
1203 (gst_ogg_demux_chain), (gst_ogg_demux_combine_flows),
1204 (gst_ogg_demux_loop_reverse), (gst_ogg_demux_loop):
1205 * ext/ogg/gstoggdemux.h:
1206 Properly propagate streaming errors when we are scanning the file for
1207 chains so that we don't crash when shut down. Might fix some crashers
1208 when quickly switching oggs in RB such as #332503 and #378436.
1210 2007-01-26 Tim-Philipp Müller <tim at centricular dot net>
1212 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
1213 Map a gnome-vfs HOST_NOT_FOUND error into a GStreamer NOT_FOUND
1216 2007-01-25 Wim Taymans <wim@fluendo.com>
1218 * gst/playback/gstplaybasebin.c: (remove_source):
1219 Don't try to disconnect a signal from a finalized object.
1221 2007-01-25 Tim-Philipp Müller <tim at centricular dot net>
1223 * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose):
1224 Cast lock macro parameters to make sure we're actually accessing the
1225 lock member at the right class level. Free list itself in _dispose()
1226 as well and NULL it in case dispose gets called multiple times.
1228 2007-01-25 Edward Hervey <edward@fluendo.com>
1230 * gst/playback/gstdecodebin2.c:
1231 (gst_decode_bin_dispose),(gst_decode_bin_finalize):
1232 Free GstDecodeGroups no longer used.
1233 (gst_decode_group_expose):
1234 Don't unlock too many times !
1235 (deactivate_free_recursive):
1236 Free iterator once we're done with it.
1237 Fix for recursively deactivating elements (stop at ghostpads).
1239 2007-01-25 Tim-Philipp Müller <tim at centricular dot net>
1241 * gst/playback/gstplaybin.c: (handoff):
1242 Fix up caps on the frame buffer before we save it and potentially
1243 make it accessible to other threads via g_object_get; also use
1244 gst_buffer_replace() instead of gst_mini_object_replace().
1246 2007-01-25 Tim-Philipp Müller <tim at centricular dot net>
1248 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
1249 Make getting the current frame thread-safe.
1251 2007-01-25 Edward Hervey <edward@fluendo.com>
1253 * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize),
1254 (gst_decode_group_new), (gst_decode_group_free):
1255 Set queues to bigger sizes to cope with HD contents.
1256 Fix some mutex freeing and add comment about MT safe methods.
1258 2007-01-24 Tim-Philipp Müller <tim at centricular dot net>
1260 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
1261 (gst_text_overlay_text_event):
1262 Don't unnecessarily ref (and then leak) upstream events if the text
1263 pad is not linked. Fixes #399948.
1265 * tests/check/gst-plugins-base.supp:
1266 Add suppression for pango on edgy/x86 for textoverlay test.
1268 2007-01-24 Wim Taymans <wim@fluendo.com>
1270 * gst-libs/gst/rtp/gstrtpbuffer.h:
1271 Add some more fixed payloads.
1273 2007-01-23 Tim-Philipp Müller <tim at centricular dot net>
1275 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
1276 Error out properly if we get an error from libogg while reading the
1277 BOS page(s). Fixes crash parsing 'fuzzed' ogg file (#399340).
1279 2007-01-23 Tim-Philipp Müller <tim at centricular dot net>
1281 * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize):
1284 * tests/check/elements/playbin.c:
1285 (test_sink_usage_video_only_stream),
1286 (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
1287 (test_suburi_error_wrongproto), (test_missing_urisource_handler),
1288 (test_missing_suburisource_handler),
1289 (test_missing_primary_decoder), (playbin_suite):
1290 Run all tests once with decodebin and once with decodebin2.
1291 One test does not pass yet with decodebin2.
1293 2007-01-23 Edward Hervey <edward@fluendo.com>
1295 * ext/ogg/gstoggmux.c: (all_pads_eos), (gst_ogg_mux_collected):
1296 Fix the cases where oggmux doesn't properly figure out that all
1297 sinkpads have gone EOS, and therefore doesn't push out the remaining
1298 buffers and the final EOS event.
1301 2007-01-23 Julien MOUTTE <julien@moutte.net>
1303 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1304 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1305 Don't lock on navigation event push, just on keysym to string.
1306 Fixes #397673 again.
1308 2007-01-22 Edward Hervey <edward@fluendo.com>
1310 * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
1311 (get_current_group), (group_demuxer_event_probe),
1312 (gst_decode_group_expose), (deactivate_free_recursive),
1313 (gst_decode_group_free):
1315 Don't forget to emit 'no-more-pads' once a group is exposed.
1316 Cleanup elements from a DecodeGroup once we remove it.
1317 Protect call to gst_decode_group_expose() with the decodebin lock.
1319 2007-01-22 Julien MOUTTE <julien@moutte.net>
1321 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1322 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1323 Looking at Xorg code i can't figure out if that XKeysymToString
1324 function is thread sensible or not. Lock it just in case as
1325 recommended by Radek Doulik <rodo at ximian dot com>.
1327 2007-01-22 Julien MOUTTE <julien@moutte.net>
1329 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1330 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1331 Lock that X Call as well. Fixes #397673.
1333 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
1335 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
1336 Don't go into an endless loop if the file starts with 00 00 01 2X,
1337 like quicktime redirect files might. Fixes #396042.
1339 * tests/check/Makefile.am:
1340 * tests/check/gst/.cvsignore:
1341 * tests/check/gst/typefindfunctions.c: (GST_START_TEST),
1342 (typefindfunctions_suite):
1343 Add unit test for the above.
1345 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
1347 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1348 On second thought, use "depth" field rather than "bpp" field.
1350 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
1352 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1353 Camtasia caps apparently need a bpp field (#398875).
1355 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1357 * gst/playback/gstplaybasebin.c: (setup_subtitle),
1358 (gen_source_element), (gst_play_base_bin_change_state):
1359 Attempt at a better error message in case we don't have the required
1360 URI handler installed; post missing-plugin message also when we're
1361 missing an URI handler for the subtitle URI; clean up properly also
1362 when an error occurs and we never made it to PAUSED state.
1364 * tests/check/elements/playbin.c: (GST_START_TEST),
1366 Check that we're also getting a missing-plugin messsage for a
1367 missing subtitle URI handler (and clean up properly).
1369 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1371 * gst/playback/gstplaybasebin.c: (analyse_source), (setup_source):
1372 Plug a few reference leaks.
1374 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1376 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
1377 Lower probability a bit if the marker isn't right at the start,
1378 to decrease the chance of false positives.
1380 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1382 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
1383 Small mpeg2 system stream typefinding improvement: make typefinder
1384 probe a bit into the stream instead of just looking for a marker
1385 at the beginning. Fixes #397810.
1387 2007-01-18 Tim-Philipp Müller <tim at centricular dot net>
1389 * gst/audioconvert/gstchannelmix.c:
1390 Remove compatibility cruft for prehistoric GLib versions.
1392 2007-01-17 Tim-Philipp Müller <tim at centricular dot net>
1394 * gst/playback/Makefile.am:
1395 * gst/playback/gstdecodebin.c: (close_pad_link):
1396 * gst/playback/gstdecodebin2.c: (analyze_new_pad):
1397 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
1398 (gst_play_base_bin_handle_message_func), (unknown_type):
1399 Let decodebin be the element to post missing-plugin messages for
1400 missing decoders (rather than playbin); make playbin implement
1401 GstBin::handle_message so we can suppress missing-plugin messages
1402 for types we're not handling on purpose (don't want to bring up an
1403 installer in those cases).
1405 2007-01-16 Tim-Philipp Müller <tim at centricular dot net>
1407 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1408 * gst-libs/gst/tag/gstvorbistag.c:
1409 (gst_tag_list_to_vorbiscomment_buffer):
1410 * gst/typefind/gsttypefindfunctions.c: (vorbis_type_find):
1411 Fix potentially unaligned access (#397207).
1413 2007-01-16 Stefan Kost <ensonic@users.sf.net>
1415 * tests/examples/seek/seek.c: (set_scale), (update_scale),
1416 (do_seek), (stop_seek), (pause_cb), (stop_cb), (loop_toggle_cb),
1417 (rate_spinbutton_changed_cb), (msg_eos), (msg_segment_done),
1419 Allow to toggle looping while it plays. Fix callback prototype. Clean
1420 up code a bit more. Add copyright header.
1422 2007-01-16 Stefan Kost <ensonic@users.sf.net>
1424 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
1425 Red and blue mask was swapped (spotted by Dan Williams).
1427 2007-01-15 Stefan Kost <ensonic@users.sf.net>
1429 * gst-libs/gst/tag/gstid3tag.c:
1430 * gst-libs/gst/tag/gstvorbistag.c:
1431 Use new beats-per-minute tag from core.
1433 2007-01-15 Tim-Philipp Müller <tim at centricular dot net>
1436 Add new files with translatable strings, so they actually make it
1437 into the template file one day.
1439 2007-01-12 Andy Wingo <wingo@pobox.com>
1441 * gst-libs/gst/audio/gstbaseaudiosink.c
1442 (gst_base_audio_sink_fixate): Implement, stolen from baseaudiosrc.
1443 (gst_base_audio_sink_activate_pull): Remove the handwavey nego
1444 stuff, as the base class handles this now. Actually tell the ring
1446 (gst_base_audio_sink_callback): Cast the ring buffer correctly.
1447 How did this work before? Maybe I'm not as awesome a programmer as
1450 * gst-libs/gst/audio/gstbaseaudiosrc.c
1451 (gst_base_audio_src_fixate): Rework as a basesrc vmethod instead
1454 2007-01-12 Tim-Philipp Müller <tim at centricular dot net>
1456 * gst-libs/gst/utils/missing-plugins.c: (copy_and_clean_caps):
1457 Remove more fields so that the application can better blacklist
1458 formats that have been tried before.
1460 2007-01-12 Tim-Philipp Müller <tim at centricular dot net>
1462 * gst-libs/gst/audio/mixerutils.h:
1463 Add G_BEGIN_DECLS and G_END_DECLS guards so these helpers can be
1464 used when compiling with c++ compilers as well.
1466 2007-01-12 Tim-Philipp Müller <tim at centricular dot net>
1468 * gst/typefind/gsttypefindfunctions.c:
1471 2007-01-11 Tim-Philipp Müller <tim at centricular dot net>
1473 * gst/playback/gstplaybin.c: (post_missing_element_message),
1474 (gen_video_element), (gen_text_element), (gen_audio_element),
1476 Post missing-plugin messages also when we error out because
1477 converters, textoverlay or auto*sinks are missing (#161922).
1479 2007-01-10 Wim Taymans <wim@fluendo.com>
1481 * gst/playback/gstdecodebin.c: (dynamic_add), (close_pad_link),
1482 (is_demuxer_element), (new_caps):
1483 * gst/playback/gstplaybasebin.c: (source_new_pad):
1484 Fix the case where we try to ref a NULL element when we delay a link
1485 because of unfixed caps.
1486 Set the state of autoplugged decodebins to PAUSED.
1487 RTSP now works in playbin, we can remove it from the blacklist.
1489 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1491 * gst/playback/Makefile.am:
1492 * gst/playback/gstplaybasebin.c: (string_arr_has_str),
1493 (unknown_type), (setup_subtitle), (gen_source_element):
1494 * gst/playback/gstplaybin.c: (plugin_init):
1495 Post missing-plugin messages on the bus for missing sources and
1496 missing decoders/demuxers/depayloaders; fix error code used when
1497 we're missing an URI handler source; for media types that we are not
1498 handling on purpose at the moment, don't print "don't know how to
1499 handle xyz" messages to the terminal or post missing-plugin
1500 messages on the bus.
1502 * tests/check/elements/playbin.c: (create_playbin),
1503 (GST_START_TEST), (gst_codec_src_uri_get_type),
1504 (gst_codec_src_uri_get_protocols), (gst_codec_src_uri_get_uri),
1505 (gst_codec_src_uri_set_uri), (gst_codec_src_uri_handler_init),
1506 (gst_codec_src_init_type), (gst_codec_src_base_init),
1507 (gst_codec_src_create), (gst_codec_src_class_init),
1508 (gst_codec_src_init), (plugin_init), (playbin_suite):
1509 Add some tests for the missing-plugin stuff.
1511 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1514 * gst-libs/gst/Makefile.am:
1515 * gst-libs/gst/utils/Makefile.am:
1516 * gst-libs/gst/utils/base-utils.c: (gst_base_utils_init):
1517 * gst-libs/gst/utils/base-utils.h:
1518 * gst-libs/gst/utils/descriptions.c: (format_info_get_desc),
1519 (find_format_info), (caps_are_rtp_caps),
1520 (gst_base_utils_get_source_description),
1521 (gst_base_utils_get_sink_description),
1522 (gst_base_utils_get_decoder_description),
1523 (gst_base_utils_get_encoder_description),
1524 (gst_base_utils_get_element_description),
1525 (gst_base_utils_add_codec_description_to_tag_list),
1526 (gst_base_utils_get_codec_description), (gst_base_utils_list_all):
1527 * gst-libs/gst/utils/descriptions.h:
1528 * gst-libs/gst/utils/missing-plugins.c:
1529 (missing_structure_get_type), (copy_and_clean_caps),
1530 (gst_missing_uri_source_message_new),
1531 (gst_missing_uri_sink_message_new),
1532 (gst_missing_element_message_new),
1533 (gst_missing_decoder_message_new),
1534 (gst_missing_encoder_message_new),
1535 (missing_structure_get_string_detail),
1536 (missing_structure_get_caps_detail),
1537 (gst_missing_plugin_message_get_installer_detail),
1538 (gst_missing_plugin_message_get_description),
1539 (gst_is_missing_plugin_message):
1540 * gst-libs/gst/utils/missing-plugins.h:
1541 API: add new libgstbaseutils library with functions
1542 - to create and parse missing-plugins messages
1543 - that provide (translated) descriptions for caps/decoders/sources/etc.
1546 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
1547 * pkgconfig/gstreamer-plugins-base.pc.in:
1550 * docs/libs/gst-plugins-base-libs-docs.sgml:
1551 * docs/libs/gst-plugins-base-libs-sections.txt:
1552 Generate docs for new lib and API.
1554 * tests/check/Makefile.am:
1555 * tests/check/libs/.cvsignore:
1556 * tests/check/libs/utils.c: (missing_msg_check_getters),
1557 (GST_START_TEST), (libgstbaseutils_suite):
1558 Add some basic unit tests.
1560 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1562 * ext/ogg/Makefile.am:
1563 Dist gstoggdemux.h to fix 'make distcheck'.
1565 * sys/v4l/Makefile.am:
1566 Fix 'make distcheck' even more.
1568 2007-01-09 Wim Taymans <wim@fluendo.com>
1570 * docs/plugins/Makefile.am:
1571 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1572 * docs/plugins/gst-plugins-base-plugins-sections.txt:
1573 * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
1574 (gst_ogg_pad_query_types), (gst_ogg_pad_submit_page),
1575 (gst_ogg_chain_reset), (gst_ogg_chain_new_stream),
1576 (gst_ogg_demux_perform_seek):
1577 * ext/ogg/gstoggdemux.h:
1579 Add some more comments.
1582 2007-01-09 Wim Taymans <wim@fluendo.com>
1584 * ext/theora/theoradec.c:
1585 * ext/vorbis/vorbisdec.c:
1586 * gst-libs/gst/audio/gstringbuffer.c:
1587 (gst_ring_buffer_commit_full):
1588 * gst-libs/gst/audio/gstringbuffer.h:
1589 * gst-libs/gst/rtp/gstrtpbuffer.c:
1590 * gst-libs/gst/tag/gstvorbistag.c:
1591 Small documentation updates/fixes
1593 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1596 Require core CVS HEAD for Andy's basesrc/sink API additions.
1598 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
1600 Patch by: Günter Thelen <daedalus dot inc at gmx net>
1602 * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
1604 Add typefinder for flac-in-ogg in conformance with the ogg-mapping
1605 on flac.sf.net (there appear to be other versions of the first
1606 ogg page in the wild) (#391365).
1608 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
1611 Check if localtime_r() is available.
1613 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
1614 If localtime_r() is not available, fall back to localtime(). Should
1615 fix build on MingW (#393310).
1617 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
1619 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
1620 * gst/subparse/gstsubparse.h:
1621 Remove spurious 1000 subtrahend when calculating the timestamp from
1622 the frame number and the frame rate . Also, use the frames/second
1623 value specified in the first line of the file, if one is specified
1624 there. Should fix #357503.
1626 * tests/check/elements/subparse.c: (do_test),
1627 (test_tmplayer_do_test), (test_microdvd_do_test), (GST_START_TEST),
1629 Add some basic unit tests for the microdvd subtitle format.
1631 2007-01-07 Julien MOUTTE <julien@moutte.net>
1633 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1634 (gst_xvimage_buffer_finalize), (gst_xvimagesink_xvimage_new),
1635 (gst_xvimagesink_xvimage_put), (gst_lookup_xv_port_from_adaptor),
1636 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps),
1637 (gst_xvimagesink_set_xwindow_id),
1638 (gst_xvimagesink_set_event_handling),
1639 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
1640 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
1641 Patch by : Young-Ho Cha <ganadist at chollian dot net>
1643 Add an adaptor property to select a specific XV adaptor.
1644 * sys/xvimage/xvimagesink.h:
1646 2007-01-07 Julien MOUTTE <julien@moutte.net>
1648 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
1649 (gst_ximagesink_handle_xerror), (gst_ximagesink_ximage_new),
1650 (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
1651 (gst_ximagesink_handle_xevents), (gst_ximagesink_setcaps),
1652 (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
1653 (gst_ximagesink_expose), (gst_ximagesink_set_event_handling):
1654 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1655 (gst_xvimage_buffer_finalize), (gst_xvimagesink_handle_xerror),
1656 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
1657 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_setcaps),
1658 (gst_xvimagesink_change_state), (gst_xvimagesink_set_xwindow_id),
1659 (gst_xvimagesink_expose), (gst_xvimagesink_set_event_handling):
1660 Use flow_lock much more to protect every access to xwindow.
1661 Try to catch erros while creating images in case some drivers are
1662 just generating an XError when the requested image is too big.
1663 Should fix : #354698, #384008, #384060.
1664 * tests/icles/stress-xoverlay.c: (cycle_window), (create_window):
1665 Implement some stress testing of setting window xid.
1667 2007-01-07 Sébastien Moutte <sebastien@moutte.net>
1669 * win32/common/libgsaudio.def:
1670 Add new exported function.
1671 * win32/common/libgstogg.dsp:
1672 Add gstoggaviparse.c to the build.
1673 * win32/common/libgstvideoscale.dsp:
1674 Add vs_4tap.c to the build.
1675 * win32/common/libgstvorbis.dsp:
1676 Add vorbistag.c to the build.
1678 2007-01-06 Andy Wingo <wingo@pobox.com>
1680 * gst-libs/gst/audio/gstbaseaudiosink.c
1681 (gst_base_audio_sink_class_init)
1682 (gst_base_audio_sink_init):
1683 (gst_base_audio_sink_activate_pull): Add an activate_pull function
1684 to baseaudiosink, and tell basesink that we can work in pull mode.
1685 This way the ring buffer thread drives the pipeline directly, if
1686 pull mode is possible. There is some lingering nastiness regarding
1688 (gst_base_audio_sink_callback): Implement the callback to pull
1689 data. This interface is a bit light, though -- it should get a
1690 GstFlowReturn return value at least.
1692 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1694 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
1695 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
1696 * gst/playback/gstdecodebin2.c:
1697 (gst_decode_group_check_if_blocked):
1698 Printf format and missing argument fixes.
1700 2007-01-05 Jan Schmidt <thaytan@mad.scientist.com>
1702 * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header),
1703 (gst_ogm_parse_change_state):
1704 Activate pads before adding them to the element.
1706 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1708 * tests/examples/seek/scrubby.c: (main):
1709 * tests/examples/seek/seek.c: (main):
1710 Call g_thread_init() first thing in main() (see #391278).
1712 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1714 * tests/check/Makefile.am:
1715 * tests/check/libs/.cvsignore:
1716 * tests/check/libs/netbuffer.c: (GST_START_TEST),
1718 Add test for GstNetBuffer + gst_buffer_copy(). Disabled
1719 for the time being, since it's broken, see #393099.
1721 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1723 * tests/check/Makefile.am:
1724 Update to use GST_PLUGINS_BASE_CFLAGS as well.
1726 2007-01-04 Thomas Vander Stichele <thomas at apestaart dot org>
1729 split out GST_CFLAGS into GST_PLUGINS_BASE_CFLAGS and GST_CFLAGS
1730 so that GST_BASE_CFLAGS can go inbetween them, making sure
1731 we use uninstalled gst-libs headers
1732 * docs/libs/Makefile.am:
1733 * ext/alsa/Makefile.am:
1734 * ext/cdparanoia/Makefile.am:
1735 * ext/gnomevfs/Makefile.am:
1736 * ext/libvisual/Makefile.am:
1737 * ext/ogg/Makefile.am:
1738 * ext/theora/Makefile.am:
1739 * ext/vorbis/Makefile.am:
1740 * gst-libs/gst/audio/Makefile.am:
1741 * gst-libs/gst/cdda/Makefile.am:
1742 * gst-libs/gst/interfaces/Makefile.am:
1743 * gst-libs/gst/riff/Makefile.am:
1744 * gst-libs/gst/rtp/Makefile.am:
1745 * gst-libs/gst/tag/Makefile.am:
1746 * gst/adder/Makefile.am:
1747 * gst/audioconvert/Makefile.am:
1748 * gst/audiorate/Makefile.am:
1749 * gst/audioresample/Makefile.am:
1750 * gst/playback/Makefile.am:
1751 * gst/tcp/Makefile.am:
1752 * gst/videoscale/Makefile.am:
1753 * gst/volume/Makefile.am:
1754 * sys/ximage/Makefile.am:
1755 * sys/xvimage/Makefile.am:
1756 * tests/icles/Makefile.am:
1759 2007-01-04 Julien MOUTTE <julien@moutte.net>
1761 * gst-libs/gst/interfaces/xoverlay.c:
1762 (gst_x_overlay_handle_events):
1763 * gst-libs/gst/interfaces/xoverlay.h:
1764 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
1765 (gst_ximagesink_set_xwindow_id),
1766 (gst_ximagesink_set_event_handling),
1767 (gst_ximagesink_xoverlay_init), (gst_ximagesink_set_property),
1768 (gst_ximagesink_get_property), (gst_ximagesink_init),
1769 (gst_ximagesink_class_init):
1770 * sys/ximage/ximagesink.h:
1771 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new),
1772 (gst_xvimagesink_set_xwindow_id),
1773 (gst_xvimagesink_set_event_handling),
1774 (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_set_property),
1775 (gst_xvimagesink_get_property), (gst_xvimagesink_init),
1776 (gst_xvimagesink_class_init):
1777 * sys/xvimage/xvimagesink.h:
1778 * tests/icles/stress-xoverlay.c: (toggle_events), (create_window):
1779 Add a method to the XOverlay interface to allow disabling of
1780 event handling in x[v]imagesink elements. This will let X events
1781 propagate to parent windows which can be usefull in some cases.
1782 Be carefull that the application is then responsible of pushing
1783 navigation events and expose events to the video sink.
1786 2007-01-03 Tim-Philipp Müller <tim at centricular dot net>
1788 * gst-libs/gst/tag/gstvorbistag.c:
1789 * tests/check/libs/tag.c: (GST_START_TEST):
1790 Add vorbistag <=> GStreamer tag mapping for GST_TAG_LOCATION
1793 2007-01-01 Tim-Philipp Müller <tim at centricular dot net>
1797 * docs/design/Makefile.am:
1800 2006-12-27 Julien MOUTTE <julien@moutte.net>
1802 * docs/libs/gst-plugins-base-libs-sections.txt: Fix a documentation
1803 typo. Fixes: #390063.
1805 2006-12-27 Julien MOUTTE <julien@moutte.net>
1807 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
1808 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Plug a
1810 * win32/common/config.h: Updated.
1812 2006-12-22 Stefan Kost <ensonic@users.sf.net>
1814 * tests/check/elements/gdpdepay.c: (cleanup_gdpdepay),
1815 (setup_gdpdepay_streamheader):
1816 * tests/check/elements/gdppay.c: (cleanup_gdppay),
1817 (setup_gdppay_streamheader):
1818 Fix the dp tests, but activating the pads for the streamheader tests
1819 too and cleaning up conditionaly
1821 2006-12-22 Jan Schmidt <thaytan@mad.scientist.com>
1823 * gst/ffmpegcolorspace/avcodec.h:
1824 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1825 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
1826 (gst_ffmpegcsp_avpicture_fill):
1827 * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
1828 (img_get_alpha_info):
1829 Add 2 new caps arrangements, for 24-bit RGB and BGR in 32-bits, but at the
1830 other end of the word. Fixes: #387073.
1832 Add some inconsequential branch hints in a couple of places.
1834 2006-12-21 Tim-Philipp Müller <tim at centricular dot net>
1836 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1837 (gst_ffmpeg_caps_to_smpfmt):
1838 The "signed" field in raw audio caps is of boolean type, trying to
1839 extract the value with _get_int() will fail (fix to keep in sync with
1840 the copy in gst-ffmpeg)
1842 2006-12-21 Stefan Kost <ensonic@users.sf.net>
1844 * tests/check/elements/audioresample.c: (cleanup_audioresample):
1845 * tests/check/elements/audiotestsrc.c: (cleanup_audiotestsrc):
1846 * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
1848 * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay):
1849 * tests/check/elements/subparse.c: (teardown_subparse):
1850 * tests/check/elements/textoverlay.c: (cleanup_textoverlay):
1851 * tests/check/elements/videorate.c: (cleanup_videorate):
1852 * tests/check/elements/videotestsrc.c: (cleanup_videotestsrc):
1853 * tests/check/elements/volume.c: (cleanup_volume):
1854 * tests/check/elements/vorbisdec.c: (setup_vorbisdec),
1855 (cleanup_vorbisdec):
1856 * tests/check/elements/vorbistag.c: (setup_vorbistag),
1857 (cleanup_vorbistag):
1858 consistent pad (de)activation
1860 2006-12-20 Tim-Philipp Müller <tim at centricular dot net>
1862 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1863 Forgot to register the extensions.
1865 2006-12-20 Tim-Philipp Müller <tim at centricular dot net>
1867 * gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
1869 Add typefinder for VIVO files (my christmas present to the 90s).
1871 2006-12-16 Tim-Philipp Müller <tim at centricular dot net>
1873 * gst/playback/gstdecodebin.c: (type_found):
1874 Special-case the text/plain media type: we only want to recognise it
1875 as a 'raw' decoded media type if it comes from a demuxer or subtitle
1876 parser, but not if the entire stream is of text/plain type. If the
1877 entire stream is text/plain, we should just error out.
1879 This fixes playback of audio files with lyrics in totem. Totem can't
1880 distinguish between text files and subtitle files and passes any
1881 .txt file with the same basename as the main file to playbin as
1882 suburi, and playbin will then throw a 'subtitle found, but no video
1883 stream' error, which isn't entirely helpful. See #380342.
1885 Also, with this change we'll show a slightly more correct error
1886 message in case totem passes a playlist file to us (although a
1887 custom error message wording instead of the default text would
1888 probably not be a bad idea either).
1890 Same problem also needs to be fixed for playbin+decodebin2.
1892 * tests/check/Makefile.am:
1893 * tests/check/elements/decodebin.c: (src_handoff_cb),
1894 (decodebin_new_decoded_pad_cb), (GST_START_TEST),
1896 Add simple unit test for decodebin for the above.
1898 2006-12-16 Tim-Philipp Müller <tim at centricular dot net>
1900 * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
1901 * gst/playback/gstdecodebin2.c: (gst_decode_bin_change_state):
1902 Refuse to change state to READY when we failed to create any of the
1903 required elements in our instance init function.
1905 2006-12-15 Tim-Philipp Müller <tim at centricular dot net>
1907 * docs/libs/gst-plugins-base-libs-sections.txt:
1908 Small docs fixes/updates.
1910 * gst-libs/gst/video/gstvideosink.h:
1911 Remove nonfunctional GST_VIDEO_SINK_CLOCK macro which is a leftover
1912 from the 0.9 days (GST_BASE_SINK_CLOCK, which it points to, was
1913 removed from the base sink API between 0.9.6 and 0.9.7).
1914 API: add GST_VIDEO_SINK_CAST and use it for the height/width
1915 accessor macros, so we don't do a runtime GObject type check every
1918 2006-12-15 Thomas Vander Stichele <thomas at apestaart dot org>
1921 * gst-plugins-base.doap:
1922 * gst-plugins-base.spec.in:
1925 2006-12-09 Tim-Philipp Müller <tim at centricular dot net>
1927 Patch by: Jens Granseuer <jensgr at gmx net>
1929 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
1930 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
1931 (gst_base_rtp_audio_payload_handle_frame_based_buffer),
1932 (gst_base_rtp_audio_payload_handle_sample_based_buffer):
1933 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
1934 Declare variables at the beginning of a block. Fixes #383195.
1936 2006-12-07 Jan Schmidt <thaytan@mad.scientist.com>
1939 Bump version nano - back to CVS.
1942 === release 0.10.11 ===
1944 2006-12-06 Jan Schmidt <thaytan@mad.scientist.com>
1947 releasing 0.10.11, "Dumb things"
1949 2006-12-05 Jan Schmidt <thaytan@mad.scientist.com>
1951 * gst/playback/gstdecodebin.c: (find_dynamic), (dynamic_add),
1952 (close_pad_link), (elem_is_dynamic), (unlinked), (close_link):
1953 Handle the case where an element has multiple pads with
1954 unfixed caps as well as still possibly producing more dynamic
1955 pads by storing each case as a distinct entry in the dynamic list.
1958 2006-12-04 Wim Taymans <wim@fluendo.com>
1960 * gst/playback/gstdecodebin.c: (close_pad_link):
1961 Fix #382223, add more dynamic caps handling.
1963 2006-12-04 Wim Taymans <wim@fluendo.com>
1965 reviewed by: <delete if not using a buddy>
1967 * gst-libs/gst/audio/gstringbuffer.h:
1968 * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_init),
1969 (gst_netaddress_set_ip4_interface),
1970 (gst_netaddress_set_ip6_interface), (gst_netaddress_set_loopback),
1971 (gst_netaddress_set_ttl), (gst_netaddress_get_ip4_interface),
1972 (gst_netaddress_get_ip6_interface), (gst_netaddress_get_loopback),
1973 (gst_netaddress_get_ttl):
1974 * gst-libs/gst/netbuffer/gstnetbuffer.h:
1975 * gst/playback/gstdecodebin.c: (close_pad_link):
1976 * tests/examples/seek/seek.c: (end_scrub), (end_seek), (do_seek),
1977 (seek_cb), (stop_seek), (rate_spinbutton_changed_cb):
1978 * win32/common/config.h:
1980 2006-12-01 Michael Smith <msmith@fluendo.com>
1982 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
1983 Delete bad debug code.
1986 2006-12-01 Jan Schmidt <thaytan@mad.scientist.com>
1988 * gst/videoscale/vs_4tap.c:
1990 * win32/common/config.h:
1991 * win32/vs8/libgstvideoscale.vcproj:
1992 Fix compilation on win32 under VS8
1993 Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
1994 Partially fixes #381175
1996 2006-11-30 Michael Smith <msmith@fluendo.com>
1998 * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
2000 It would be very bad if, after a discont buffer, we thought every
2001 single following buffer was also discont. So, add to the test to
2002 ensure that this isn't the case.
2004 * ext/theora/theoraenc.c: (theora_enc_is_discontinuous):
2005 ... it was the case. So fix it.
2007 2006-11-28 Wim Taymans <wim@fluendo.com>
2009 * gst/playback/gstplaybasebin.c: (check_queue_event):
2012 * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
2013 Fix width and height range from 16 - 4096 to 1 - MAXINT, just like the
2014 padtemplate caps. Refixes #357577.
2016 2006-11-28 Wim Taymans <wim@fluendo.com>
2018 * gst/playback/gstplaybasebin.c: (check_queue_event),
2019 (queue_threshold_reached), (queue_out_of_data),
2020 (gen_preroll_element):
2021 Add event probe to see when EOS is in a queue and we can disable the
2022 underrun signals. Fixes #357577.
2024 2006-11-28 Edward Hervey <edward@fluendo.com>
2026 * gst/playback/Makefile.am:
2027 * gst/playback/gstdecodebin2.c: (gst_decode_bin_get_type),
2028 (_gst_boolean_accumulator), (gst_decode_bin_class_init),
2029 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
2030 (gst_decode_bin_init), (gst_decode_bin_dispose),
2031 (gst_decode_bin_finalize), (gst_decode_bin_set_property),
2032 (gst_decode_bin_get_property), (gst_decode_bin_set_caps),
2033 (gst_decode_bin_get_caps), (gst_decode_bin_autoplug_continue),
2034 (gst_decode_bin_autoplug_sort), (analyze_new_pad), (connect_pad),
2035 (connect_element), (expose_pad), (type_found),
2036 (pad_added_group_cb), (pad_removed_group_cb),
2037 (no_more_pads_group_cb), (pad_added_cb), (pad_removed_cb),
2038 (no_more_pads_cb), (find_compatibles), (is_demuxer_element),
2039 (are_raw_caps), (multi_queue_overrun_cb),
2040 (multi_queue_underrun_cb), (gst_decode_group_new),
2041 (get_current_group), (group_demuxer_event_probe),
2042 (gst_decode_group_control_demuxer_pad),
2043 (gst_decode_group_control_source_pad),
2044 (gst_decode_group_check_if_blocked),
2045 (gst_decode_group_check_if_drained), (gst_decode_group_expose),
2046 (gst_decode_group_hide), (gst_decode_group_free),
2047 (gst_decode_group_set_complete), (source_pad_blocked_cb),
2048 (source_pad_event_probe), (gst_decode_pad_new), (add_fakesink),
2049 (remove_fakesink), (find_sink_pad), (gst_decode_bin_change_state),
2051 New decodebin2 element.
2053 * gst/playback/gstplay-marshal.list:
2054 Added marshallers for new signals in decodebin2
2055 * gst/playback/gstplaybasebin.c: (setup_subtitle), (make_decoder):
2056 Use decodebin2 if *and only if* the USE_DECODEBIN2 environment variable
2059 2006-11-28 Wim Taymans <wim@fluendo.com>
2061 * gst/playback/gstplaybasebin.c: (setup_source),
2062 (gst_play_base_bin_change_state):
2063 Disable rtsp:// uris for the release, it's not good enough yet.
2066 2006-11-26 Wim Taymans <wim@fluendo.com>
2068 * ext/theora/theoradec.c: (gst_theora_dec_reset),
2069 (theora_dec_push_forward), (theora_dec_push_reverse),
2070 (theora_handle_data_packet), (theora_dec_decode_buffer),
2071 (theora_dec_flush_decode), (theora_dec_chain_reverse),
2072 (theora_dec_chain_forward), (theora_dec_chain):
2073 Implement reverse playback.
2075 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
2076 (vorbis_dec_decode_buffer), (vorbis_dec_flush_decode),
2077 (vorbis_dec_chain_forward):
2078 Clear buffers used for reverse playback in _reset.
2079 No need to set the eos flag, we clip samples using the segment.
2081 2006-11-24 Wim Taymans <wim@fluendo.com>
2083 * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
2084 (gst_ogg_pad_init), (gst_ogg_pad_dispose), (gst_ogg_pad_reset),
2085 (gst_ogg_pad_stream_out), (gst_ogg_pad_submit_page),
2086 (gst_ogg_chain_reset), (gst_ogg_demux_perform_seek):
2088 Handle continued pages in reverse mode.
2090 2006-11-24 Wim Taymans <wim@fluendo.com>
2092 * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
2093 (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
2094 (vorbis_dec_flush_decode):
2096 Don't try to add invalid timestamps.
2097 Clipping will unref the buffer.
2099 2006-11-24 Stefan Kost <ensonic@users.sf.net>
2101 * gst/adder/gstadder.h:
2102 * gst/audiotestsrc/gstaudiotestsrc.h:
2103 remove obsolete _factory_init protos
2105 2006-11-24 Stefan Kost <ensonic@users.sf.net>
2107 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
2108 Fix spacing in debug message.
2110 2006-11-23 Wim Taymans <wim@fluendo.com>
2112 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
2113 (gst_ogg_demux_chain):
2114 Don't just ignore return values from _pad_push().
2115 Small debug improvements.
2117 2006-11-23 Michael Smith <msmith@fluendo.com>
2119 * ext/ogg/gstoggmux.c: (gst_ogg_mux_process_best_pad):
2120 If our incoming buffer is marked as DISCONT, then increment the page
2121 number (so that the discontinuity is marked in the final ogg
2122 bitstream) and flush the previous page.
2124 2006-11-22 Michael Smith <msmith@fluendo.com>
2126 * ext/theora/gsttheoraenc.h:
2127 * ext/theora/theoraenc.c: (gst_theora_enc_init),
2128 (theora_enc_reset), (theora_enc_clear), (theora_enc_sink_setcaps),
2129 (theora_buffer_from_packet), (theora_enc_is_discontinuous),
2130 (theora_enc_chain), (theora_enc_change_state):
2131 Mark discontinuities of > 3/4 of a frame, reinit encoder.
2133 * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
2134 (GST_START_TEST), (theoraenc_suite):
2135 Enable discontinuity test, fix it.
2137 2006-11-21 Tim-Philipp Müller <tim at centricular dot net>
2139 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
2140 (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
2141 (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
2142 (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
2143 (gst_text_overlay_change_state):
2144 * ext/pango/gsttextoverlay.h:
2145 Some textoverlay fixes: for one, in the video chain function,
2146 actually wait for a text buffer to come in if there is none at the
2147 moment and there should be one; also, deal more gracefully with
2148 incoming buffers that do not have a timestamp or duration; discard
2149 text buffer when not needed any longer. Fixes #341681.
2151 * tests/check/Makefile.am:
2152 * tests/check/elements/.cvsignore:
2153 * tests/check/elements/textoverlay.c:
2154 (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2),
2155 (setup_textoverlay), (buffer_is_all_black), (create_black_buffer),
2156 (create_text_buffer), (cleanup_textoverlay), (GST_START_TEST),
2157 (test_video_waits_for_text_send_text_newsegment_thread),
2158 (test_video_waits_for_text_shutdown_element),
2159 (test_render_continuity_push_video_buffers_thread),
2160 (textoverlay_suite):
2161 Add some unit tests for textoverlay.
2163 2006-11-21 Tim-Philipp Müller <tim at centricular dot net>
2165 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
2166 Avoid integer underflow when the found probability for mp3 is
2167 smaller than the 'penalty' we subtract if there's not a clean
2168 mp3 header sync at offset 0.
2170 2006-11-21 Stefan Kost <ensonic@users.sf.net>
2172 * docs/libs/gst-plugins-base-libs-sections.txt:
2173 Add some new symbols to the docs
2175 2006-11-20 Tim-Philipp Müller <tim at centricular dot net>
2177 * tests/check/Makefile.am:
2178 * tests/check/elements/ffmpegcolorspace.c:
2179 (ffmpegcolorspace_suite):
2180 Enable ffmpegcolorspace test now that the RGBA32 issue is fixed
2181 (for now not for valgrinding though, since it takes too long).
2183 2006-11-20 Wim Taymans <wim@fluendo.com>
2185 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
2186 (gst_ffmpeg_pixfmt_to_caps):
2187 Fix RGBA32 caps. Fixes #357038.
2189 2006-11-20 Tim-Philipp Müller <tim at centricular dot net>
2191 * gst-libs/gst/interfaces/mixertrack.h:
2192 Add FIXME so we can add some padding here in 0.11
2194 2006-11-19 Tim-Philipp Müller <tim at centricular dot net>
2196 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
2197 Fix GstBaseRTPAudioPayload structure so the whole GObject
2198 inheritance business actually works (parent class instance structure
2199 must always come first in the derived class instance structure).
2201 2006-11-16 Tim-Philipp Müller <tim at centricular dot net>
2203 * gst/videotestsrc/Makefile.am:
2204 * tests/check/Makefile.am:
2205 Make sure our checks and the videotestsrc plugin link against the
2206 local uninstalled gst libs and not any installed gst libs that
2207 might happen to exist as well.
2209 * tests/check/elements/adder.c: (message_received),
2210 (test_event_message_received), (test_play_twice_message_received):
2211 * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
2212 Fix compiler warnings when compiling against core with disabled
2215 2006-11-16 Michael Smith <msmith@fluendo.com>
2217 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
2218 (gst_audio_rate_sink_event), (gst_audio_rate_chain):
2219 Fix audiorate, so that it accurately sets offsets and timestamps.
2220 Doesn't change the fundamental algorithmic decisions; so should be
2223 * tests/check/Makefile.am:
2224 Enable audiorate test now that it passes.
2226 2006-11-09 Stefan Kost <ensonic@users.sf.net>
2228 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
2229 clear xv when going to NULL, remove // commented non-existant proto
2231 * tests/examples/seek/seek.c: (main):
2232 add missing tooltip description for scrub and play_scrub
2234 2006-11-14 David Schleef <ds@schleef.org>
2237 Bump liboil requirement to 0.3.8.
2238 * gst-libs/gst/riff/riff-media.c:
2240 * gst/videoscale/vs_image.h:
2241 * gst/videoscale/vs_scanline.h:
2242 Use liboil's stdint.h.
2243 * gst/videotestsrc/videotestsrc.c:
2244 Remove liboil related ifdef's, since they aren't needed now, and
2245 won't work with future versions.
2247 2006-11-14 David Schleef <ds@schleef.org>
2249 * gst/videoscale/Makefile.am:
2250 * gst/videoscale/gstvideoscale.c:
2251 * gst/videoscale/gstvideoscale.h:
2252 * gst/videoscale/vs_4tap.c:
2253 * gst/videoscale/vs_4tap.h:
2254 * gst/videoscale/vs_image.c:
2255 * gst/videoscale/vs_image.h:
2256 * gst/videoscale/vs_scanline.c:
2257 * gst/videoscale/vs_scanline.h:
2258 Add a 4-tap image scaler. Theoretically looks much prettier.
2259 The tap calculation could use some improvement.
2261 2006-11-14 Wim Taymans <wim@fluendo.com>
2263 Patch by: Jan David Mol <j dot j dot d dot mol at tudelft dot nl>
2265 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds),
2266 (gst_riff_parse_strf_iavs):
2267 * gst/subparse/gstsubparse.c: (convert_encoding):
2268 * gst/tcp/gstmultifdsink.c:
2269 (gst_multi_fd_sink_handle_client_write):
2270 * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
2271 (gst_tcp_read_buffer), (gst_tcp_gdp_read_caps),
2272 (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
2273 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_render):
2274 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
2275 (gst_ximagesink_ximage_new):
2276 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
2277 Various gsize and gssize printf fixes. Fixes #372507.
2279 2006-11-13 Wim Taymans <wim@fluendo.com>
2281 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
2282 (vorbis_dec_push_forward), (vorbis_dec_push_reverse),
2283 (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
2284 (vorbis_dec_flush_decode), (vorbis_dec_chain_reverse),
2285 (vorbis_dec_chain_forward), (vorbis_dec_chain):
2286 * ext/vorbis/vorbisdec.h:
2287 First stab at vorbis reverse playback.
2289 2006-11-13 Wim Taymans <wim@fluendo.com>
2291 * gst-libs/gst/audio/gstbaseaudiosink.c:
2292 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
2293 * gst-libs/gst/audio/gstbaseaudiosink.h:
2294 Make the clock sync code more accurate wrt resampling and playback
2297 * gst-libs/gst/audio/gstringbuffer.c:
2298 (gst_ring_buffer_commit_full), (gst_ring_buffer_commit):
2299 * gst-libs/gst/audio/gstringbuffer.h:
2300 Use better algorithm to interpolate sample rates.
2302 2006-11-13 Michael Smith <msmith@fluendo.com>
2304 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page):
2305 Improve a debug line slightly.
2307 * ext/ogg/gstogmparse.c: (gst_ogm_parse_plugin_init):
2308 Call gst_riff_init() in plugin_init, to avoid getting errors from
2309 the debug system (unrelated changes to another plugin made this turn
2312 2006-11-10 Tim-Philipp Müller <tim at centricular dot net>
2314 Patch by: Sergey Scobich <sergery.scobich at gmail com>
2316 * win32/common/libgsttag.def:
2317 Add missing symbol (#366492).
2319 2006-11-09 Tim-Philipp Müller <tim at centricular dot net>
2321 * gst/playback/gststreamselector.c: (gst_stream_selector_dispose):
2322 Don't unref a NULL pad.
2324 2006-11-09 Wim Taymans <wim@fluendo.com>
2326 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
2327 (gst_ogg_demux_get_prev_page), (gst_ogg_demux_perform_seek),
2328 (gst_ogg_demux_handle_page), (gst_ogg_demux_chain),
2329 (gst_ogg_demux_loop_forward), (gst_ogg_demux_loop_reverse),
2330 (gst_ogg_demux_loop):
2331 Implement first stab at reverse playback.
2333 2006-11-07 Stefan Kost <ensonic@users.sf.net>
2335 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
2336 (gst_riff_create_video_template_caps):
2337 add h263/h264 variants to the caps, Fixes #363118
2339 2006-11-06 Tim-Philipp Müller <tim at centricular dot net>
2341 * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
2342 * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
2343 Use g_strerror instead of strerror so we get UTF-8.
2345 2006-11-03 David Schleef <ds@schleef.org>
2347 * ext/ogg/gstoggdemux.c:
2348 * ext/ogg/gstoggmux.c:
2349 Add/remove KW-DIRAC header here, since it is ogg-specific.
2351 2006-11-03 Michael Smith <msmith@fluendo.com>
2353 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
2354 Recognise more mpeg4 elementary video streams.
2356 2006-11-02 Edward Hervey <edward@fluendo.com>
2358 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
2359 Lower the probability of mp3 typefinding functions if we don't find a
2360 valid mp3 header at the start of the file.
2363 2006-11-02 Wim Taymans <wim@fluendo.com>
2365 * ext/theora/gsttheoradec.h:
2366 * ext/theora/theoradec.c: (gst_theora_dec_init),
2367 (theora_dec_sink_event), (theora_dec_chain_forward),
2368 (theora_dec_flush_decode), (theora_dec_chain_reverse),
2370 Document and partially implement an algorithm for doing reverse playback
2373 2006-11-02 Tim-Philipp Müller <tim at centricular dot net>
2375 Patch by: Sergey Scobich <sergey.scobich at gmail com>
2377 * win32/common/config.h:
2378 * win32/common/interfaces-enumtypes.c:
2379 * win32/common/libgsttag.def:
2380 * win32/vs8/gst-plugins-base.sln:
2381 * win32/vs8/libgstaudioresample.vcproj:
2382 * win32/vs8/libgstinterfaces.vcproj:
2383 * win32/vs8/libgstogg.vcproj:
2384 * win32/vs8/libgstriff.vcproj:
2385 * win32/vs8/libgsttag.vcproj:
2386 * win32/vs8/libgsttheora.vcproj:
2387 * win32/vs8/libgstvideoscale.vcproj:
2388 * win32/vs8/libgstvorbis.vcproj:
2389 Misc. VS8 build fixes: fix syntax in config.h, add missing entries
2390 to libgsttag.def; add missing dependencies for some vs8 projects;
2391 re-arrange placement of .def files in vs8 projects (#366334).
2393 2006-11-01 Tim-Philipp Müller <tim at centricular dot net>
2396 Remove unused variable.
2398 * ext/ogg/gstoggdemux.c:
2399 Fix Wim's surname in plugin description.
2401 2006-10-31 Wim Taymans <wim@fluendo.com>
2403 * gst-plugins-base.spec.in:
2404 spec new .h file. Fixes #368310.
2406 2006-10-31 Michael Smith <msmith@fluendo.com>
2408 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
2409 (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
2410 (gst_multi_fd_sink_get_stats),
2411 (gst_multi_fd_sink_remove_client_link),
2412 (gst_multi_fd_sink_queue_buffer),
2413 (gst_multi_fd_sink_handle_clients):
2414 * gst/tcp/gstmultifdsink.h:
2415 Make using the remove or clear signals threadsafe.
2416 Make calling get-stats with an invalid fd not segfault.
2419 2006-10-31 Wim Taymans <wim@fluendo.com>
2421 * gst-libs/gst/rtp/Makefile.am:
2422 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2423 (gst_base_rtp_audio_payload_init):
2424 Fix and activate base audio payloader.
2426 2006-10-28 Tim-Philipp Müller <tim at centricular dot net>
2428 * gst/typefind/gsttypefindfunctions.c: (qtif_type_find),
2430 Add typefinder for QuickTime Image Files (see #366156).
2432 2006-10-28 Tim-Philipp Müller <tim at centricular dot net>
2434 * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
2435 Another typo fix (#366212).
2437 2006-10-27 Wim Taymans <wim@fluendo.com>
2439 * gst/volume/gstvolume.c: (volume_transform_ip):
2440 Use stream time to synchronize volume property instead of rather random
2441 timestamps. This is needed when gnonlin does its time shifting.
2443 2006-10-27 Wim Taymans <wim@fluendo.com>
2445 Patch by: Mark Nauwelaerts <manauw at skynet dot be>
2447 * ext/ogg/gstoggmux.c: (gst_ogg_mux_release_pad):
2448 Remove the pad from the element in release_pad. Fixes #364812.
2450 2006-10-27 Tim-Philipp Müller <tim at centricular dot net>
2452 * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
2453 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
2454 Explicitly create our custom buffer classes at a thread-safe
2455 location as well, since g_type_class_ref() doesn't seem to be
2456 entirely thread-safe either (#365501; also see #349410).
2458 2006-10-26 Tim-Philipp Müller <tim at centricular dot net>
2460 * gst-libs/gst/riff/riff-read.c: (freeform_string_to_utf8),
2461 (gst_riff_parse_info):
2462 If strings in INFO chunk are not UTF-8, do something similar to
2463 what we do for ID3v1 tags: check a number of environment variables
2464 (GST_AVI_TAG_ENCODING, GST_RIFF_TAG_ENCODING, GST_TAG_ENCODING) for
2465 character sets to try, otherwise try the current locale and/or fall
2466 back on ISO-8859-1. Fixes #360552.
2468 2006-10-23 Tim-Philipp Müller <tim at centricular dot net>
2470 * gst/videotestsrc/gstvideotestsrc.c:
2471 (gst_video_test_src_pattern_get_type),
2472 (gst_video_test_src_set_pattern):
2473 * gst/videotestsrc/gstvideotestsrc.h:
2474 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_checkers1),
2475 (gst_video_test_src_checkers2), (gst_video_test_src_checkers4),
2476 (gst_video_test_src_checkers8):
2477 * gst/videotestsrc/videotestsrc.h:
2478 Add a bunch of exciting new checkers patterns.
2480 2006-10-23 Tim-Philipp Müller <tim at centricular dot net>
2482 * gst/subparse/Makefile.am:
2483 * gst/subparse/gstsubparse.c:
2484 (gst_sub_parse_data_format_autodetect),
2485 (gst_sub_parse_format_autodetect), (handle_buffer),
2486 (gst_sub_parse_chain), (gst_subparse_type_find), (plugin_init):
2487 * gst/subparse/gstsubparse.h:
2488 * gst/subparse/tmplayerparse.c: (tmplayer_parse_line),
2490 * gst/subparse/tmplayerparse.h:
2491 Add support for TMPlayer-type subtitles (#362845).
2493 * tests/check/elements/subparse.c: (test_tmplayer_do_test),
2494 (GST_START_TEST), (subparse_suite):
2495 Add some basic unit tests for the above.
2497 2006-10-23 Tim-Philipp Müller <tim at centricular dot net>
2499 * tests/check/elements/audiorate.c: (test_injector_base_init),
2500 (test_injector_class_init), (test_injector_chain),
2501 (test_injector_init), (probe_cb), (do_perfect_stream_test),
2502 (GST_START_TEST), (audiorate_suite):
2503 More tests for audiorate: inject buffers to check behaviour when
2506 2006-10-21 Tim-Philipp Müller <tim at centricular dot net>
2508 * tests/check/Makefile.am:
2509 * tests/check/elements/.cvsignore:
2510 * tests/check/elements/audiorate.c: (probe_cb), (got_buf),
2511 (do_perfect_stream_test), (GST_START_TEST), (audiorate_suite):
2512 Add some basic unit tests for audiorate. Disabled at the moment
2513 since it doesn't pass yet (see bug #363119).
2515 2006-10-20 Tim-Philipp Müller <tim at centricular dot net>
2517 * gst/subparse/gstsubparse.c: (subrip_fix_up_markup),
2518 (parse_subrip), (handle_buffer):
2519 Add missing closing tags for markup and fix broken markup,
2520 otherwise pango won't render anything (fixes #357531). Also,
2521 make sure the text we send out is always NUL-terminated
2522 (better safe than sorry etc.).
2524 * tests/check/elements/subparse.c: (test_srt_do_test),
2526 Some more tests for .srt incl. tests for the above stuff.
2528 2006-10-20 Julien MOUTTE <julien@moutte.net>
2530 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
2531 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
2532 Patch by: Stefan Kost <ensonic@users.sf.net>
2533 Try to redraw borders only when needed. Apparently this consumes
2534 resources on small devices... :-O (#363607)
2536 2006-10-20 Michael Smith <msmith@fluendo.com>
2538 * gst/tcp/gstmultifdsink.c:
2539 (gst_multi_fd_sink_client_queue_buffer):
2540 If caps change, then update the client's idea of the caps so that we
2541 don't end up re-sending streamheaders for every single buffer after
2544 2006-10-20 Michael Smith <msmith@fluendo.com>
2546 * ext/ogg/gstoggparse.c: (gst_ogg_parse_dispose),
2547 (gst_ogg_parse_append_header), (gst_ogg_parse_chain):
2548 Set caps on pushed buffers; fix up refcounting of caps objects.
2550 2006-10-19 Tim-Philipp Müller <tim at centricular dot net>
2552 * gst/typefind/gsttypefindfunctions.c: (mmsh_type_find),
2554 Typefind mmsh header data packet to application/x-mmsh (#362625).
2556 2006-10-19 Tim-Philipp Müller <tim at centricular dot net>
2558 * tests/check/Makefile.am:
2559 * tests/check/elements/.cvsignore:
2560 * tests/check/elements/subparse.c: (buffer_from_static_string),
2561 (setup_subparse), (teardown_subparse), (test_srt_do_test),
2562 (GST_START_TEST), (subparse_suite):
2563 Add very simple unit test for subparse.
2565 2006-10-19 Tim-Philipp Müller <tim at centricular dot net>
2567 * gst/subparse/gstsubparse.c: (strip_trailing_newlines),
2569 Strip trailing newlines from subtitle text output.
2571 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2573 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
2574 (gst_sub_parse_change_state):
2575 Fix memleak; clear subparse->textbuf n state change function.
2577 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2579 * gst/subparse/gstsubparse.c:
2580 (gst_sub_parse_data_format_autodetect):
2581 Don't require subrip (.srt) files to start with a chunk number of 1.
2583 2006-10-18 Wim Taymans <wim@fluendo.com>
2585 * gst-libs/gst/audio/gstbaseaudiosink.c:
2586 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
2587 * gst-libs/gst/audio/gstbaseaudiosink.h:
2588 Extract rate from the NEWSEGMENT event.
2589 Use commit_full to also take rate adjustment into account when writing
2590 samples to the ringbuffer.
2592 * gst-libs/gst/audio/gstringbuffer.c:
2593 (gst_ring_buffer_commit_full), (gst_ring_buffer_commit),
2594 (gst_ring_buffer_read):
2595 * gst-libs/gst/audio/gstringbuffer.h:
2596 Added _commit_full() to also take rate into account.
2597 Use simple interpolation algorithm to resample audio.
2598 API: gst_ring_buffer_commit_full()
2600 * tests/examples/seek/scrubby.c: (speed_cb), (do_seek):
2601 * tests/examples/seek/seek.c: (segment_done):
2602 Don't try to seek with 0.0 rate, just pause instead.
2603 Remove bogus debug line.
2605 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2607 * gst/playback/gstplaybasebin.c: (subbin_startup_sync_msg),
2609 Catch async errors when starting up the subtitle bin, so we can
2610 stop waiting and continue with the main film instead of hanging
2611 forever. Fixes #339366.
2613 * tests/check/elements/playbin.c: (playbin_suite):
2614 Enable unit test for the above.
2616 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2618 * tests/check/Makefile.am:
2619 * tests/check/elements/.cvsignore:
2620 * tests/check/elements/playbin.c: (GST_START_TEST),
2621 (gst_red_video_src_uri_get_type),
2622 (gst_red_video_src_uri_get_protocols),
2623 (gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri),
2624 (gst_red_video_src_uri_handler_init),
2625 (gst_red_video_src_init_type), (gst_red_video_src_base_init),
2626 (gst_red_video_src_create), (gst_red_video_src_class_init),
2627 (gst_red_video_src_init), (plugin_init), (playbin_suite):
2628 Some small and basic unit tests for playbin; not very useful yet,
2629 but at least a start.
2631 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2633 * gst/playback/gstplaybin.c: (setup_sinks):
2634 The old pad activation spiel.
2636 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2638 * gst/playback/gstplaybasebin.c: (setup_source):
2639 Don't hang forever if the subbin already fails to start up in
2640 the state change to PAUSED (#339366).
2642 2006-10-17 Tim-Philipp Müller <tim at centricular dot net>
2644 * gst-libs/gst/interfaces/tuner.c: (gst_tuner_list_channels),
2645 (gst_tuner_set_channel), (gst_tuner_get_channel),
2646 (gst_tuner_list_norms), (gst_tuner_set_norm), (gst_tuner_get_norm),
2647 (gst_tuner_set_frequency), (gst_tuner_get_frequency),
2648 (gst_tuner_signal_strength), (gst_tuner_find_norm_by_name),
2649 (gst_tuner_find_channel_by_name):
2650 Fix some function guards, add some more function guards.
2652 2006-10-17 Jan Schmidt <thaytan@mad.scientist.com>
2654 * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
2655 (remove_element_chain):
2656 Don't return a pad from get_our_ghost_pad unless it is actually the
2658 Change a cast in remove_element_chain slightly.
2660 2006-10-13 Julien MOUTTE <julien@moutte.net>
2662 * tests/examples/seek/seek.c: (do_seek), (start_seek),
2663 (rate_spinbutton_changed_cb), (segment_done), (msg_state_changed):
2664 Segment seeking needs to use the rate and set stop to -1.
2666 2006-10-13 Wim Taymans <wim@fluendo.com>
2668 * gst-libs/gst/audio/gstbaseaudiosink.c:
2669 (gst_base_audio_sink_setcaps):
2670 Don't crash when ringbuffer is not yet created.
2671 Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
2674 * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2675 * gst/playback/gststreamselector.c:
2676 (gst_stream_selector_request_new_pad):
2677 Activate pads befre adding them to running elements.
2679 2006-10-13 Julien MOUTTE <julien@moutte.net>
2681 * tests/examples/seek/seek.c: (do_seek), (start_seek),
2682 (rate_spinbutton_changed_cb), (msg_state_changed): Stop the scale
2683 updater when we start grabing the slider. Don't wait for the
2684 pipeline to be PAUSED.
2686 2006-10-13 Tim-Philipp Müller <tim at centricular dot net>
2688 * gst-libs/gst/interfaces/mixer.c: (gst_mixer_list_tracks),
2689 (gst_mixer_set_volume), (gst_mixer_get_volume),
2690 (gst_mixer_set_mute), (gst_mixer_set_option),
2691 (gst_mixer_get_option), (gst_mixer_mute_toggled),
2692 (gst_mixer_record_toggled), (gst_mixer_volume_changed),
2693 (gst_mixer_option_changed):
2694 Guard mixer interface functions against bogus arguments.
2696 2006-10-12 Julien MOUTTE <julien@moutte.net>
2698 * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
2699 (play_cb), (pause_cb), (stop_cb), (rate_spinbutton_changed_cb),
2700 (msg_state_changed), (main): Use state-changed messages to trigger
2701 start/stop of scale update timer. Indeed the scale slider was
2702 jumping here and there because the update timer was activated
2703 before seek completed. This fixes instant applying of rate changes
2704 by pressing the spinbutton like a crazy man !
2706 2006-10-12 Tim-Philipp Müller <tim at centricular dot net>
2708 Patch by: Sebastien Cote <sebas642 at yahoo.ca>
2710 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
2711 (gst_basertppayload_finalize):
2712 Fix two small memory leaks (#361456).
2714 2006-10-10 Julien MOUTTE <julien@moutte.net>
2716 * tests/examples/seek/seek.c: (do_seek),
2717 (rate_spinbutton_changed_cb): When changing spinbutton we try
2718 to change the rate on the fly.
2720 2006-10-10 Wim Taymans <wim@fluendo.com>
2722 * gst-libs/gst/riff/riff-ids.h:
2723 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
2724 (gst_riff_create_audio_template_caps):
2727 2006-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
2729 Patch by: Josep Torre Valles <josep@fluendo.com>
2731 * ext/gnomevfs/gstgnomevfssink.c:
2732 * ext/gnomevfs/gstgnomevfssrc.c:
2733 Fix URI interface implementation return type.
2734 * ext/pango/gsttextoverlay.c: (gst_text_overlay_set_property):
2735 Fix what looks like a copy/paste issue when assigning values.
2736 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
2737 (gst_audio_filter_template_get_type):
2738 Cast to prevent Forte warnings.
2739 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
2740 Fix URI interface implementation return type.
2741 gst_pad_query_position requires a signed integer pointer as
2742 3rd parameter, GstClockTime is unsigned.
2743 * gst/audioconvert/audioconvert.c:
2744 Fix integer overflow when treated as signed.
2745 * gst/audioresample/resample.c: (resample_add_input_data):
2746 Cast to prevent warnings on Forte.
2747 * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette):
2748 Fix integer overflow when treated as signed.
2749 * gst/ffmpegcolorspace/imgconvert_template.h:
2750 Fix integer overflow when treated as signed. RGBA_OUT shifts bits.
2751 * gst/playback/gstdecodebin.c: (queue_filled_cb),
2752 (cleanup_decodebin):
2753 Who initialises a guint to -1!
2754 Cast function pointers to prevent warnings on Forte.
2755 * gst/playback/gstplaybasebin.c: (queue_deadlock_check),
2756 (queue_threshold_reached):
2757 Cast function pointers correctly to prevent warnings on Forte.
2758 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
2759 Cast function pointers correctly to prevent warnings on Forte.
2760 * gst/subparse/gstssaparse.c: (gst_ssa_parse_setcaps):
2761 Obvious change to unsigned, 0xEF > max signed char.
2762 * gst/tcp/gstmultifdsink.c: (get_buffers_max), (count_burst_unit):
2763 GstClockTime is unsigned, initialise correctly.
2764 * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
2765 Cast so pointer arithemetic doesn't cause warnings on Forte.
2766 * gst/videorate/gstvideorate.c:
2767 Use correct return value.
2768 * tests/examples/seek/scrubby.c:
2769 GstClockTime is unsigned, initialise correctly.
2771 2006-10-10 Tim-Philipp Müller <tim at centricular dot net>
2773 Patch by: Ferenc Gerlits <fgerlits at gmail com>
2775 * gst/typefind/gsttypefindfunctions.c:
2776 Recognise XML files and XML-like files shorter than 256 bytes as
2777 well (fixes #359237).
2779 2006-10-09 Edgard Lima <edgard.lima@indt.org.br>
2781 Patch by: Renato Filho <renato.filho@indt.org.br>
2783 * gst/typefind/gsttypefindfunctions.c:
2784 Added typefind functions to video/x-nuv media.
2786 2006-10-08 Tim-Philipp Müller <tim at centricular dot net>
2788 * gst-libs/gst/interfaces/xoverlay.c:
2789 (gst_x_overlay_set_xwindow_id), (gst_x_overlay_expose):
2790 Some more guards against invalid input.
2792 2006-10-07 Julien MOUTTE <julien@moutte.net>
2794 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event):
2796 * tests/examples/seek/seek.c: (do_seek),
2797 (rate_spinbutton_changed_cb), (main): Add a rate spinbutton in
2798 seek example to experiment with rates != 1.0 (reverse playback !)
2800 2006-10-06 Stefan Kost <ensonic@users.sf.net>
2802 * gst-libs/gst/interfaces/xoverlay.c:
2803 Unref message in doc-example (spotted by Robert McQueen)
2805 2006-10-06 Wim Taymans <wim@fluendo.com>
2807 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2808 (mpeg1_parse_header), (mpeg1_sys_type_find):
2811 2006-10-06 Wim Taymans <wim@fluendo.com>
2813 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
2815 * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2816 Activate dynamic pads before adding them to the element.
2818 2006-10-06 Michael Smith <msmith@fluendo.com>
2820 * gst-libs/gst/floatcast/floatcast.h:
2821 Fix obviously-bogus macros; use the correct types.
2823 2006-10-06 Wim Taymans <wim@fluendo.com>
2825 * gst-libs/gst/rtp/gstbasertpdepayload.c:
2826 (gst_base_rtp_depayload_change_state):
2827 Also call parent state change function to activate pads.
2829 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2830 (mpeg1_parse_header), (mpeg1_sys_type_find):
2831 Add some more debug info in mpeg typefinding.
2833 2006-10-06 Michael Smith <msmith@fluendo.com>
2835 * ext/theora/theoradec.c: (theora_dec_chain):
2836 Zero byte theora packets are valid and well-defined; don't warn on
2839 2006-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
2841 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
2842 (gst_multi_fd_sink_get_stats), (find_limits),
2843 (gst_multi_fd_sink_queue_buffer):
2844 API: add dropped_buffers to the get-stats GValueArray
2846 2006-10-05 Tim-Philipp Müller <tim at centricular dot net>
2848 * ext/alsa/gstalsadeviceprobe.c:
2849 (gst_alsa_device_property_probe_get_values):
2850 * ext/alsa/gstalsasink.c: (set_hwparams):
2851 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_elem_pad),
2852 (gst_ogg_chain_new_stream), (gst_ogg_demux_read_chain):
2853 * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers),
2854 (gst_ogg_mux_process_best_pad):
2855 * ext/ogg/gstoggparse.c: (gst_ogg_parse_new_stream),
2856 (gst_ogg_parse_chain):
2857 * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
2858 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
2859 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_setup),
2860 (gst_vorbis_enc_buffer_check_discontinuous):
2861 * ext/vorbis/vorbisparse.c: (vorbis_parse_src_query):
2862 * gst-libs/gst/audio/gstbaseaudiosink.c:
2863 (gst_base_audio_sink_render):
2864 * gst-libs/gst/cdda/gstcddabasesrc.c:
2865 (gst_cdda_base_src_handle_track_seek):
2866 * gst-libs/gst/rtp/gstbasertpdepayload.c:
2867 (gst_base_rtp_depayload_push_full):
2868 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
2869 * gst/audioresample/resample.c: (resample_input_pushthrough):
2870 * gst/playback/gstplaybasebin.c: (queue_out_of_data):
2871 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
2872 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2873 (wavpack_type_find):
2874 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
2875 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
2876 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
2877 * tests/check/elements/volume.c: (GST_START_TEST):
2878 Printf format fixes.
2880 2006-10-04 Thomas Vander Stichele <thomas at apestaart dot org>
2882 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_caps):
2883 Fix a simple mistake (see the docs)
2886 2006-10-03 Tim-Philipp Müller <tim at centricular dot net>
2888 * docs/plugins/Makefile.am:
2889 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2890 * docs/plugins/gst-plugins-base-plugins-sections.txt:
2891 * docs/plugins/gst-plugins-base-plugins.args:
2892 * docs/plugins/gst-plugins-base-plugins.hierarchy:
2893 * docs/plugins/inspect/plugin-adder.xml:
2894 * docs/plugins/inspect/plugin-alsa.xml:
2895 * docs/plugins/inspect/plugin-audioconvert.xml:
2896 * docs/plugins/inspect/plugin-audiorate.xml:
2897 * docs/plugins/inspect/plugin-audioresample.xml:
2898 * docs/plugins/inspect/plugin-audiotestsrc.xml:
2899 * docs/plugins/inspect/plugin-cdparanoia.xml:
2900 * docs/plugins/inspect/plugin-decodebin.xml:
2901 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
2902 * docs/plugins/inspect/plugin-gdp.xml:
2903 * docs/plugins/inspect/plugin-gnomevfs.xml:
2904 * docs/plugins/inspect/plugin-libvisual.xml:
2905 * docs/plugins/inspect/plugin-ogg.xml:
2906 * docs/plugins/inspect/plugin-pango.xml:
2907 * docs/plugins/inspect/plugin-playbin.xml:
2908 * docs/plugins/inspect/plugin-subparse.xml:
2909 * docs/plugins/inspect/plugin-tcp.xml:
2910 * docs/plugins/inspect/plugin-theora.xml:
2911 * docs/plugins/inspect/plugin-typefindfunctions.xml:
2912 * docs/plugins/inspect/plugin-video4linux.xml:
2913 * docs/plugins/inspect/plugin-videorate.xml:
2914 * docs/plugins/inspect/plugin-videoscale.xml:
2915 * docs/plugins/inspect/plugin-videotestsrc.xml:
2916 * docs/plugins/inspect/plugin-volume.xml:
2917 * docs/plugins/inspect/plugin-vorbis.xml:
2918 * docs/plugins/inspect/plugin-ximagesink.xml:
2919 * docs/plugins/inspect/plugin-xvimagesink.xml:
2920 Add vorbistag element to docs; update version numbers to 0.10.10.1.
2922 2006-10-03 Tim-Philipp Müller <tim at centricular dot net>
2924 Patch by: James "Doc" Livingston <doclivingston at gmail com>
2926 * ext/vorbis/Makefile.am:
2927 * ext/vorbis/vorbis.c: (plugin_init):
2928 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_class_init),
2929 (vorbis_parse_parse_packet), (vorbis_parse_chain):
2930 * ext/vorbis/vorbisparse.h:
2931 * ext/vorbis/vorbistag.c: (gst_vorbis_tag_base_init),
2932 (gst_vorbis_tag_class_init), (gst_vorbis_tag_init),
2933 (gst_vorbis_tag_parse_packet):
2934 * ext/vorbis/vorbistag.h:
2935 Add new vorbistag element which derives from vorbisparse
2936 and is essentially the same as well, only that it implements
2937 the GstTagSetter interface and can modify the stream's
2938 vorbiscomment on the fly (#335635).
2940 * tests/check/Makefile.am:
2941 * tests/check/elements/.cvsignore:
2942 * tests/check/elements/vorbistag.c: (setup_vorbistag),
2943 (cleanup_vorbistag), (buffer_probe), (start_pipeline),
2944 (get_buffer), (stop_pipeline), (_create_codebook_header_buffer),
2945 (_create_audio_buffer), (GST_START_TEST), (vorbistag_suite):
2946 Add unit test for new vorbistag element.
2948 2006-10-03 Tim-Philipp Müller <tim at centricular dot net>
2950 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init),
2951 (vorbis_parse_push_headers), (vorbis_parse_chain):
2952 Set BOS flag in packet structure to fix 'jump depends
2953 on unitialized value' errors in valgrind; various minor
2956 2006-09-30 Jan Schmidt <thaytan@mad.scientist.com>
2958 * gst/playback/gstdecodebin.c: (close_pad_link):
2959 Fix typo in a debug statement.
2961 * gst/playback/gstplaybasebin.c: (probe_triggered),
2962 (new_decoded_pad_full), (new_decoded_pad), (subs_new_decoded_pad),
2963 (gen_source_element), (source_new_pad), (analyse_source),
2965 When handling no_more_pads in new_decoded_pad, make sure to treat
2966 subtitle pads correctly. Fixes playback with subtitle files.
2968 Move a recurring message to LOG level.
2970 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
2971 The maximum value for the Xv colorkey on this Radeon is 0xFFFFFFFF,
2972 which ends up as -1 when cast to an int. Make the logic handle the
2973 max value as an unsigned mask and only change the colorkey when it's
2974 a value we recognise.
2976 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
2978 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2979 Removed empty * between paragraphs
2981 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
2983 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2984 * gst-libs/gst/rtp/README:
2985 Moved some documentation into .c file
2987 2006-09-29 Wim Taymans <wim@fluendo.com>
2989 * gst/playback/gstdecodebin.c: (no_more_pads):
2992 2006-09-29 Wim Taymans <wim@fluendo.com>
2994 * gst/playback/gstdecodebin.c: (new_caps):
2997 * gst/playback/gstplaybin.c:
3000 2006-09-29 Tim-Philipp Müller <tim at centricular dot net>
3002 * tests/check/Makefile.am:
3003 Re-enable cddabasesrc test to see if it works again
3006 2006-09-29 Wim Taymans <wim@fluendo.com>
3008 * gst/playback/gstplaybasebin.c: (setup_subtitle),
3009 (gen_source_element):
3010 Handle invalid URIs a bit more gracefully.
3012 2006-09-29 Tim-Philipp Müller <tim at centricular dot net>
3014 * tests/check/pipelines/oggmux.c:
3015 Remove obsolete comment.
3017 2006-09-29 Michael Smith <msmith@fluendo.com>
3019 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
3020 (gst_ogg_mux_release_pad), (gst_ogg_mux_push_buffer),
3021 (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
3022 (gst_ogg_mux_send_headers), (gst_ogg_mux_process_best_pad),
3023 (gst_ogg_mux_collected):
3024 Commit patch from James "Doc" Livingston, adds proper EOS handling
3025 in oggmux. GStreamer can, for the first time ever, create a valid
3028 * tests/check/pipelines/oggmux.c: (check_chain_final_state),
3030 Reenable tests now that they pass.
3032 2006-09-29 Wim Taymans <wim@fluendo.com>
3034 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
3035 Stop reading commands when EOF (we read 0) as well.
3037 2006-09-28 Wim Taymans <wim@fluendo.com>
3039 * gst/playback/gstdecodebin.c: (dynamic_create), (dynamic_free),
3040 (close_pad_link), (dynamic_remove), (no_more_pads), (new_caps),
3041 (find_dynamic), (unlinked), (close_link):
3042 Implement delayed caps linking needed for element with a lot of
3043 different caps on the src pads that get fixed at runtime.
3044 Improve management of dynamic elements.
3046 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
3047 (group_destroy), (group_commit), (check_queue), (queue_overrun),
3048 (gen_preroll_element), (remove_groups), (unknown_type),
3049 (add_element_stream), (no_more_pads_full), (no_more_pads),
3050 (sub_no_more_pads), (source_no_more_pads), (preroll_unlinked),
3051 (new_decoded_pad), (setup_subtitle), (array_has_value),
3052 (gen_source_element), (source_new_pad), (has_all_raw_caps),
3053 (analyse_source), (remove_decoders), (make_decoder),
3054 (remove_source), (setup_source), (finish_source), (prepare_output),
3055 (gst_play_base_bin_change_state):
3056 * gst/playback/gstplaybasebin.h:
3057 Use more _CAST instead of full type checking casts.
3058 Small cleanups, plug some leaks.
3059 Handle dynamic sources.
3060 Add some helper functions to create lists of strings used for
3061 blacklisting and other stuff.
3062 Refactor some code dealing with analysing the source.
3063 Re-enable sources without pads (like cd:// or other selfcontained
3066 2006-09-28 Wim Taymans <wim@fluendo.com>
3068 * gst-libs/gst/audio/gstbaseaudiosink.c:
3069 (gst_base_audio_sink_render):
3070 When we have a timestamp, we can still perform clipping.
3071 When we have no clock, we must play the sample ASAP.
3073 2006-09-28 Wim Taymans <wim@fluendo.com>
3075 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
3076 Set caps on outgoing buffers.
3078 * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
3079 (gst_video_rate_event), (gst_video_rate_chain):
3080 * gst/videorate/gstvideorate.h:
3081 Fix videorate some more. Fixes #357977
3083 2006-09-28 Tim-Philipp Müller <tim at centricular dot net>
3085 * tests/check/elements/adder.c: (adder_suite):
3086 Don't set timeout to 6 seconds when we're running
3087 in valgrind ... (and how is 6 seconds longer than
3088 the default anyway?)
3090 2006-09-28 Wim Taymans <wim@fluendo.com>
3092 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
3093 (gst_audio_rate_sink_event), (gst_audio_rate_convert),
3094 (gst_audio_rate_convert_segments), (gst_audio_rate_chain):
3095 Keep sink and src segment to keep track of time and support more
3097 Fix bogus next_offset and run_time calculation, don't understand how
3098 this could have worked before. Fixes #357976.
3099 Remove some unneeded vars.
3101 2006-09-28 Tim-Philipp Müller <tim at centricular dot net>
3103 * gst/playback/gstplaybin.c: (remove_sinks):
3104 Only remove visualisation from visbin if there is a visbin (or:
3105 don't throw warnings when closing totem without playing a file).
3107 2006-09-27 Wim Taymans <wim@fluendo.com>
3109 * gst-libs/gst/audio/gstbaseaudiosink.c:
3110 (gst_base_audio_sink_render):
3111 Add some more info in a WARNING.
3113 * gst-libs/gst/audio/gstbaseaudiosrc.c:
3114 (gst_base_audio_src_create):
3115 Handle PAUSE in create function, use new -core addition to
3116 wait for playing. Fixes pausing and resuming capture from an
3119 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
3120 (gst_ring_buffer_read):
3122 Caller supports interrupted reads now.
3124 2006-09-27 Tim-Philipp Müller <tim at centricular dot net>
3126 * tests/check/Makefile.am:
3127 Another attempt to make the gen64 buildbot happy.
3129 2006-09-27 Stefan Kost <ensonic@users.sf.net>
3131 Patch by: Jonathan Matthew <jonathan@kaolin.wh9.net>
3133 * ext/libvisual/visual.c: (gst_visual_clear_actors),
3134 (gst_visual_chain), (gst_visual_change_state):
3135 Libvisual plugin was not passing audio data to libvisual 0.4.0
3136 correctly. Fixes #357800
3138 2006-09-27 Tim-Philipp Müller <tim at centricular dot net>
3140 * tests/check/pipelines/simple-launch-lines.c: (run_pipeline):
3141 Add timeout to _get_state() so we see which pipeline it is
3142 that causes trouble on the gen64 build bot.
3144 2006-09-27 Wim Taymans <wim@fluendo.com>
3146 * gst-libs/gst/rtp/gstbasertpdepayload.c:
3147 (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
3148 (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
3149 (gst_base_rtp_depayload_set_gst_timestamp):
3150 the source pad always uses fixed caps.
3152 2006-09-27 Wim Taymans <wim@fluendo.com>
3154 * docs/libs/gst-plugins-base-libs-docs.sgml:
3155 * docs/libs/gst-plugins-base-libs-sections.txt:
3156 * gst-libs/gst/audio/gstaudioclock.c:
3157 * gst-libs/gst/audio/gstaudioclock.h:
3158 * gst-libs/gst/audio/gstaudiosink.c:
3159 * gst-libs/gst/audio/gstaudiosink.h:
3160 * gst-libs/gst/audio/gstaudiosrc.c:
3161 * gst-libs/gst/audio/gstbaseaudiosink.c:
3162 (gst_base_audio_sink_render):
3163 * gst-libs/gst/audio/gstbaseaudiosink.h:
3164 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init):
3165 * gst-libs/gst/audio/gstbaseaudiosrc.h:
3166 * gst-libs/gst/audio/gstringbuffer.h:
3167 Added docs for the audio libs.
3169 2006-09-27 Tim-Philipp Müller <tim at centricular dot net>
3171 * tests/check/Makefile.am:
3172 Temporarily disable test that fails on the bots for unknown reasons.
3174 2006-09-26 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
3176 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
3177 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
3178 Moved AudioCodecType into priv
3179 Renamed all gst_basertpaudiopayload to gst_base_rtp_audio_payload prefixes
3181 2006-09-25 Wim Taymans <wim@fluendo.com>
3183 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
3184 (add_fakesink), (remove_fakesink), (pad_probe), (close_pad_link),
3185 (is_demuxer_element), (try_to_link_1), (get_our_ghost_pad),
3187 Cleanups and small leak fixes.
3188 Added Depayloaders to valid list of autopluggable elements.
3190 2006-09-25 Wim Taymans <wim@fluendo.com>
3192 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
3193 (gst_play_bin_vis_blocked), (gst_play_bin_set_property),
3194 (gen_video_element), (gen_text_element), (gen_audio_element),
3195 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
3196 (gst_play_bin_set_clock_func), (gst_play_bin_change_state):
3197 Detect NO_PREROLL state change returns and disable clock distribution to
3198 the sinks so that sync is disabled.
3199 Avoid some type checking and do simple casts instead.
3200 Small cleanups, fix some FIXMEs.
3201 Be more robust when linking user specified elements, catch an report
3202 errors. Fixes #357404.
3203 Fix some leaks in the error paths.
3205 2006-09-25 Stefan Kost <ensonic@users.sf.net>
3208 ChangeLog surgery for missing bug-number
3210 2006-09-25 Tim-Philipp Müller <tim at centricular dot net>
3212 Patch by: Peter Kjellerstedt <pkj at axis com>
3214 * gst/playback/test.c:
3215 Fix compilation with uClibc and -Werror (#357591).
3217 2006-09-25 Tim-Philipp Müller <tim at centricular dot net>
3219 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
3220 Parse dates that are followed by a time as well (#357532).
3222 * tests/check/libs/tag.c: (test_vorbis_tags):
3223 Add unit test for this.
3225 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3227 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
3228 (gst_audio_convert_transform_caps):
3229 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor):
3230 * gst/videotestsrc/videotestsrc.h:
3231 A few array const-ifications.
3233 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3235 * tests/check/Makefile.am:
3236 See if this makes the build bots happy.
3238 * tests/check/libs/cddabasesrc.c:
3241 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3243 Patch by: Young-Ho Cha <ganadist at chollian dot net>
3245 * gst/subparse/samiparse.c: (handle_start_font),
3246 (fix_invalid_entities):
3247 More case-insensitivity for certain tags; recognise entities with
3248 decimal codes as special entities as well (#357330).
3250 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3252 * gst-libs/gst/Makefile.am:
3253 Need to build tag directory before cdda.
3255 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3257 * docs/libs/gst-plugins-base-libs-sections.txt:
3258 * gst-libs/gst/cdda/Makefile.am:
3259 * gst-libs/gst/cdda/gstcddabasesrc.c:
3260 (gst_cdda_base_src_base_init):
3261 * gst-libs/gst/cdda/gstcddabasesrc.h:
3262 * gst-libs/gst/tag/tag.h:
3263 * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal),
3264 (gst_tag_register_musicbrainz_tags):
3265 Move GST_TAG_CDDA_* tags into libgsttag and make libgstcddabasesrc
3266 depend on libgsttag. This is required so we can extract/read tags like
3267 DISCID without depending on libgstcddabasesrc (which used to register
3270 * gst-libs/gst/tag/gstvorbistag.c:
3271 Add vorbiscomment mapping for CDDB_DISCID and MUSICBRAINZ_DISCID
3272 tags (also see #347848).
3274 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1):
3275 Log vorbis comments we are actually writing. Const-ify array.
3277 2006-09-23 Wim Taymans <wim@fluendo.com>
3279 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
3280 Improve buffering a bit by avoiding a deadlock because we cannot assume
3281 the underrun is always called.
3283 2006-09-23 Wim Taymans <wim@fluendo.com>
3285 Patch by: Young-Ho Cha <ganadist at chollian dot net>
3287 * gst-libs/gst/riff/riff-ids.h:
3288 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3289 (gst_riff_create_audio_template_caps):
3290 Added MPEG-4 AAC and id and caps. Fixes #357289
3291 Added WMA9 Lossless id.
3293 2006-09-22 Tim-Philipp Müller <tim at centricular dot net>
3295 * ext/gnomevfs/gstgnomevfssrc.c:
3296 Fix misleading docs addition.
3298 * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3299 Get rid of compiler warning the right way.
3301 2006-09-22 Wim Taymans <wim@fluendo.com>
3303 * gst-libs/gst/rtp/gstbasertpdepayload.c:
3304 (gst_base_rtp_depayload_finalize),
3305 (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
3306 (gst_base_rtp_depayload_push_full),
3307 (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_push),
3308 (gst_base_rtp_depayload_process),
3309 (gst_base_rtp_depayload_set_gst_timestamp),
3310 (gst_base_rtp_depayload_queue_release):
3311 * gst-libs/gst/rtp/gstbasertpdepayload.h:
3314 Refactored the process method and added methods to push from the process
3316 Use _scale functions.
3317 API: gst_base_rtp_depayload_push_ts
3318 API: gst_base_rtp_depayload_push
3320 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
3321 timestamps are uint.
3323 2006-09-22 Stefan Kost <ensonic@users.sf.net>
3325 * gst-libs/gst/interfaces/xoverlay.c:
3326 Remove unused statement from doc example.
3328 2006-09-21 Stefan Kost <ensonic@users.sf.net>
3330 * gst-libs/gst/interfaces/videoorientation.c:
3331 (gst_video_orientation_iface_init),
3332 (gst_video_orientation_get_hflip),
3333 (gst_video_orientation_get_vflip),
3334 (gst_video_orientation_get_hcenter),
3335 (gst_video_orientation_get_vcenter),
3336 (gst_video_orientation_set_hflip),
3337 (gst_video_orientation_set_vflip),
3338 (gst_video_orientation_set_hcenter),
3339 (gst_video_orientation_set_vcenter):
3340 Add since tags to new API docs, ChangeLog surgery (forgot API keyword
3343 2006-09-21 Tim-Philipp Müller <tim at centricular dot net>
3345 * tests/check/Makefile.am:
3346 * tests/check/elements/.cvsignore:
3347 * tests/check/elements/ffmpegcolorspace.c: (rgb_format_to_caps),
3348 (create_rgb_conversions), (rgb_conversion_free),
3349 (right_shift_colour), (fix_expected_colour), (check_rgb_buf),
3350 (got_buf_cb), (GST_START_TEST), (ffmpegcolorspace_suite):
3351 Add unit test for ffmpegcolorspace (RGB <=> RGB only so far),
3352 but disable for now since it doesn't pass (something wrong with
3355 2006-09-21 Wim Taymans <wim@fluendo.com>
3357 * gst/playback/gstplaybasebin.c: (group_commit),
3358 (queue_deadlock_check), (queue_overrun), (queue_threshold_reached),
3359 (queue_out_of_data), (gen_preroll_element),
3360 (preroll_remove_overrun), (probe_triggered):
3361 Refactor handling of overrun detection.
3362 Separate handling of group completion and deadlock detection when doing
3363 network buffering. This should fix some deadlocks that were not detected
3364 because the group was completed.
3365 Add more comments, improve debugging.
3367 2006-09-21 Wim Taymans <wim@fluendo.com>
3369 * tests/check/elements/gdpdepay.c: (GST_START_TEST):
3370 * tests/check/libs/audio.c:
3371 Some more compilation fixes.
3373 2006-09-21 Wim Taymans <wim@fluendo.com>
3375 * gst-libs/gst/audio/gstringbuffer.c:
3376 (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
3377 (gst_ring_buffer_read):
3378 Early morning compilation fix.
3380 2006-09-20 Wim Taymans <wim@fluendo.com>
3382 * tests/check/elements/gdpdepay.c: (GST_START_TEST):
3383 * tests/check/elements/multifdsink.c: (GST_START_TEST):
3384 * tests/check/elements/videorate.c: (GST_START_TEST):
3385 * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
3386 * tests/check/pipelines/oggmux.c: (eos_buffer_probe):
3389 2006-09-20 Stefan Kost <ensonic@users.sf.net>
3391 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3392 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
3393 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
3394 Handcrafted merge to help CVS understanding what I changed and what
3397 2006-09-20 Stefan Kost <ensonic@users.sf.net>
3399 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3400 (gst_xvimagesink_get_times):
3401 change colorkey behaviour back according to #354773 comment 6/7
3403 2006-09-19 Michael Smith <msmith@fluendo.com>
3405 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
3406 (gst_multi_fd_sink_class_init), (get_buffers_max), (find_limits),
3407 (gst_multi_fd_sink_recover_client),
3408 (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_set_property),
3409 (gst_multi_fd_sink_get_property):
3410 * gst/tcp/gstmultifdsink.h:
3411 Implement stubbed out properties unit-type, units-soft-max,
3412 units-max, to allow specifying maximum sizes in units other than
3416 2006-09-19 Wim Taymans <wim@fluendo.com>
3418 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3419 (gst_riff_create_audio_template_caps):
3420 Reorder the audio formats a bit for clarity.
3421 Detect and create caps for MSGSM and MSN (WAV49).
3424 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3425 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
3426 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
3427 Small cleanups, move error handling out of normal flow for clarity.
3429 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3431 * docs/libs/gst-plugins-base-libs-docs.sgml:
3432 * docs/libs/gst-plugins-base-libs.types:
3433 * gst-libs/gst/interfaces/Makefile.am:
3434 * gst-libs/gst/interfaces/videoorientation.c:
3435 (gst_video_orientation_get_type),
3436 (gst_video_orientation_iface_init),
3437 (gst_video_orientation_get_hflip),
3438 (gst_video_orientation_get_vflip),
3439 (gst_video_orientation_get_hcenter),
3440 (gst_video_orientation_get_vcenter),
3441 (gst_video_orientation_set_hflip),
3442 (gst_video_orientation_set_vflip),
3443 (gst_video_orientation_set_hcenter),
3444 (gst_video_orientation_set_vcenter):
3445 * gst-libs/gst/interfaces/videoorientation.h:
3446 API: Add new interface to control video orientation (fixes #354908)
3448 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3450 * gst/videotestsrc/gstvideotestsrc.c:
3451 Use G_UNLIKELY in _create and log one more detail.
3453 (gst_video_test_src_get_times), (gst_video_test_src_create):
3454 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
3455 Use gst_util_uint64_scale_int in _get_times().
3457 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3459 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
3460 Give better warning message (add object and detail).
3462 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3464 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3465 (gst_xvimagesink_get_times):
3466 xvimage assumed that XV_COLORKEY can be set in RGB888 format (fixes
3467 #354773), use gst_util_uint64_scale_int in _get_times()
3469 2006-09-18 Michael Smith <msmith@fluendo.com>
3471 * ext/ogg/gstoggmux.c: (gst_ogg_mux_push_buffer):
3472 Timestamps are unsigned; comparision against GST_CLOCK_TIME_NONE was
3473 always true, leading to dropping all timestamps.
3475 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3477 * ext/libvisual/visual.c: (gst_vis_src_negotiate),
3478 (gst_visual_chain), (gst_visual_change_state):
3479 update to work also with libvisual 0.4 API, fix double unref (#355914)
3481 * tools/gst-launch-ext.1.in:
3482 * tools/gst-visualise.1.in:
3483 remove references to old man-pages
3485 * tests/examples/seek/seek.c: (main):
3486 add real meadi-buttons, add tool-tips for the seek-options, arrange
3487 seek options in a table
3489 2006-09-18 Michael Smith <msmith@fluendo.com>
3491 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear),
3492 (gst_ogg_mux_push_buffer):
3493 Don't generate out-of-order timestamps from oggmux, instead clamp
3494 output timestamps to be >= the previously output ts.
3497 2006-09-18 Michael Smith <msmith@fluendo.com>
3499 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
3500 (gst_multi_fd_sink_class_init):
3501 Updates, fixes, and typo corrections for multifdsink. No functional
3504 2006-09-17 Michael Smith <msmith@fluendo.com>
3506 * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find):
3507 Don't crash on truncated files - check that we got an 8 byte buffer
3508 before trying to memcmp it.
3510 2006-09-17 Tim-Philipp Müller <tim at centricular dot net>
3512 * gst/playback/gstplaybasebin.c: (get_active_source):
3513 Make stream-switching appear instant to the application
3514 (ie. make sure that a g_object_get on 'current-foo' returns
3515 the stream previously set with g_object_set(). Totem needs
3516 this to update stream-related meta-info (like audio-codec)
3517 correctly when switching streams.
3519 2006-09-17 Tim-Philipp Müller <tim at centricular dot net>
3521 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer),
3522 (gst_alsa_mixer_ensure_track_list):
3523 Try harder to guess which mixer track is the master mixer
3524 track (instead of just taking the first one that has a pvolume).
3527 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3529 reviewed by: <delete if not using a buddy>
3531 * gst-libs/gst/audio/audio.h:
3532 * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
3534 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3536 * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
3537 (gst_audio_convert_transform_caps):
3538 Get structure-name just once.
3540 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3542 * tests/check/elements/audioresample.c: (GST_START_TEST):
3543 * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3544 * tests/check/elements/volume.c: (GST_START_TEST):
3545 * tests/check/elements/vorbisdec.c: (GST_START_TEST):
3546 * tests/check/pipelines/oggmux.c: (validate_ogg_page), (eos_watch),
3547 (test_pipeline), (GST_START_TEST):
3548 * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
3549 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
3550 Fix big batch of compiler warnings.
3552 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3554 * ext/gnomevfs/gstgnomevfssrc.c:
3555 Add docs about icydemux usage in connection with gnomevfssrc
3557 * ext/libvisual/visual.c:
3558 * ext/ogg/gstoggaviparse.c:
3559 * ext/ogg/gstoggdemux.c:
3560 * ext/ogg/gstoggmux.c:
3561 * ext/ogg/gstoggparse.c:
3562 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
3563 * gst-libs/gst/audio/gstaudiosink.c:
3564 * gst-libs/gst/audio/gstaudiosrc.c:
3565 * gst/audiorate/gstaudiorate.c:
3566 More G_OBJECT macro fixing.
3568 * gst/audiotestsrc/gstaudiotestsrc.h:
3569 Fix wrong info in header due to copy & paste
3571 2006-09-15 Wim Taymans <wim@fluendo.com>
3573 * gst-libs/gst/audio/gstbaseaudiosink.c:
3574 (gst_base_audio_sink_get_time), (gst_base_audio_sink_callback):
3575 * gst-libs/gst/audio/gstbaseaudiosrc.c:
3576 (gst_base_audio_src_get_time), (gst_base_audio_src_fixate),
3577 (gst_base_audio_src_get_times), (gst_base_audio_src_get_offset),
3578 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
3579 Do the delay calculation in the source/sink base classes as this is
3580 specific for the capture/playback mode.
3581 Try to fixate a bit better, like round depth up to a multiple of 8
3583 Handle underruns correctly by marking DISCONT on buffers and adjusting
3584 timestamps to handle the gap.
3585 Set offset/offset_end correctly on buffers.
3587 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_pause),
3588 (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
3589 (gst_ring_buffer_read):
3590 Remove resync and underrun recovery from the ringbuffer.
3591 Fix ringbuffer read code on under/overrun.
3593 2006-09-15 Wim Taymans <wim@fluendo.com>
3595 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
3596 (gst_play_base_bin_init), (fill_buffer), (check_queue),
3597 (queue_threshold_reached), (gst_play_base_bin_set_property),
3598 (gst_play_base_bin_get_property):
3599 * gst/playback/gstplaybasebin.h:
3600 Don't use a 0 low watermark when buffering, it is catching starvation
3601 way too late. Instead, use a 3 second queue with 30 and 95
3602 percent low/high watermarks.
3603 Added queue-min-threshold property to configure low watermark.
3604 Use new _buffering message API.
3605 Make queue_threshold variable big enough to store a uint64 time value.
3606 API: playbin::queue-min-threshold property.
3608 2006-09-15 Wim Taymans <wim@fluendo.com>
3611 We require 0.10.10.1 now because of _wait_preroll().
3613 * gst-libs/gst/audio/gstbaseaudiosink.c:
3614 (gst_base_audio_sink_render):
3615 Use gst_base_sink_wait_preroll().
3617 2006-09-15 Wim Taymans <wim@fluendo.com>
3619 * ext/alsa/gstalsasink.c: (xrun_recovery), (gst_alsasink_write):
3620 * ext/alsa/gstalsasrc.c: (xrun_recovery), (gst_alsasrc_read):
3621 Use DEBUG_OBJECT more.
3623 === release 0.10.10 ===
3625 2006-09-07 Thomas Vander Stichele <thomas at apestaart dot org>
3627 patch by: Michael Smith <msmith at fluendo dot com>
3629 * gst/tcp/gstmultifdsink.c: (is_sync_frame),
3630 (gst_multi_fd_sink_client_queue_buffer),
3631 (gst_multi_fd_sink_new_client):
3632 * tests/check/elements/multifdsink.c: (GST_START_TEST),
3633 (multifdsink_suite):
3634 Fix implementation of sync-method 'next-keyframe'
3637 2006-09-07 Thomas Vander Stichele <thomas at apestaart dot org>
3639 patch by: Wim Taymans <wim at fluendo dot com>
3641 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
3642 This patch removes the RANDOM flag that was incorrectly introduced with
3643 revision 1.91. Fixes #354590
3645 2006-09-05 Tim-Philipp Müller <tim at centricular dot net>
3647 * tests/check/Makefile.am:
3648 Random variation in Makefile line to see if it makes the
3649 gen64-base-full bot any happier.
3651 2006-09-04 Tim-Philipp Müller <tim at centricular dot net>
3653 * tests/check/pipelines/oggmux.c: (oggmux_suite):
3654 Disable test that fails at the moment (killed after timeout).
3656 2006-09-04 Tim-Philipp Müller <tim at centricular dot net>
3658 Patch by: James Livingston <doclivingston at gmail.com>
3660 * tests/check/Makefile.am:
3661 * tests/check/pipelines/.cvsignore:
3662 * tests/check/pipelines/oggmux.c: (get_page_codec),
3663 (check_chain_final_state), (fail_if_audio), (validate_ogg_page),
3664 (eos_buffer_probe), (start_pipeline), (stop_pipeline), (eos_watch),
3665 (test_pipeline), (test_vorbis), (test_theora), (test_vorbis_theora),
3666 (test_theora_vorbis), (oggmux_suite):
3667 Add simple unit test for oggmux from #337026 with checking for the
3668 EOS flags disabled for the time being.
3670 2006-09-04 Wim Taymans <wim@fluendo.com>
3672 patch by: Alessandro Dessina <alessandro nnva org>
3674 * ext/ogg/gstoggmux.c:
3675 Add cmml caps to oggmux. Fixes #353912
3677 2006-09-02 Tim-Philipp Müller <tim at centricular dot net>
3679 * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3680 Returning a return value often helps. In this case, we
3681 don't need the return value anyway, so just get rid of it.
3682 Should make build bots much happier.
3684 2006-09-02 Tim-Philipp Müller <tim at centricular dot net>
3686 * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
3687 (paint_get_structure), (gst_video_test_src_get_size),
3688 (gst_video_test_src_smpte), (gst_video_test_src_snow),
3689 (gst_video_test_src_unicolor), (paint_setup_AYUV),
3690 (paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
3691 (paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
3692 * gst/videotestsrc/videotestsrc.h:
3693 Add support for AYUV and the various RGBA formats. Initialise
3694 fields of paintinfo structs allocated on the stack.
3696 * tests/check/elements/videotestsrc.c: (right_shift_colour),
3697 (fix_expected_colour), (check_rgb_buf), (got_buf_cb),
3698 (check_rgb_buf), (videotestsrc_suite):
3699 Add unit tests for videotestsrc's RGB output.
3701 2006-09-01 Tim-Philipp Müller <tim at centricular dot net>
3703 * gst/videotestsrc/gstvideotestsrc.c:
3704 (gst_video_test_src_pattern_get_type),
3705 (gst_video_test_src_set_pattern):
3706 * gst/videotestsrc/gstvideotestsrc.h:
3707 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
3708 (gst_video_test_src_black), (gst_video_test_src_white),
3709 (gst_video_test_src_red), (gst_video_test_src_green),
3710 (gst_video_test_src_blue):
3711 * gst/videotestsrc/videotestsrc.h:
3712 Add more uni-colour patterns ("white", "red", "green", and "blue").
3714 2006-09-01 Tim-Philipp Müller <tim at centricular dot net>
3716 * gst/videotestsrc/videotestsrc.c: (paint_setup_YVYU):
3717 Fix stride for YVYU, should be word-aligned (#353658).
3719 2006-08-31 Tim-Philipp Müller <tim at centricular dot net>
3721 * gst/adder/gstadder.c: (gst_adder_src_event):
3724 2006-08-31 Edward Hervey <edward@fluendo.com>
3726 * gst/adder/gstadder.c: (forward_event_func),
3727 (gst_adder_src_event), (gst_adder_collected),
3728 (gst_adder_change_state):
3729 * gst/adder/gstadder.h:
3730 Remember the start position asked in the incoming seeks, so we can
3731 output GST_EVENT_NEW_SEGMENT with a correct position value (instead
3732 of assuming it will always be 0).
3734 2006-08-31 Edward Hervey <edward@fluendo.com>
3736 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
3737 (gst_ogg_demux_finalize), (gst_ogg_demux_perform_seek),
3738 (gst_ogg_demux_loop):
3739 Send the GST_EVENT_NEW_SEGMENT from the streaming thread.
3741 2006-08-30 Tim-Philipp Müller <tim at centricular dot net>
3743 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3744 (gst_ffmpegcsp_get_unit_size):
3745 Return FALSE instead of returning a random false unit
3746 size when the format isn't known/supported (even if
3747 this shouldn't happen under normal circumstances).
3749 2006-08-29 Wim Taymans <wim@fluendo.com>
3751 Patch by: Tim-Philipp Müller <tim at centricular dot net>
3753 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create),
3754 (gst_gnome_vfs_src_start):
3755 Try harder to get the size from a uri by using _info_uri() when
3756 _info_from_handle() does not give us enough info.
3757 Also follow symlinks when getting the size.
3758 Partially Fixes #332864.
3760 2006-08-29 Tim-Philipp Müller <tim at centricular dot net>
3762 Patch by: Viktor Peters <viktor dot peters at gmail dot com>
3764 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
3765 (gst_alsa_mixer_update), (gst_alsa_mixer_get_volume),
3766 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
3767 (gst_alsa_mixer_set_record):
3768 * ext/alsa/gstalsamixertrack.c:
3769 (gst_alsa_mixer_track_update_alsa_capabilities),
3770 (alsa_track_has_cap), (gst_alsa_mixer_track_new),
3771 (gst_alsa_mixer_track_update):
3772 * ext/alsa/gstalsamixertrack.h:
3773 Improve and fix mixer track handling, in particular better handling
3774 of alsa's pvolume/pswitch/cvolume/cswitch capabilities; create
3775 separate track objects for tracks that have both capture and playback
3776 volume (and label them differently as well so they're not mistakenly
3777 assumed to be duplicates); classify mixer tracks that only affect
3778 the audible volume of something (rather than the capture volume)
3779 as playback tracks. Redefine/fix meaning of RECORD and MUTE flags
3780 for capture tracks to correspond to alsa-pswitch alsa-cswitch
3781 (following the meaning documented in the mixer interface header
3782 file); add support for alsa's exclusive cswitch groups; update/sync
3783 state/flags better if mixer settings are changed by another
3784 application. Fixes #336075.
3786 2006-08-29 Tim-Philipp Müller <tim at centricular dot net>
3788 * gst/playback/gstplaybin.c:
3789 Improve docs: add section about BUFFERING messages sent by playbin.
3791 2006-08-29 Michael Smith <msmith@fluendo.com>
3793 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_push_buffer),
3794 (gst_vorbis_enc_buffer_check_discontinuous),
3795 (gst_vorbis_enc_chain):
3796 Ignore explicit DISCONT marked on buffers (which is often spurious,
3797 particularly when using multiple segments), in favour of solely
3798 using the timestamps/durations.
3800 2006-08-29 Edward Hervey <edward@fluendo.com>
3802 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
3803 Don't rely on incoming buffers offset anymore, since it is completely
3804 broken when using multiple segments.
3805 Instead convert the incoming buffers timestamp to running time, and
3806 then convert that value to the offsets.
3807 Also inform GstSegment of the last outputted stop position, which is
3808 needed if we received several segments with an unknown stop value.
3810 2006-08-29 Thomas Vander Stichele <thomas at apestaart dot org>
3812 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
3813 fix buffer unreffing on a header push failure
3815 2006-08-28 Wim Taymans <wim@fluendo.com>
3817 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_sink_event),
3818 (gst_audio_rate_chain):
3819 Make the metadata of the buffer writable before changing its
3822 2006-08-28 Wim Taymans <wim@fluendo.com>
3824 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
3825 (gst_audio_rate_setcaps), (gst_audio_rate_init),
3826 (gst_audio_rate_sink_event), (gst_audio_rate_src_event),
3827 (gst_audio_rate_chain), (gst_audio_rate_change_state):
3828 Fix audiorate some more.
3829 Reset and resync counters on flush and READY.
3830 Handle the DISCONT flag correctly.
3831 Use GstSegment to track position.
3832 Fail when not negotiated.
3835 2006-08-25 Michael Smith <msmith@fluendo.com>
3837 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3839 Remove accidently included debug line.
3841 2006-08-25 Wim Taymans <wim@fluendo.com>
3843 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3845 If a buffer is received with no caps, make the buffer metadata
3846 writable and set the caps, making sure that we don't screw up the
3849 2006-08-25 Michael Smith <msmith@fluendo.com>
3851 * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset),
3852 (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain):
3853 Fix memory leaks and misleading debug messages, add a couple of
3856 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats),
3857 (gst_multi_fd_sink_render):
3858 Do not use gst_buffer_make_writable() in a basesink render method,
3859 as it may incorrectly unref the buffer. Instead, use convoluted
3860 dance to avoid copying the buffer except when we need to.
3862 2006-08-25 Michael Smith <msmith@fluendo.com>
3864 * ext/vorbis/vorbisenc.c:
3865 (gst_vorbis_enc_buffer_check_discontinuous):
3866 Allow very small discontinuities in the timestamps. These we can't
3867 do anything useful with anyway (because vorbis's timestamps have
3868 only sample granularity), and are commonly produced by elements with
3869 minor bugs. Allow up to 1/2 a sample out.
3872 2006-08-24 Wim Taymans <wim@fluendo.com>
3874 * tests/examples/seek/seek.c: (seek_cb), (start_seek), (stop_seek),
3875 (play_scrub_toggle_cb), (main):
3876 Add a checkbox to enable play scrubbing. Makes it possible to disable
3879 2006-08-23 Stefan Kost <ensonic@users.sf.net>
3881 * tests/check/elements/.cvsignore:
3884 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
3886 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
3887 (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init),
3888 (gst_ogm_parse_class_init), (gst_ogm_parse_dispose),
3889 (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
3890 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
3891 (gst_ogm_parse_stream_header), (gst_ogm_parse_comment_packet),
3892 (gst_ogm_text_parse_strip_trailing_zeroes),
3893 (gst_ogm_parse_data_packet), (gst_ogm_parse_chain),
3894 (gst_ogm_parse_sink_event), (gst_ogm_parse_change_state):
3895 Refactor ogm parse, do better input checking, misc. clean-ups.
3896 Cache incoming events and push them once the source pad has
3897 been created. Don't pass unterminated strings to sscanf().
3898 Strip trailing zeroes from subtitle text output, since they
3899 are not valid UTF-8. Don't push vorbiscomment packets on
3900 the subtitle text pad. Output perfect streams if possible.
3902 2006-08-23 Wim Taymans <wim@fluendo.com>
3904 * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
3905 Waits for tasks to settle down so that we clean up correctly for
3908 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
3910 * tests/check/libs/tag.c: (GST_START_TEST), (taglists_are_equal):
3911 Unit test fixes: \377 is more likely to fit into 8 bits than \777;
3912 actually return return value in taglists_are_equal.
3914 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
3916 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
3917 Fix crash due to broken bitstream parsing on x86-64: can't make
3918 any assumptions about sizeof(struct) due to alignment/packing
3919 differences on different architectures. Fixes #351790.
3921 2006-08-22 Wim Taymans <wim@fluendo.com>
3923 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
3924 (gst_riff_parse_chunk), (gst_riff_parse_file_header),
3925 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
3926 (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
3927 (gst_riff_parse_info):
3928 Protect public functions against bad input.
3932 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
3934 * gst-libs/gst/riff/riff-ids.h:
3935 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
3936 Add voxware audio IDs (even if we can't play it) (#351795).
3938 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
3940 * gst-libs/gst/riff/riff-media.c:
3941 (gst_riff_create_video_template_caps),
3942 (gst_riff_create_audio_template_caps),
3943 (gst_riff_create_iavs_template_caps):
3944 Const-ify some arrays and use G_N_ELEMENTS instead
3945 of wasting oodles of RAM on terminator bits.
3947 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
3949 * gst-libs/gst/tag/gstvorbistag.c:
3950 (gst_tag_list_to_vorbiscomment_buffer):
3951 * tests/check/libs/tag.c: (GST_START_TEST):
3952 And the same for _to_vorbiscomment_buffer(): allow
3953 id_data_len == 0 for speex.
3955 2006-08-21 Thomas Vander Stichele <thomas at apestaart dot org>
3958 * docs/plugins/Makefile.am:
3959 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3960 * docs/plugins/gst-plugins-base-plugins-sections.txt:
3961 * docs/plugins/inspect/plugin-gdp.xml:
3962 * gst/gdp/Makefile.am:
3963 * tests/check/Makefile.am:
3964 Move GDP plugin to -base from -bad. Closes #347783.
3966 2006-08-21 Tim-Philipp Müller <tim at centricular dot net>
3968 * gst-libs/gst/tag/gstvorbistag.c:
3969 (gst_tag_list_from_vorbiscomment_buffer):
3970 Allow id_data_len == 0 (needed for vorbis comments in Speex files).
3971 Also add some checks to make sure we don't memcmp() beyond the end of
3972 vorbiscomment buffer if the ID to check for is larger than the buffer.
3974 * tests/check/libs/tag.c: (GST_START_TEST):
3975 Some more tests for gst_tag_list_from_vorbiscomment_buffer().
3977 2006-08-21 Tim-Philipp Müller <tim at centricular dot net>
3979 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1),
3980 (gst_vorbis_enc_set_metadata):
3981 Use vorbis comment utility functions from libgsttag
3982 instead of re-inventing the wheel (partially fixes #347091).
3984 2006-08-21 Jan Schmidt <thaytan@mad.scientist.com>
3986 * tests/check/elements/audioconvert.c: (GST_START_TEST):
3987 Fix leaks. Wait for state transitions that might happen ASYNC, as well
3990 2006-08-21 Wim Taymans <wim@fluendo.com>
3992 * docs/libs/Makefile.am:
3993 * docs/libs/gst-plugins-base-libs-sections.txt:
3994 * docs/libs/gst-plugins-base-libs.types:
3995 Don't try to GObject scan the netbuffer as it's not a GObject.
3998 * gst-libs/gst/netbuffer/gstnetbuffer.c:
3999 * gst-libs/gst/netbuffer/gstnetbuffer.h:
4000 Document GstNetBuffer.
4002 2006-08-21 Stefan Kost <ensonic@users.sf.net>
4004 * tests/check/elements/audioconvert.c: (GST_START_TEST),
4005 (audioconvert_suite):
4006 Add testcase for caps-size-explosion
4008 2006-08-20 Stefan Kost <ensonic@users.sf.net>
4010 * gst/audioconvert/gstaudioconvert.c:
4011 (gst_audio_convert_get_unit_size), (set_structure_widths):
4012 Lower debug, use g_assert in _get_unit_size
4014 * gst/audioresample/gstaudioresample.c:
4015 (audioresample_get_unit_size):
4016 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4017 (gst_ffmpegcsp_get_unit_size):
4018 * gst/videoscale/gstvideoscale.c: (gst_video_scale_get_unit_size):
4019 use g_assert in _get_unit_size
4021 2006-08-18 Wim Taymans <wim@fluendo.com>
4023 * docs/libs/gst-plugins-base-libs-sections.txt:
4024 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_set_packet_len),
4025 (gst_rtp_buffer_pad_to), (gst_rtp_buffer_get_payload_subbuffer),
4026 (gst_rtp_buffer_get_payload_buffer):
4027 * gst-libs/gst/rtp/gstrtpbuffer.h:
4028 Document GstRTPBuffer.
4029 Added function to efficiently strip payload headers.
4030 API: gst_rtp_buffer_get_payload_subbuffer()
4032 2006-08-17 Tim-Philipp Müller <tim at centricular dot net>
4034 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
4035 (gst_tag_to_vorbis_comments):
4036 Serialise unknown vorbis comments into GST_TAG_EXTENDED_COMMENT
4037 tags and deserialise them properly as well (#347091).
4038 Add some more gtk-doc blurbs and also some g_return_if_fail().
4040 * tests/check/libs/tag.c: (GST_START_TEST),
4041 (back_to_vorbis_comments), (taglists_are_equal), (tag_suite):
4044 2006-08-17 Wim Taymans <wim@fluendo.com>
4046 * ext/ogg/Makefile.am:
4047 * ext/ogg/gstogg.c: (plugin_init):
4048 * ext/ogg/gstoggaviparse.c: (gst_ogg_avi_parse_get_type),
4049 (gst_ogg_avi_parse_base_init), (gst_ogg_avi_parse_class_init),
4050 (gst_ogg_avi_parse_init), (gst_ogg_avi_parse_finalize),
4051 (gst_ogg_avi_parse_setcaps), (gst_ogg_avi_parse_event),
4052 (gst_ogg_avi_parse_push_packet), (gst_ogg_avi_parse_chain),
4053 (gst_ogg_avi_parse_change_state), (gst_ogg_avi_parse_plugin_init):
4054 Added ogg-in-avi parser element. Fixes #140139.
4056 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
4057 Fixed a bug in oggdemux debug code.
4059 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
4060 (gst_riff_create_audio_template_caps):
4061 Recognise Ogg in the AVI extensible wave format.
4063 2006-08-17 Tim-Philipp Müller <tim at centricular dot net>
4065 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
4066 Make buffer durations add up (duration should be next_ts-ts for
4067 perfect streams). Fixes CD ripping to Ogg/Vorbis with vorbisenc
4070 * tests/check/libs/cddabasesrc.c: (gst_cd_foo_src_close),
4071 (test_buffer_timestamps), (cddabasesrc_suite):
4072 Add unit test for the above.
4074 * tests/check/Makefile.am:
4075 Don't know why cddabasesrc test was in VALGRIND_TO_FIX, remove
4076 to see what happens.
4078 2006-08-16 Wim Taymans <wim@fluendo.com>
4080 * ext/alsa/gstalsasink.c: (gst_alsasink_set_property),
4081 (gst_alsasink_open):
4082 * ext/alsa/gstalsasrc.c: (gst_alsasrc_set_property),
4084 Avoid setting and using a NULL device name.
4085 Print more info when we fail to open a device.
4087 2006-08-16 Tim-Philipp Müller <tim at centricular dot net>
4089 * docs/libs/gst-plugins-base-libs-sections.txt:
4090 * gst-libs/gst/tag/tag.h:
4091 * gst-libs/gst/tag/tags.c: (gst_tag_parse_extended_comment):
4092 API: add gst_tag_parse_extended_comment() (#351426).
4094 * tests/check/Makefile.am:
4095 * tests/check/libs/.cvsignore:
4096 * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite), (main):
4097 Add unit test for gst_tag_parse_extended_comment().
4099 2006-08-15 Tim-Philipp Müller <tim at centricular dot net>
4101 * sys/ximage/ximagesink.c: (gst_ximagesink_get_property):
4102 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_property):
4105 2006-08-15 Tim-Philipp Müller <tim at centricular dot net>
4107 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4108 * docs/plugins/gst-plugins-base-plugins-sections.txt:
4109 * docs/plugins/gst-plugins-base-plugins.args:
4110 * gst/playback/gstplaybin.c:
4113 * docs/plugins/inspect/plugin-adder.xml:
4114 * docs/plugins/inspect/plugin-alsa.xml:
4115 * docs/plugins/inspect/plugin-audioconvert.xml:
4116 * docs/plugins/inspect/plugin-audiorate.xml:
4117 * docs/plugins/inspect/plugin-audioresample.xml:
4118 * docs/plugins/inspect/plugin-audiotestsrc.xml:
4119 * docs/plugins/inspect/plugin-cdparanoia.xml:
4120 * docs/plugins/inspect/plugin-decodebin.xml:
4121 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
4122 * docs/plugins/inspect/plugin-gnomevfs.xml:
4123 * docs/plugins/inspect/plugin-ogg.xml:
4124 * docs/plugins/inspect/plugin-pango.xml:
4125 * docs/plugins/inspect/plugin-playbin.xml:
4126 * docs/plugins/inspect/plugin-subparse.xml:
4127 * docs/plugins/inspect/plugin-tcp.xml:
4128 * docs/plugins/inspect/plugin-theora.xml:
4129 * docs/plugins/inspect/plugin-typefindfunctions.xml:
4130 * docs/plugins/inspect/plugin-video4linux.xml:
4131 * docs/plugins/inspect/plugin-videorate.xml:
4132 * docs/plugins/inspect/plugin-videoscale.xml:
4133 * docs/plugins/inspect/plugin-videotestsrc.xml:
4134 * docs/plugins/inspect/plugin-volume.xml:
4135 * docs/plugins/inspect/plugin-vorbis.xml:
4136 * docs/plugins/inspect/plugin-ximagesink.xml:
4137 * docs/plugins/inspect/plugin-xvimagesink.xml:
4138 Update to CVS version.
4140 2006-08-14 Tim-Philipp Müller <tim at centricular dot net>
4142 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
4143 (gst_play_bin_set_property), (gst_play_bin_get_property),
4144 (value_list_append_structure_list),
4145 (gst_play_bin_handle_redirect_message),
4146 (gst_play_bin_handle_message):
4147 API: GstPlayBin::connection-speed
4148 Add "connection-speed" property; re-order redirect messages with
4149 multiple redirect locations depending on the minimum bitrate if
4150 that information is available and a connection speed is set
4153 2006-08-14 Tim-Philipp Müller <tim at centricular dot net>
4155 * gst/playback/gstplaybin.c:
4156 Update max volume to the same value that the volume element uses.
4158 2006-08-14 Wim Taymans <wim@fluendo.com>
4160 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
4163 2006-08-14 Wim Taymans <wim@fluendo.com>
4165 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
4166 (gst_ogg_demux_get_next_page), (gst_ogg_demux_perform_seek),
4167 (gst_ogg_demux_read_chain), (gst_ogg_demux_loop):
4168 Add some more debug info.
4169 Don't crash when a seek failed.
4170 Actually return the result of the seek instead of TRUE.
4171 Ignore multiple BOS pages with the same serial so that we don't create
4172 the same stream multiple times.
4173 Post an error when we fail to do the initial seek.
4175 2006-08-13 Wim Taymans <wim@fluendo.com>
4177 * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
4178 (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats):
4181 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
4182 (gst_alsa_mixer_new):
4183 Remove hack that always set the device to hw:0*.
4184 Properly find the card name for whatever device was configured.
4185 Do some better debugging.
4188 * ext/alsa/gstalsamixerelement.c:
4189 (gst_alsa_mixer_element_set_property),
4190 (gst_alsa_mixer_element_change_state):
4192 Handle setting of a NULL device name better.
4194 2006-08-11 Wim Taymans <wim@fluendo.com>
4196 * gst/adder/gstadder.c:
4197 Don't clip float values. Fixes #350900.
4199 2006-08-11 Andy Wingo <wingo@pobox.com>
4201 * gst/tcp/gsttcp.c: Really fix the build?
4203 * gst/tcp/gsttcp.h: For now, always disable deprecation here --
4206 2006-08-10 Tim-Philipp Müller <tim at centricular dot net>
4208 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes):
4209 Float caps shouldn't have a "signed" field.
4211 2006-08-10 Tim-Philipp Müller <tim at centricular dot net>
4213 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query):
4214 Implement SEEKING query in its most basic form, so that we can
4215 at least check if we're seekable or not (#350655).
4217 2006-08-09 Tim-Philipp Müller <tim at centricular dot net>
4219 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
4220 The checks here are not even close to anything that would
4221 justify MAXIMUM probability, lowering to POSSIBLE until someone
4222 fixes the checks (case at hand: quicktime redirection files
4223 might start with 00 00 01 XX and pass the checks here just
4226 2006-08-08 Tim-Philipp Müller <tim at centricular dot net>
4228 Patch by: Sjoerd Simons <sjoerd at luon net>
4230 * gst/typefind/gsttypefindfunctions.c: (multipart_type_find):
4231 Better detection for multipart/x-mixed-replace: accept leading
4232 whitespaces before the boundary marker as well (as our very own
4233 multipartmux used to produce) (#349068).
4235 2006-08-07 Tim-Philipp Müller <tim at centricular dot net>
4237 Patch by: Young-Ho Cha <ganadist at chollian net>
4239 * gst-libs/gst/riff/riff-ids.h:
4240 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
4241 (gst_riff_create_audio_template_caps):
4242 Detect DTS audio streams (#350157).
4244 2006-08-05 Andy Wingo <wingo@pobox.com>
4246 * ext/theora/gsttheoraparse.h:
4247 * ext/theora/theoraparse.c (gst_theora_parse_class_init)
4248 (theora_parse_dispose, theora_parse_set_property)
4249 (theora_parse_get_property, theora_parse_munge_granulepos)
4250 (theora_parse_push_buffer, theora_parse_change_state):
4251 API: GstTheoraParse::synchronization-points
4252 Add a property 'synchronization-points' to fix badly synchronized oggs.
4254 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4256 * tests/check/Makefile.am:
4257 * tests/check/libs/.cvsignore:
4258 * tests/check/libs/audio.c: (structure_contains_channel_positions),
4259 (fixed_caps_have_channel_positions), (GST_START_TEST),
4260 (audio_suite), (main):
4261 Add a few tests for the channel position stuff in libgstaudio.
4263 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4265 * ext/alsa/gstalsa.c: (caps_add_channel_configuration),
4266 (gst_alsa_detect_channels):
4267 * ext/alsa/gstalsasink.c:
4268 Add support for cards that (only) do more than 8 channels,
4269 like the Delta 44 (#345188).
4271 * gst-libs/gst/audio/multichannel.c:
4272 (gst_audio_check_channel_positions):
4273 * gst-libs/gst/audio/multichannel.h:
4274 API: add GST_AUDIO_CHANNEL_POSITION_NONE, which stands for an
4275 unspecified channel position and cannot be combined with any
4276 of the other audio channel positions; adjust position layout
4277 checks accordingly (#345188).
4279 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4281 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4282 Recognise ancient RealAudio files (see #349779).
4284 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4286 Patch by: Jens Granseuer <jensgr at gmx net>
4288 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4289 Add typefinder for Interplay's MVE format (#348973).
4291 2006-08-02 Wim Taymans <wim@fluendo.com>
4293 Patch by: Marcel Moreaux <marcelm at luon dot net>
4295 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4296 (gst_base_rtp_depayload_add_to_queue):
4297 * gst-libs/gst/rtp/gstbasertpdepayload.h:
4298 Handle RTP sequence number rollover.
4299 Disable jitterbuffer by default.
4301 2006-07-28 Jan Schmidt <thaytan@mad.scientist.com>
4303 * gst/audioresample/gstaudioresample.c: (audioresample_stop),
4304 (audioresample_set_caps):
4305 Don't leak references to the incoming caps. Clean them up when
4308 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
4309 (gst_video_scale_finalize):
4310 Don't leak our temporary pixel buffer.
4312 * tests/check/Makefile.am:
4313 * tests/check/pipelines/simple-launch-lines.c: (run_pipeline),
4314 (GST_START_TEST), (simple_launch_lines_suite):
4316 Fix leaks and re-enable the test for valgrind checking.
4318 2006-07-28 Tim-Philipp Müller <tim at centricular dot net>
4320 Patch by: Sjoerd Simons <sjoerd at luon net>
4322 * gst/typefind/gsttypefindfunctions.c: (multipart_type_find),
4324 Add typefind function for multipart/x-mixed-replace (#348916).
4326 2006-07-28 Wim Taymans <wim@fluendo.com>
4328 * gst/adder/gstadder.c: (gst_adder_setcaps),
4329 (gst_adder_query_duration):
4330 Fix leak in duration query.
4331 Reflow some docs and notes.
4333 2006-07-28 Michael Smith <msmith@fluendo.com>
4335 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST),
4337 Enable Andy's extra vorbisenc test, now that it passes. Also fix one
4340 2006-07-28 Michael Smith <msmith@fluendo.com>
4342 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps),
4343 (gst_vorbis_enc_sink_getcaps), (gst_vorbis_enc_buffer_from_packet),
4344 (gst_vorbis_enc_push_buffer),
4345 (gst_vorbis_enc_buffer_check_discontinuous),
4346 (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
4347 * ext/vorbis/vorbisenc.h:
4348 Handle discontinuities in the input vorbis stream correctly,
4349 so that the output is properly timestamped (and has good granulepos
4350 values). Needs some oggmux fixes too.
4352 2006-07-27 Wim Taymans <wim@fluendo.com>
4354 patch by: Kai Vehmanen <kv2004 eca cx>
4356 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4357 (gst_base_rtp_depayload_chain),
4358 (gst_base_rtp_depayload_handle_sink_event),
4359 (gst_base_rtp_depayload_change_state):
4360 Don't send multiple newsegments with different formats.
4363 2006-07-26 Wim Taymans <wim@fluendo.com>
4365 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4366 (gst_ogg_demux_do_seek), (gst_ogg_demux_read_chain):
4367 Make seeking in ogg more accurate again by doing the more correct
4368 granuletime to stream time conversion.
4370 2006-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
4372 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
4373 (gst_multi_fd_sink_new_client):
4374 debug a little more understandably
4375 do not use goto as a substitute for break, especially if
4376 break is also being used
4378 2006-07-26 Tim-Philipp Müller <tim at centricular dot net>
4380 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
4381 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
4382 Remove GLib-2.6 compatibility cruft.
4384 2006-07-24 Wim Taymans <wim@fluendo.com>
4386 * gst-libs/gst/audio/gstbaseaudiosink.c:
4387 (gst_base_audio_sink_render):
4388 Don't try to align a sample to an unknown value.
4390 2006-07-24 Wim Taymans <wim@fluendo.com>
4392 * gst-libs/gst/audio/gstbaseaudiosink.c:
4393 (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
4394 When the audio clock is slaved to another clock, never try to align
4395 samples but trust the rate interpolation algorithm.
4397 2006-07-24 Wim Taymans <wim@fluendo.com>
4399 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4400 Don't try to calculate silence samples, base class does this much
4403 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4404 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps),
4405 (gst_ring_buffer_acquire):
4406 Calculate silence samples correctly.
4408 * gst-libs/gst/audio/gstringbuffer.h:
4411 2006-07-22 Tim-Philipp Müller <tim at centricular dot net>
4413 * gst/typefind/gsttypefindfunctions.c: (xml_check_first_element):
4414 Limit search for the first markup tag to the first few kB of
4415 the file. If we don't find one there, it's highly unlikely that
4416 this is an XML(-ish) file.
4418 2006-07-21 Andy Wingo <wingo@pobox.com>
4420 * tests/check/pipelines/theoraenc.c (test_discontinuity): Similar
4421 test to the one in vorbisenc. Also commented out.
4423 * tests/check/pipelines/vorbisenc.c:
4424 (test_discontinuity): New test, commented out until Mike lands
4425 some elite vorbisenc patches.
4427 * tests/check/pipelines/theoraenc.c: Port to bufferstraw.
4428 Bufferstraw was actually factored out of these tests. Now we share
4431 * configure.ac (GST_MAJORMINOR): Rev core requirements to 0.10.9.1
4432 for bufferstraw addition to gstcheck.
4434 2006-07-21 Wim Taymans <wim@fluendo.com>
4436 * ext/theora/theoradec.c: (clip_buffer):
4439 2006-07-21 Wim Taymans <wim@fluendo.com>
4441 * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
4442 (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
4443 (gst_audioringbuffer_release), (gst_audioringbuffer_stop):
4445 Avoid type casting when we can.
4447 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_dispose):
4450 2006-07-20 Tim-Philipp Müller <tim at centricular dot net>
4452 * ext/alsa/gstalsamixerelement.c:
4453 (gst_alsa_mixer_element_change_state):
4454 Make state change fail if the specified device can't be opened
4457 2006-07-20 Wim Taymans <wim@fluendo.com>
4459 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
4460 (cb_newpad), (main):
4461 Example of a small audio/video player using decodebin.
4463 2006-07-20 Stefan Kost <ensonic@users.sf.net>
4465 * gst-libs/gst/riff/riff-ids.h:
4468 2006-07-19 Wim Taymans <wim@fluendo.com>
4470 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4471 (gst_base_rtp_depayload_chain),
4472 (gst_base_rtp_depayload_change_state):
4473 Don't assert when not negotiated but post a meaningfull
4474 error message. Fixes #347918.
4476 * gst-libs/gst/rtp/gstbasertppayload.c:
4477 Add comment about better default MTU size.
4479 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
4480 Small cleanups, start docs.
4482 2006-07-19 Tim-Philipp Müller <tim at centricular dot net>
4484 Patch by: Martin Szulecki
4486 * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_property):
4487 If "device-name" is requested and the device is not
4488 open, try to temporarily open it to obtain this
4489 information (#342494).
4491 2006-07-19 Tim-Philipp Müller <tim at centricular dot net>
4493 * gst-libs/gst/tag/gstid3tag.c:
4494 Add TSSE <=> GST_TAG_ENCODER mapping (see #347898).
4496 * gst-libs/gst/tag/gsttageditingprivate.h:
4497 * gst-libs/gst/tag/gstvorbistag.c:
4498 Some more random const-ifications.
4500 2006-07-18 Stefan Kost <ensonic@users.sf.net>
4502 * gst-libs/gst/riff/riff-ids.h:
4503 * gst-libs/gst/riff/riff-media.c:
4504 (gst_riff_create_video_template_caps):
4505 Add more FOURCCs (sort list to make stuff easier to find),
4506 add comment what those 16 bytes in struct _gst_riff_strh according to
4509 2006-07-17 Tim-Philipp Müller <tim at centricular dot net>
4511 * gst-libs/gst/audio/multichannel.c:
4512 (gst_audio_check_channel_positions),
4513 (gst_audio_fixate_channel_positions):
4514 Const-ify two arrays.
4516 2006-07-17 Tim-Philipp Müller <tim at centricular dot net>
4518 * ext/alsa/gstalsa.c: (caps_add_channel_configuration):
4519 Fix typo, so that alsasink also advertises 8 channels
4520 if that's supported (tags: can, worms, open, alsa, ph34r).
4522 2006-07-17 Wim Taymans <wim@fluendo.com>
4524 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4525 (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
4526 *sigh*, when is the compiler going to warn when the comments
4527 are out-of-sync with the code.. Refix case of busted theora
4528 headers with 0 granule pos.
4530 2006-07-14 Wim Taymans <wim@fluendo.com>
4532 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4533 (gst_base_rtp_depayload_wait),
4534 (gst_base_rtp_depayload_change_state),
4535 (gst_base_rtp_depayload_set_property),
4536 (gst_base_rtp_depayload_get_property):
4537 Fix 99% cpu load by waiting for absolute times on the
4538 clock. Fixes #347300.
4540 2006-07-14 Andy Wingo <wingo@pobox.com>
4542 * ext/theora/gsttheoraparse.h:
4543 * ext/theora/theoraparse.c (theora_parse_drain_event_queue)
4544 (theora_parse_push_headers, theora_parse_clear_queue)
4545 (theora_parse_drain_queue_prematurely, )
4546 (theora_parse_sink_event, theora_parse_change_state): Queue events
4547 until we initialized our state, like in vorbisparse.
4549 * ext/vorbis/vorbisparse.h:
4550 * ext/vorbis/vorbisparse.c (vorbis_parse_drain_event_queue)
4551 (vorbis_parse_push_headers, vorbis_parse_clear_queue)
4552 (vorbis_parse_drain_queue_prematurely, )
4553 (vorbis_parse_sink_event, vorbis_parse_change_state): Queue events
4554 until we have initialized our state. Fixes seeking after an
4557 2006-07-14 Andy Wingo <wingo@pobox.com>
4559 Patch by: Iain Holmes <iaingnome@gmail.com>
4561 * ext/ogg/gstoggdemux.c (gst_ogg_demux_finalize): Fix memleak.
4563 2006-07-14 Jan Schmidt <thaytan@mad.scientist.com>
4566 Bump nano back to CVS
4568 === release 0.10.9 ===
4570 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4573 releasing 0.10.9, "I walk the line"
4575 2006-07-14 Michael Smith <msmith@fluendo.com>
4577 * tests/check/pipelines/vorbisenc.c: (stop_pipeline):
4578 Move a g_cond_signal to earlier to avoid sometimes deadlocking
4579 (commonly happens when running this test under valgrind) when trying
4580 to remove the buffer probe.
4582 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4584 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
4585 Fix missing g_unlock from the previous commit
4587 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4589 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
4590 (gst_ximagesink_change_state):
4591 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
4592 (gst_xvimagesink_change_state):
4593 Implement a locking order to ensure we always take the object lock
4594 before the x_lock and never vice-versa.
4596 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4598 * gst/playback/gstdecodebin.c: (find_compatibles):
4599 Fix a caps leak when linking (#347304)
4601 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4602 (gst_ximagesink_ximage_destroy), (gst_ximagesink_xcontext_clear),
4603 (gst_ximagesink_change_state):
4604 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
4605 (gst_xvimage_buffer_finalize), (gst_xvimagesink_check_xshm_calls),
4606 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
4607 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_change_state):
4608 Don't leak shared memory resources. Use the object lock to protect
4609 against the xcontext disappearing while returning a buffer from the
4612 2006-07-12 Edward Hervey <edward@fluendo.com>
4614 * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize),
4615 (vorbis_handle_comment_packet):
4616 gst_tag_list_merge() returns a new object. Take that into account when
4617 using it. This avoids memleak.
4618 Revert previous commit which is not needed.
4620 2006-07-12 Edward Hervey <edward@fluendo.com>
4622 * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize):
4623 Reset the decoder in finalize so that all fields get cleared.
4625 2006-07-12 Wim Taymans <wim@fluendo.com>
4627 * gst-libs/gst/audio/gstbaseaudiosrc.c:
4628 (gst_base_audio_src_set_clock),
4629 (gst_base_audio_src_check_get_range), (gst_base_audio_src_create):
4630 Don't try to post an error message when setting the clock fails
4631 as this can happen when adding an element to a bin which will then
4632 deadlock. Fixes #347296.
4634 2006-07-12 Edward Hervey <edward@fluendo.com>
4636 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
4637 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
4638 (vorbis_handle_type_packet):
4639 Post tag messages on the bus even if we're not initialized.
4640 If we're not initialized, we still postpone the event pushing of tags.
4642 2006-07-12 Wim Taymans <wim@fluendo.com>
4644 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4645 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4646 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4647 Revert last two changes that broke the freeze.
4649 2006-07-12 Wim Taymans <wim@fluendo.com>
4651 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4652 basesink calculates silence sample correctly for us.
4654 2006-07-12 Wim Taymans <wim@fluendo.com>
4656 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4657 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4658 Calculate correct silence samples so we don't fill our ringbuffer
4661 2006-07-12 Edward Hervey <edward@fluendo.com>
4663 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
4664 (gst_vorbis_dec_reset), (vorbis_dec_sink_event),
4665 (vorbis_handle_comment_packet), (vorbis_handle_type_packet):
4666 * ext/vorbis/vorbisdec.h:
4667 Delay sending events (newsegment, tags) until the decoder is properly
4671 2006-07-11 Jan Schmidt <thaytan@mad.scientist.com>
4673 * tests/check/elements/audioconvert.c: (get_float_mc_caps),
4674 (get_int_mc_caps), (GST_START_TEST), (audioconvert_suite):
4675 Patch from #347221 adding a test for audioconvert
4678 2006-07-11 Tim-Philipp Müller <tim at centricular dot net>
4680 * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
4681 (gst_ssa_parse_parse_line):
4682 Don't include the terminating NUL in the buffer size,
4683 it's only there for extra paranoia (would add random
4684 '*' characters at the end of each subtitle since the
4685 terminator itself is not valid UTF-8 technically).
4686 Also fix indenting after boilerplate macro.
4688 2006-07-10 Tim-Philipp Müller <tim at centricular dot net>
4690 * gst/playback/gstdecodebin.c: (close_pad_link):
4691 Also emit 'unknown-type' signal (which should really be
4692 called unhandled-type) if we found potential decoders/demuxers
4693 in the registry but none of them worked in the end (as in the
4694 case where the plugins don't exist any longer but are still
4695 listed in the registry). Fixes #329798.
4697 2006-07-08 Andy Wingo <wingo@pobox.com>
4699 * theoraparse.c (theora_parse_push_buffer)
4700 (theora_parse_drain_queue_prematurely, theora_parse_drain_queue):
4701 Add some more debugging. Fix granulepos reconstruction in the face
4704 2006-07-06 Wim Taymans <wim@fluendo.com>
4706 * gst-libs/gst/audio/gstbaseaudiosink.c:
4707 (gst_base_audio_sink_class_init),
4708 (gst_base_audio_sink_provide_clock):
4709 Use gobject_class instead of G_OBJECT_CLASS (klass)
4711 * gst-libs/gst/audio/gstbaseaudiosrc.c:
4712 (gst_base_audio_src_class_init), (gst_base_audio_src_init),
4713 (gst_base_audio_src_set_clock), (gst_base_audio_src_provide_clock),
4714 (gst_base_audio_src_get_time),
4715 (gst_base_audio_src_check_get_range), (gst_base_audio_src_create),
4716 (gst_base_audio_src_create_ringbuffer):
4717 Fix latency and buffer-time constants and properties ala basesink.
4718 Implement pull based scheduling. Fixes #346527.
4719 Set default blocksize in GstBaseSrc to 0, we default to pushing out
4721 Refuse slaving to another clock instead of silently not working.
4722 Only provide a clock when we are actually able to do so.
4723 Various small cleanups and compiler hints.
4725 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
4727 Patch by: Lutz Mueller <lutz at topfrose de>
4729 * gst/typefind/gsttypefindfunctions.c: (html_type_find),
4731 Add typefinding for text/html (#346581).
4733 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
4735 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
4736 (xml_check_first_element), (xml_type_find), (smil_type_find):
4737 Fix SMIL typefinding, make xml_check_first_element() more
4740 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
4742 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
4743 (gst_play_base_bin_finalize), (decodebin_element_added_cb),
4744 (decodebin_element_removed_cb), (gst_play_base_bin_set_property):
4745 * gst/playback/gstplaybasebin.h:
4746 Protect list of elements with a subtitle-encoding property and
4747 the subtitle encoding member itself with a lock of their own
4748 instead of using the object lock. This prevents a dead-lock in
4749 the element-remove callback in some circumstances when shutting
4752 2006-07-05 Sebastien Moutte <sebastien@moutte.net>
4754 * win32/common/libgsttag.def:
4755 Export some new functions.
4756 * win32/vs6/libgstogg.dsp:
4757 Add a link to libgsttag-0.10.lib.
4759 2006-07-04 Tim-Philipp Müller <tim at centricular dot net>
4761 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
4762 Some const-ification.
4764 2006-07-04 Wim Taymans <wim@fluendo.com>
4766 * gst/playback/gstplaybasebin.c: (is_stream), (gen_source_element):
4767 Improve checking if we are dealing with a stream. Added some
4768 more uris that need buffering.
4770 2006-07-03 Edward Hervey <edward@fluendo.com>
4772 * ext/vorbis/vorbisdec.c: (vorbis_do_clip):
4773 Remove unused variable.
4775 2006-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
4780 add GCOV_LIBS to GST_LIBS
4782 2006-07-02 Tim-Philipp Müller <tim at centricular dot net>
4784 Patch by: Michael Sheldon <webmaster at mikeasoft com>
4786 * ext/alsa/gstalsasrc.c:
4787 Add 32 bps to template caps and increase channels range
4788 from [1,2] to [1,MAX]. See #346326.
4790 2006-06-30 Tim-Philipp Müller <tim at centricular dot net>
4792 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
4793 Recognise 'WMVA' video codec fourcc (#345879).
4795 2006-06-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
4797 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4798 Fixed nasty memory leak
4800 2006-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
4802 * gst/tcp/gsttcp.c: (gst_tcp_read_buffer),
4803 (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps):
4806 2006-06-23 Jan Schmidt <thaytan@mad.scientist.com>
4808 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
4809 (gst_decode_bin_init), (gst_decode_bin_finalize), (add_fakesink),
4810 (remove_fakesink), (pad_probe), (gst_decode_bin_change_state):
4811 Protect remove_fakesink using a mutex, so that we don't try and
4812 remove the fakesink simultaneously from multiple threads.
4814 When going from READY to PAUSED, restore the fakesink, so that
4815 it is there when decodebin gets reused.
4817 2006-06-23 Tim-Philipp Müller <tim at centricular dot net>
4819 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4820 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4821 * gst-libs/gst/rtp/gstbasertppayload.c:
4822 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4823 * gst/tcp/gstmultifdsink.c:
4824 * gst/tcp/gsttcpclientsink.c:
4825 * gst/tcp/gsttcpclientsrc.c:
4826 * gst/tcp/gsttcpserversink.c:
4827 * gst/tcp/gsttcpserversrc.c:
4828 * gst/videorate/gstvideorate.c:
4829 * gst/videotestsrc/gstvideotestsrc.c:
4830 * sys/v4l/gstv4ljpegsrc.c:
4831 * sys/v4l/gstv4lmjpegsink.c:
4832 * sys/v4l/gstv4lsrc.c:
4833 * tests/examples/seek/scrubby.c:
4834 * tests/examples/seek/seek.c:
4835 Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
4837 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4839 * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
4840 Second field in GEnumValue shouldn't be a description,
4841 but a stringified version of the enum value.
4843 2006-06-22 Wim Taymans <wim@fluendo.com>
4845 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4846 (gst_ximage_buffer_free), (gst_ximagesink_ximage_put),
4847 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
4848 Avoid type checking in buffer casts.
4849 Avoid caps copy in buffer_alloc when we can.
4850 Use pad_peer_accept.
4852 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4854 * gst-libs/gst/tag/tag.h:
4855 Oops, make that 'Since: 0.10.9'.
4857 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4859 * docs/libs/gst-plugins-base-libs-sections.txt:
4860 * gst-libs/gst/tag/tag.h:
4861 * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
4862 (gst_tag_image_type_get_type):
4863 API: add GstTagImageType enum to describe images contained
4864 in image tags (#345641).
4866 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4868 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4869 Fix warnings with gst-inspect: "buffers-min" property
4870 should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
4871 typo in property description.
4873 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4875 Patch by: Cody Russell <bratsche at gnome org>
4877 * gst/audioresample/gstaudioresample.c:
4878 (gst_audioresample_class_init):
4879 * gst/playback/gststreamselector.c:
4880 (gst_stream_selector_class_init):
4881 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
4882 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4883 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
4884 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
4885 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
4886 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
4887 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
4888 * gst/videotestsrc/gstvideotestsrc.c:
4889 (gst_video_test_src_class_init):
4890 * gst/volume/gstvolume.c: (gst_volume_class_init):
4891 Avoid unnecessary class cast check in class_init
4892 functions (#337747).
4894 2006-06-21 Tim-Philipp Müller <tim at centricular dot net>
4896 * ext/pango/gsttextoverlay.c: (gst_text_overlay_make_utf8),
4897 (gst_text_overlay_video_chain):
4898 g_markup_escape_text() REALLY doesn't like non-UTF8 input
4899 and doesn't validate its input either (and neither did
4900 textoverlay it seems). Let's do that then and fix #345206.
4902 2006-06-19 Wim Taymans <wim@fluendo.com>
4904 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
4905 (gst_unit_type_get_type), (gst_multi_fd_sink_class_init),
4906 (gst_multi_fd_sink_init), (gst_multi_fd_sink_add_full),
4907 (gst_multi_fd_sink_add), (gst_multi_fd_sink_handle_client_read),
4908 (find_syncframe), (find_limits), (assign_value),
4909 (count_burst_unit), (gst_multi_fd_sink_new_client),
4910 (gst_multi_fd_sink_handle_client_write),
4911 (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_render),
4912 (gst_multi_fd_sink_set_property), (gst_multi_fd_sink_get_property),
4913 (gst_multi_fd_sink_change_state):
4914 * gst/tcp/gstmultifdsink.h:
4915 Added shiny new burst-on-connect methods.
4916 Add properties to control the minimal amount of data queued.
4918 API: bytes-min property
4919 API: time-min property
4920 API: buffers-min property
4921 API: burst-unit property
4922 API: burst-value property
4923 API: add-full signal
4925 * gst/tcp/gsttcp-marshal.list:
4926 Added new marshaller code for the new signal.
4928 * tests/check/elements/multifdsink.c: (GST_START_TEST),
4929 (multifdsink_suite):
4930 Added testcases for new burst methods.
4932 2006-06-19 Edward Hervey <edward@fluendo.com>
4934 * ext/theora/theoradec.c: (clip_buffer), (theora_dec_push):
4935 Implement clipping for accurate seeking.
4938 2006-06-19 Wim Taymans <wim@fluendo.com>
4940 Patch by: Philip Jaegenstedt <philip at lysator dot liu dot se>
4942 * gst/videoscale/gstvideoscale.c: (gst_video_scale_prepare_size),
4943 (gst_video_scale_transform):
4944 Make videoscale support RGBA, ARGB, BGRA and ABGR. Fixes #345131
4946 2006-06-17 Tim-Philipp Müller <tim at centricular dot net>
4949 Fix --disable-external (can't set conditionals conditionally,
4952 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
4954 * tests/check/elements/audioresample.c: (test_reuse),
4955 (audioresample_suite):
4956 Add test case for bug #342789 fixed below.
4958 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
4960 * gst/audioresample/gstaudioresample.c:
4961 (gst_audioresample_class_init), (gst_audioresample_init),
4962 (audioresample_start), (audioresample_stop),
4963 (gst_audioresample_set_property), (gst_audioresample_get_property):
4964 Implement GstBaseTransform::start and ::stop so that audioresample
4965 can clear its internal state properly and be reused instead of
4966 causing non-negotiated errors with playbin under some circumstances
4969 * tests/check/elements/audioresample.c: (setup_audioresample),
4970 (cleanup_audioresample):
4971 Need to set element state here so that ::start and ::stop are
4974 2006-06-16 Wim Taymans <wim@fluendo.com>
4976 Patch by: Young-Ho Cha <ganadist at chollian dot net>
4978 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_vids):
4979 Parse extra data better, apparently it's right behind
4980 the normal strf header size. Fixes #343500.
4982 2006-06-16 Wim Taymans <wim@fluendo.com>
4984 * ext/alsa/gstalsasink.c: (set_hwparams):
4985 If we fail to set the buffer_time and period_time alsa
4986 parameters, post a warning and leave alsa select a
4987 default instead of failing. Fixes #342085
4989 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
4991 * docs/libs/gst-plugins-base-libs-sections.txt:
4992 * gst-libs/gst/cdda/gstcddabasesrc.h:
4993 Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
4994 out in the header file and shouldn't be listed in the docs.
4996 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
4997 Must dereference pointer to fourcc in the debug statement.
4999 2006-06-16 Stefan Kost <ensonic@users.sf.net>
5001 * docs/libs/Makefile.am:
5002 * docs/libs/gst-plugins-base-libs-docs.sgml:
5003 * docs/libs/gst-plugins-base-libs-sections.txt:
5004 * docs/libs/gst-plugins-base-libs.types:
5005 add remaining symbols into correct setions
5007 * gst-libs/gst/audio/gstringbuffer.c:
5010 * gst-libs/gst/audio/gstringbuffer.h:
5011 comment out not yet implemented function
5014 * gst-libs/gst/floatcast/floatcast.h:
5015 * gst-libs/gst/netbuffer/gstnetbuffer.c:
5016 add short descriptions
5019 * gst-libs/gst/interfaces/propertyprobe.c:
5020 fix return value docs
5022 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5023 simplify debug logging
5025 * gst-libs/gst/riff/riff-read.h:
5026 sync function prototype and docs
5028 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5029 remove left over symbol
5031 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
5036 Use GST_PLUGIN_DOCS macro in configure.ac, add
5037 --enable-plugin-docs default to autogen.sh and use
5038 ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
5040 2006-06-15 Wim Taymans <wim@fluendo.com>
5042 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
5043 (gst_ogg_demux_activate_chain), (gst_ogg_demux_combine_flows),
5044 (gst_ogg_demux_loop):
5045 Combine GstFlowReturn from the source pads to give a
5046 meaningfull result to the upstream peer or to stop the
5047 processing task in case of errors.
5049 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
5051 * gst/playback/gststreaminfo.c: (cb_probe):
5052 Try GST_TAG_CODEC as fallback when extracting the
5053 codec name; more debug info.
5055 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
5057 * ext/ogg/Makefile.am:
5058 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
5059 Extract language tags from ogm subtitle streams, so that
5060 the subtitle menu choices are labelled correctly in
5061 Totem (fixes #344708).
5063 2006-06-14 Wim Taymans <wim@fluendo.com>
5065 Patch by: Alessandro Decina <alessandro at nnva dot org>
5067 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_clear),
5068 (gst_ogg_mux_release_pad), (gst_ogg_mux_get_headers),
5069 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_init_collectpads),
5070 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
5071 Fix various leaks. Fixes #343699.
5072 Add x-smoke mime type.
5074 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
5076 * gst-libs/gst/riff/riff-ids.h:
5077 Add IDs for 'bext' chunks (see #343837).
5079 2006-06-12 Tim-Philipp Müller <tim at centricular dot net>
5081 Patch by: Young-Ho Cha <ganadist at chollian net>
5083 * gst/subparse/samiparse.c: (sami_context_pop_state),
5084 (handle_start_font), (end_sami_element):
5085 Honour font face tags in SAMI subtitles (#344503).
5087 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5090 add missing files containing translatable strings
5092 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5094 * docs/libs/tmpl/.cvsignore:
5095 we don't want those *.sgml files in CVS either
5097 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5099 * docs/libs/.cvsignore:
5100 * tests/check/elements/.cvsignore:
5101 * tests/check/libs/.cvsignore:
5104 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5106 * docs/libs/Makefile.am:
5107 also commiting the changed Makefile.am (added more libs to the
5110 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5112 * docs/libs/gst-plugins-base-libs-docs.sgml:
5113 * docs/libs/gst-plugins-base-libs-sections.txt:
5114 * docs/libs/gst-plugins-base-libs.types:
5115 first batch of reordering things, add index & hierarchy
5117 2006-06-11 Thomas Vander Stichele <thomas at apestaart dot org>
5120 use GST_PKG_CHECK_MODULES, cleans up output
5122 2006-06-10 Tim-Philipp Müller <tim at centricular dot net>
5124 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
5125 Add support for burn:// URIs (#343385); const-ify things a bit,
5126 use G_N_ELEMENTS instead of hard-coded array size.
5128 2006-06-10 Tim-Philipp Müller <tim at centricular dot net>
5130 Patch by: Young-Ho Cha <ganadist at chollian net>
5132 * gst/subparse/samiparse.c: (fix_invalid_entities), (parse_sami):
5133 Fix up broken entities before passing them to libxml *sigh*.
5136 2006-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
5141 === release 0.10.8 ===
5143 2006-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
5146 releasing 0.10.8, "Moar gij ziet mij nie"
5148 2006-06-07 Thomas Vander Stichele <thomas at apestaart dot org>
5165 * win32/common/config.h:
5168 2006-06-07 Thomas Vander Stichele <thomas at apestaart dot org>
5170 * docs/libs/tmpl/gstaudio.sgml:
5171 * docs/libs/tmpl/gstcolorbalance.sgml:
5172 * docs/libs/tmpl/gstmixer.sgml:
5173 * docs/libs/tmpl/gstringbuffer.sgml:
5174 * docs/libs/tmpl/gsttuner.sgml:
5175 * docs/libs/tmpl/gstxoverlay.sgml:
5176 * gst-libs/gst/audio/audio.c:
5177 * gst-libs/gst/audio/gstringbuffer.c:
5178 * gst-libs/gst/interfaces/colorbalance.c:
5179 * gst-libs/gst/interfaces/mixer.c:
5180 * gst-libs/gst/interfaces/tuner.c:
5181 * gst-libs/gst/interfaces/xoverlay.c:
5182 move last template doc snippets to source code and delete them
5184 2006-06-06 Michael Smith <msmith@fluendo.com>
5186 * ext/theora/theoraparse.c: (theora_parse_drain_queue_prematurely),
5187 (theora_parse_drain_queue):
5188 Mark DELTA_UNIT on non-keyframes.
5190 2006-06-03 Jan Schmidt <thaytan@mad.scientist.com>
5192 * gst-libs/gst/audio/gstbaseaudiosink.c:
5193 (gst_base_audio_sink_class_init), (gst_base_audio_sink_setcaps):
5194 * gst-libs/gst/audio/gstbaseaudiosink.h:
5195 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps),
5196 (gst_ring_buffer_samples_done):
5197 * gst-libs/gst/audio/gstringbuffer.h:
5198 Document better the fact that latency_time and buffer_time are values
5199 stored in microseconds, and not the usual GStreamer nanoseconds.
5200 Change the variables (compatibly) that store them from GstClockTime
5201 to guint64 to make it more clear that they're not storing clock times.
5202 Also, remove the bogus property description that says the user can
5203 specify -1 to get the default value, since that's never been the case.
5205 When computing the default segment size for the ring buffer, make it
5206 an integer number of samples.
5208 When the sub-class indicates a delay greater than the number of
5209 samples we've written return 0 from the audio sink get_time method.
5211 2006-06-02 Michael Smith <msmith@fluendo.com>
5213 * tests/check/elements/audioconvert.c: (set_channel_positions),
5214 (get_float_mc_caps), (get_int_mc_caps):
5215 * tests/check/elements/audioresample.c:
5216 * tests/check/elements/audiotestsrc.c: (GST_START_TEST):
5217 * tests/check/elements/videorate.c:
5218 * tests/check/elements/videotestsrc.c: (GST_START_TEST):
5219 * tests/check/elements/volume.c:
5220 * tests/check/elements/vorbisdec.c:
5221 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
5222 Don't busy-wait in tests; this was causing test timeouts very
5223 frequently when running under valgrind.
5225 2006-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
5228 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_init),
5229 (gst_multi_fd_sink_remove_client_link),
5230 (gst_multi_fd_sink_client_queue_caps),
5231 (gst_multi_fd_sink_client_queue_buffer),
5232 (gst_multi_fd_sink_handle_client_write),
5233 (gst_multi_fd_sink_render):
5234 * gst/tcp/gstmultifdsink.h:
5235 make multifdsink properly deal with streamheader:
5236 - streamheader is taken from caps
5237 - buffers marked with IN_CAPS are not sent
5238 - streamheaders are sent, on connection, from the caps of the
5239 buffer where the client gets positioned to
5240 - further streamheader changes are done every time the client
5241 will receive a buffer with different caps
5242 * tests/check/elements/multifdsink.c: (GST_START_TEST),
5243 (gst_multifdsink_create_streamheader):
5246 2006-06-02 Michael Smith <msmith@fluendo.com>
5248 * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
5249 Reinstate limit on channel count. Vorbis does not define the meaning
5250 of > 6 channels, so they're just independent channels. Gstreamer
5251 currently has no mechanism to represent N independent channels.
5253 2006-06-02 Michael Smith <msmith@fluendo.com>
5255 * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
5256 Don't arbitrarily restrict channel counts and rate in vorbis.
5257 In terms of effects likely on real-world files, this fixes 96kHz
5260 2006-06-02 Michael Smith <msmith@fluendo.com>
5262 * gst/audioconvert/audioconvert.c: (float):
5263 More correct float->int conversion.
5265 2006-06-02 Michael Smith <msmith@fluendo.com>
5267 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_perform_seek):
5268 Don't accidently send GST_CLOCK_TIME_NONE as a new segment start
5269 value. Fixes g-critical on trying to play back ogg containing
5272 2006-06-02 Wim Taymans <wim@fluendo.com>
5274 * gst/playback/gstplaybasebin.c: (group_create), (group_commit),
5276 * gst/playback/gstplaybasebin.h:
5277 Make the subtitle detection work from any thread so we don't
5278 deadlock. Fixes #343397.
5280 2006-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
5282 * gst/volume/Makefile.am:
5283 Seriously, it's not *that* hard to get compilation right. Even
5284 a drunk can do it ! Add LIBOIL CFLAGS and LIBS
5286 2006-06-01 Stefan Kost <ensonic@users.sf.net>
5288 * gst/volume/gstvolume.c: (volume_choose_func),
5289 (volume_update_real_volume), (gst_volume_class_init),
5290 (gst_volume_init), (volume_process_float), (volume_process_int16),
5291 (volume_process_int16_clamp), (volume_set_caps),
5292 (volume_transform_ip), (plugin_init):
5293 * gst/volume/gstvolume.h:
5294 rewrite the passthrough check, split _int16 and _int16_clamp, fix
5295 another property desc., remove unused param from process function
5297 * tests/check/elements/volume.c: (volume_suite):
5298 reactivate the passthrough test
5300 2006-06-01 Stefan Kost <ensonic@users.sf.net>
5302 * ext/alsa/gstalsamixerelement.h:
5303 * ext/alsa/gstalsamixeroptions.h:
5304 * ext/alsa/gstalsamixertrack.h:
5305 * ext/gnomevfs/gstgnomevfssink.h:
5306 * ext/gnomevfs/gstgnomevfssrc.h:
5307 * ext/theora/gsttheoradec.h:
5308 * ext/theora/gsttheoraenc.h:
5309 * ext/theora/gsttheoraparse.h:
5310 * ext/vorbis/vorbisparse.h:
5311 * gst-libs/gst/audio/gstaudioclock.h:
5312 * gst-libs/gst/audio/gstaudiofilter.h:
5313 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5314 * gst/audioconvert/gstaudioconvert.h:
5315 * gst/audioresample/gstaudioresample.h:
5316 * gst/audiotestsrc/gstaudiotestsrc.h:
5317 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
5318 * gst/playback/gststreamselector.h:
5319 * gst/tcp/gstmultifdsink.h:
5320 * gst/tcp/gsttcpclientsink.h:
5321 * gst/tcp/gsttcpclientsrc.h:
5322 * gst/tcp/gsttcpserversink.h:
5323 * gst/tcp/gsttcpserversrc.h:
5324 * gst/videorate/gstvideorate.h:
5325 * gst/videoscale/gstvideoscale.h:
5326 * gst/videotestsrc/gstvideotestsrc.h:
5327 * gst/volume/gstvolume.h:
5328 * sys/v4l/gstv4ljpegsrc.h:
5329 * sys/v4l/gstv4lmjpegsink.h:
5330 * sys/v4l/gstv4lmjpegsrc.h:
5331 * sys/v4l/gstv4lsrc.h:
5332 * sys/ximage/ximagesink.h:
5333 * sys/xvimage/xvimagesink.h:
5334 * tests/old/testsuite/alsa/sinesrc.h:
5335 Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
5337 2006-05-31 Wim Taymans <wim@fluendo.com>
5339 * ext/libvisual/visual.c: (gst_visual_reset),
5340 (gst_visual_sink_setcaps), (gst_visual_sink_event),
5341 (gst_visual_src_event), (get_buffer), (gst_visual_chain):
5343 Use running time before doing QoS.
5346 2006-05-31 Thomas Vander Stichele <thomas at apestaart dot org>
5348 * docs/libs/Makefile.am:
5349 set a magic variable to indicate we know the docs are incomplete
5351 2006-05-30 Sebastien Moutte <sebastien@moutte.net>
5353 * win32/common/libgstvideo.def:
5354 export gst_video_calculate_display_ratio
5355 * win32/vs6/libgstvideoscale.dsp:
5356 add link to libgstvideo-0.10.lib
5358 2006-05-30 Tim-Philipp Müller <tim at centricular dot net>
5360 * gst/playback/gstplaybasebin.c: (gen_source_element):
5361 Throw a more comprehensible error for rtsp:// URIs (rather
5362 than erroring out with a negotiation error later on) until
5363 we fix playbin to handle rtspsrc etc.
5365 2006-05-30 Wim Taymans <wim@fluendo.com>
5367 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
5368 (gst_text_overlay_text_event):
5371 2006-05-30 Wim Taymans <wim@fluendo.com>
5373 * gst/adder/gstadder.c: (gst_adder_class_init), (gst_adder_init),
5374 (gst_adder_request_new_pad), (gst_adder_release_pad):
5375 * gst/adder/gstadder.h:
5376 Implement release_request_pad.
5377 Make padcounter atomic.
5379 * tests/check/elements/adder.c: (GST_START_TEST), (adder_suite):
5380 Added check for release_pad in adder.
5382 2006-05-30 Wim Taymans <wim@fluendo.com>
5384 * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
5387 2006-05-30 Thomas Vander Stichele <thomas at apestaart dot org>
5389 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
5390 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
5391 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
5392 (gst_ogg_pad_submit_page), (gst_ogg_chain_new_stream),
5393 (gst_ogg_demux_seek), (gst_ogg_demux_get_data),
5394 (gst_ogg_demux_get_next_page), (gst_ogg_demux_do_seek),
5395 (gst_ogg_demux_bisect_forward_serialno),
5396 (gst_ogg_demux_read_chain), (gst_ogg_demux_find_chains),
5397 (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
5399 clean up printf formats for granulepos and serialno
5401 2006-05-30 Michael Smith <msmith@fluendo.com>
5403 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
5404 (gst_vorbis_enc_class_init), (gst_vorbis_enc_dispose),
5405 (gst_vorbis_enc_generate_sink_caps), (gst_vorbis_enc_sink_getcaps),
5406 (gst_vorbis_enc_init), (gst_vorbis_enc_buffer_from_header_packet),
5407 (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
5408 * ext/vorbis/vorbisenc.h:
5409 Multi-channel caps negotiation, so we can do proper multichannel
5410 vorbis encoding, negotiated through audioconvert.
5412 2006-05-30 Wim Taymans <wim@fluendo.com>
5414 * tests/check/elements/adder.c: (test_event_message_received),
5415 (test_play_twice_message_received), (GST_START_TEST),
5417 Added check to show that #339935 is fixed with ongoing
5418 adder and collectpads fixes.
5420 2006-05-29 Wim Taymans <wim@fluendo.com>
5422 * gst/adder/gstadder.c: (gst_adder_request_new_pad):
5423 Don't leak pad name.
5425 2006-05-29 Wim Taymans <wim@fluendo.com>
5427 * gst/adder/gstadder.c: (gst_adder_query_duration),
5428 (forward_event_func), (forward_event), (gst_adder_src_event):
5430 Make query/seeking code threadsafe.
5432 * tests/check/Makefile.am:
5433 * tests/check/elements/adder.c: (test_event_message_received),
5434 (GST_START_TEST), (test_play_twice_message_received):
5435 Fix adder test case.
5437 2006-05-29 Tim-Philipp Müller <tim at centricular dot net>
5439 Patch by: Young-Ho Cha <ganadist at chollian net>
5441 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
5442 (gst_play_base_bin_init), (gst_play_base_bin_dispose),
5443 (set_encoding_element), (decodebin_element_added_cb),
5444 (decodebin_element_removed_cb), (setup_subtitle), (setup_source),
5445 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
5446 * gst/playback/gstplaybasebin.h:
5447 Add 'subtitle-encoding' property to playbin, so applications can
5448 force a subtitle encoding for non-UTF8 subtitles (#342268).
5450 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init),
5451 (gst_sub_parse_set_property):
5452 Rename recently-added 'encoding' property to 'subtitle-encoding'
5453 (so it can be proxied by playbin/decodebin in a generic way
5454 with less danger of false positives).
5456 2006-05-29 Michael Smith <msmith@fluendo.com>
5458 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
5459 (append_with_other_format), (set_structure_widths),
5460 (gst_audio_convert_transform_caps):
5461 Patch from #341562: give more specific audio caps in get_caps, so
5462 that basetransform can make better decisions on what caps to
5465 2006-05-28 Stefan Kost <ensonic@users.sf.net>
5467 * tests/check/elements/volume.c:
5468 make it compile again
5470 2006-05-28 Stefan Kost <ensonic@users.sf.net>
5472 * tests/check/elements/volume.c: (volume_suite):
5473 disable test until #343196 gets resolved
5475 2006-05-28 Stefan Kost <ensonic@users.sf.net>
5477 * gst/adder/gstadder.c: (gst_adder_get_type):
5478 Make it easier to copy&paste
5480 * gst/volume/Makefile.am:
5481 * gst/volume/gstvolume.c: (volume_update_real_volume),
5482 (gst_volume_set_volume), (gst_volume_set_mute),
5483 (gst_volume_class_init), (volume_process_int16), (volume_set_caps),
5484 (volume_transform_ip), (volume_update_mute),
5485 (volume_update_volume):
5486 * gst/volume/gstvolume.h:
5487 Add own debug category, move duplicate code to helper function, fix
5488 property texts, add more comments and prepare ffor liboil-goodness
5490 * tests/check/Makefile.am:
5491 * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
5492 add test for mute and passtrough case, be a bit more verbose to track
5495 * tests/check/generic/states.c: (GST_START_TEST):
5496 catch elements that fail to instantiate
5498 2006-05-28 Edward Hervey <edward@fluendo.com>
5500 * tests/check/pipelines/simple-launch-lines.c:
5501 * tests/check/pipelines/theoraenc.c:
5502 * tests/check/pipelines/vorbisenc.c:
5503 Comment out tests using parse_launch() if core was built without
5504 parsing capabilities.
5506 2006-05-27 Edward Hervey <edward@fluendo.com>
5508 * tests/check/Makefile.am:
5509 Extra bonus points for whoever explains to ensonic that you are meant
5510 to test unit tests thoroughly before commiting them, especially if
5511 you know it's going to break.
5512 De-activated element/adder tests.
5514 2006-05-27 Edward Hervey <edward@fluendo.com>
5516 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
5517 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
5518 Marking caps conversion issues as GST_WARNING is way too verbose,
5519 Moving them to GST_LOG.
5521 2006-05-27 Tim-Philipp Müller <tim at centricular dot net>
5524 Replace current README (containing the release notes from
5525 some 0.9.x version) with a proper README taken from the core.
5527 2006-05-26 Wim Taymans <wim@fluendo.com>
5529 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
5530 (vorbis_dec_src_event), (vorbis_dec_sink_event), (vorbis_do_clip),
5531 (vorbis_dec_push), (vorbis_handle_data_packet), (vorbis_dec_chain),
5532 (vorbis_dec_change_state):
5535 Clip output samples to segment boundaries.
5537 2006-05-26 Jan Schmidt <thaytan@mad.scientist.com>
5539 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
5540 (gst_ximagesink_xcontext_get), (gst_ximagesink_show_frame):
5541 Improve the errors produced on bad output, including some human
5542 readable description strings.
5543 Handle the (theoretical for ximagesink) case where the XServer
5544 has a different idea about the size required for a particular
5545 frame and gives us too small a memory allocation.
5547 2006-05-26 Jan Schmidt <thaytan@mad.scientist.com>
5549 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
5550 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
5551 (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
5552 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
5553 Improve the errors produced on bad output, including some human
5554 readable description strings.
5555 Handle RGB Xv formats properly by transforming them into our
5556 big-endian caps description.
5557 Use gst_caps_truncate to ensure that we never try and choose a
5558 non-fixed caps in buffer_alloc.
5559 Handle the case where the XServer has a different idea about the size
5560 required for a particular frame and gives us too small a memory
5562 Use -1 to indicate 'no image format', because 0 is a valid XServer
5563 image format number.
5564 Put RGB Xv formats at the end of the caps, so that we always prefer
5566 Iterate the available Xv Encodings to determine the maximum width and
5567 height, and then return that in our caps.
5568 (Closes #315312, #337544)
5570 2006-05-25 Jan Schmidt <thaytan@mad.scientist.com>
5572 * gst/playback/gstdecodebin.c: (remove_fakesink), (pad_probe):
5573 When there is only one unfinished pad and it receives an event that
5574 doesn't match our requirements, we need to set alldone=FALSE so that
5575 the fakesink is not removed yet.
5577 2006-05-25 Tim-Philipp Müller <tim at centricular dot net>
5579 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
5580 Use gst_type_find_helper_for_buffer() to find the type
5581 of stream from the first packet.
5584 Bump requirements to core CVS (needed for vorbis
5585 typefinding to work).
5587 2006-05-24 Edward Hervey <edward@fluendo.com>
5589 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
5590 Added the 'prfl' atom type which MQV (no, it's not a typo) files
5591 contain. Else they play perfectly fine with qtdemux.
5593 2006-05-23 Stefan Kost <ensonic@users.sf.net>
5595 * ext/theora/theoradec.c:
5596 * ext/theora/theoraenc.c:
5597 * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
5598 * gst/audiorate/gstaudiorate.c:
5599 make more debug catagories static
5601 * tests/check/Makefile.am:
5602 * tests/check/elements/adder.c: (message_received),
5603 (test_event_message_received), (GST_START_TEST),
5604 (test_play_twice_message_received), (adder_suite):
5605 added test case for using element twice, extra bonus points for anyone
5606 who can make these test run reliably
5608 2006-05-23 Tim-Philipp Müller <tim at centricular dot net>
5610 * ext/theora/theoradec.c: (theora_dec_chain):
5611 Make work with time-stamped input buffers that do not
5612 have a granulepos in BUFFER_OFFSET_END (like theora
5613 buffers coming from matroskademux). Fixes #342448.
5615 2006-05-22 Tim-Philipp Müller <tim at centricular dot net>
5617 Patch by: Peter Kjellerstedt <pkj at axis com>
5619 * gst/tcp/Makefile.am:
5620 fdstresstest doesn't need Gtk+, fix compilation if
5621 gtk is not available (#342566).
5623 2006-05-19 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
5625 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
5627 Removed redundant floor()
5629 2006-05-19 Tim-Philipp Müller <tim at centricular dot net>
5631 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5632 On second thought, just skip JUNK chunks automatically, so
5633 the caller doesn't have to handle this. Fixes #342345.
5634 Also, return GST_FLOW_UNEXPECTED if we get a short read,
5637 2006-05-19 Tim-Philipp Müller <tim at centricular dot net>
5639 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5640 Don't bail out on JUNK chunks with a size of 0 (would try to
5641 pull_range 0 bytes before, which sources don't like too much).
5644 2006-05-19 Jan Schmidt <thaytan@mad.scientist.com>
5646 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5647 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5648 Use the gstutil scaling function to preserve 64 bits while calculating
5649 output width and height from the display-aspect-ratio. (A continuation
5652 2006-05-19 Jan Schmidt <thaytan@mad.scientist.com>
5654 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
5655 (gst_xvimagesink_buffer_alloc):
5656 * sys/xvimage/xvimagesink.h:
5657 When performing buffer allocations, remember the caps and image format
5658 we return so that if the same caps are asked for next time we can
5659 return them immediately without doing any caps intersections.
5661 2006-05-18 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
5663 * gst-libs/gst/rtp/README:
5664 Some new documentation
5665 * gst-libs/gst/rtp/gstrtpbuffer.h:
5666 Added GST_RTP_PAYLOAD_DYNAMIC_STRING for use by children
5667 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
5668 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5669 New RTP audio base payloader class. Supports frame or sample based
5670 codecs. Not enabled in Makefile.am until approved.
5672 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5674 * tests/check/elements/alsa.c: (test_device_property_probe):
5675 Fix test case: don't try to free NULL GValueArray when there
5678 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5680 * tests/check/Makefile.am:
5681 * tests/check/elements/alsa.c: (test_device_property_probe),
5682 (alsa_suite), (main):
5683 Add simple test that runs a device property probe on alsasrc,
5684 alsasink and alsamixer. Disable valgrind check for now (too
5685 many leaks in libasound, and valgrind ignored my suppressions
5688 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5690 * ext/alsa/gstalsadeviceprobe.c: (gst_alsa_get_device_list),
5691 (gst_alsa_device_property_probe_probe_property),
5692 (gst_alsa_device_property_probe_needs_probe),
5693 (gst_alsa_device_property_probe_get_values),
5694 (gst_alsa_type_add_device_property_probe_interface):
5695 * ext/alsa/gstalsadeviceprobe.h:
5696 * ext/alsa/gstalsamixerelement.c:
5697 (gst_alsa_mixer_element_init_interfaces):
5698 * ext/alsa/gstalsamixerelement.h:
5699 Clean up and simplify alsa device probing. Make it actually work
5700 for multiple classes. Don't cache results any longer.
5702 * ext/alsa/gstalsasink.c: (gst_alsasink_init_interfaces),
5703 (gst_alsasink_init):
5704 * ext/alsa/gstalsasrc.c: (gst_alsasrc_dispose),
5705 (gst_alsasrc_interface_supported), (gst_implements_interface_init),
5706 (gst_alsasrc_init_interfaces), (gst_alsasrc_set_property):
5707 Make alsasink and alsasrc implement the GstPropertyProbe interface
5708 for device probing (#342181).
5709 Patch by: Martin Szulecki <gnomebugzilla at sukimashita com>
5711 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5713 * gst/subparse/samiparse.c: (handle_start_font):
5714 Don't ignore return value of strtol (++compiler_happiness).
5716 2006-05-17 Tim-Philipp Müller <tim at centricular dot net>
5718 Patch by: Young-Ho Cha <ganadist chollian net>
5720 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5721 (gst_sub_parse_class_init), (gst_sub_parse_init),
5722 (gst_sub_parse_set_property), (gst_sub_parse_get_property),
5724 * gst/subparse/gstsubparse.h:
5725 Add 'encoding' property (#341681).
5727 * gst/subparse/samiparse.c: (characters_sami):
5728 Output is pango markup, so we need to escape text
5729 between tags (#342143).
5731 2006-05-16 Tim-Philipp Müller <tim at centricular dot net>
5733 * gst-libs/gst/audio/multichannel.c:
5734 (gst_audio_check_channel_positions):
5735 It's okay to have caps with channels=1 and a channel position
5736 different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
5737 (deinterleavers might want to keep the position in the caps,
5738 so that they can be re-interleaved again properly later).
5739 Leave check for unexpected 2-channel layouts intact for now.
5741 2006-05-16 Zaheer Abbas Merali <zaheerabbas at merali dot org>
5743 * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
5744 Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
5745 basesrc can do its job correctly.
5747 2006-05-16 Tim-Philipp Müller <tim at centricular dot net>
5749 * ext/alsa/Makefile.am:
5750 * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
5751 (gst_alsa_detect_formats), (get_channel_free_structure),
5752 (caps_add_channel_configuration), (gst_alsa_detect_channels),
5753 (gst_alsa_probe_supported_formats):
5754 * ext/alsa/gstalsa.h:
5755 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5756 Refactor and improve caps probing code: probe signedness
5757 when we probe the supported formats/widths; set endianness
5758 to the one we actually probed for (ie. cpu endianness).
5760 * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
5761 (gst_alsasrc_close):
5762 * ext/alsa/gstalsasrc.h:
5763 Implement caps probing for alsasrc.
5765 2006-05-15 Wim Taymans <wim@fluendo.com>
5767 * ext/theora/theoradec.c: (gst_theora_dec_reset),
5768 (theora_dec_src_query), (theora_dec_src_event),
5769 (theora_dec_sink_event), (theora_handle_comment_packet),
5770 (theora_handle_data_packet), (theora_dec_change_state):
5771 Cleanups, add some G_LIKELY.
5772 Use segment helpers instead of our own wrong code.
5773 Clear queued buffers on seek and READY.
5775 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
5776 (vorbis_dec_convert), (vorbis_dec_src_query),
5777 (vorbis_dec_src_event), (vorbis_dec_sink_event),
5778 (vorbis_handle_comment_packet), (vorbis_dec_push),
5779 (vorbis_handle_data_packet), (vorbis_dec_chain),
5780 (vorbis_dec_change_state):
5781 * ext/vorbis/vorbisdec.h:
5782 Remove old useless packetno variable.
5783 Do position query properly.
5785 Do cleanup of queued buffers in new helper function
5788 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5790 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5791 Query supported sample rates. Fixes #341732.
5793 2006-05-15 Julien MOUTTE <julien@moutte.net>
5795 * gst/playback/gstdecodebin.c: (cleanup_decodebin),
5796 (gst_decode_bin_change_state): Make decodebin reusable
5797 when going from PAUSE_TO_READY and then back to PAUSED.
5800 2006-05-15 Wim Taymans <wim@fluendo.com>
5802 * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
5803 (vorbis_dec_convert), (vorbis_dec_src_query),
5804 (vorbis_dec_sink_query), (vorbis_dec_src_event),
5805 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
5806 (vorbis_dec_clean_queued), (vorbis_dec_push),
5807 (vorbis_handle_data_packet), (vorbis_dec_change_state):
5808 Cleanups. Use refcounting and DEBUG_OBJECT.
5809 Reset segment on flush, use code methods instead of our
5811 Fix potential memleak.
5813 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5815 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
5816 (gst_alsasink_init):
5817 * ext/alsa/gstalsasink.h:
5818 Don't leak allocated snd_output_t structure if there's
5819 more than one alsasink instance at a time (#341873).
5820 Also fix GObject macros in header file.
5822 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5824 * gst/subparse/gstsubparse.c:
5825 (gst_sub_parse_data_format_autodetect):
5826 Don't use libxml functions in the typefinding code.
5828 2006-05-15 Wim Taymans <wim@fluendo.com>
5830 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
5831 Fix seeking performance in the case where a non-header
5832 packet has a 0 granulepos (busted theora case).
5834 (nvdr: thanks Wim for not mentioning who spotted and fixed it in
5835 the first place, you limelight stealer you)
5837 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5839 * gst/subparse/gstsubparse.c:
5840 (gst_sub_parse_data_format_autodetect):
5841 Improve SAMI typefinding: handle case where there are
5842 whitespaces or newlines in front of the first <SAMI>
5845 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5848 Build video4linux plugin even if there's no XVIDEO, just
5849 without implementing the GstXOverlay interface (#334002).
5851 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5854 * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
5856 Add tentative support for libvisual-0.4 (#336881).
5858 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5860 Patch by: Young-Ho Cha <ganadist at chollian net>
5862 * gst/subparse/samiparse.c: (handle_start_font):
5863 Need to map "silver" colour explicitly (#169936).
5865 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5867 Patch by: Young-Ho Cha <ganadist at chollian net>
5869 * gst/subparse/Makefile.am:
5870 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5871 (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
5872 (gst_sub_parse_format_autodetect), (feed_textbuf),
5873 (gst_subparse_type_find), (plugin_init):
5874 * gst/subparse/gstsubparse.h:
5875 * gst/subparse/samiparse.c:
5876 * gst/subparse/samiparse.h:
5877 Add support for SAMI subtitles (#169936).
5879 2006-05-14 Michael Smith <msmith@fluendo.com>
5881 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
5882 Fix #341696: crash when mixing L+R+C to mono or stereo.
5883 * tests/check/Makefile.am:
5884 * tests/check/elements/audioconvert.c: (set_channel_positions),
5885 (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
5886 (audioconvert_suite):
5887 Add test for the above, including some generic framework bits for
5888 testing multichannel things.
5890 === release 0.10.7 ===
5892 2006-05-14 Jan Schmidt <thaytan@mad.scientist.com>
5895 releasing 0.10.7, "Leave the gun"
5897 2006-05-13 Jan Schmidt <thaytan@mad.scientist.com>
5899 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5900 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5903 2006-05-12 Jan Schmidt <thaytan@mad.scientist.com>
5905 * docs/libs/gst-plugins-base-libs-docs.sgml:
5906 * docs/libs/gst-plugins-base-libs-sections.txt:
5907 * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
5908 * gst-libs/gst/video/video.h:
5909 * gst/videoscale/Makefile.am:
5910 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5911 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5912 * tests/check/Makefile.am:
5913 * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
5915 Fix integer overflow problem with pixel-aspect-ratio calculations
5916 in videoscale and xvimagesink (#341542)
5918 2006-05-12 Tim-Philipp Müller <tim at centricular dot net>
5920 * gst-libs/gst/tag/gstid3tag.c:
5921 Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
5923 2006-05-12 Sebastien Moutte <sebastien@moutte.net>
5926 update win32 files listing
5928 2006-05-11 Thomas Vander Stichele <thomas at apestaart dot org>
5930 patch by: Sjoerd Simons (sjoerd@luon.net)
5932 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
5933 (group_create), (group_destroy), (add_stream),
5934 (gst_play_base_bin_get_property),
5935 (gst_play_base_bin_get_streaminfo_value_array):
5936 * gst/playback/gstplaybasebin.h:
5937 API: GstPlayBaseBin::stream-info-value-array property
5938 use a more bindings-friendly way of exposing streaminfo
5939 using a GValueArray. Tested in ipython.
5942 2006-05-11 Wim Taymans <wim@fluendo.com>
5944 * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
5945 (queue_underrun_cb), (queue_filled_cb):
5946 Also catch queue underruns but don't do anything yet.
5947 Refactor and comment queue enlarging code a bit.
5949 * gst/playback/gstplaybasebin.c: (queue_overrun),
5950 (queue_threshold_reached), (queue_out_of_data),
5951 (gen_preroll_element):
5952 If a queue over/underruns check that we don't create nasty
5953 deadlocks when the min-threshold is not reached but the
5954 max-bytes is. In those cases disable max-bytes when we
5955 know that the queue is fed timed data.
5958 2006-05-11 Tim-Philipp Müller <tim at centricular dot net>
5960 * gst/playback/gstplaybin.c: (gen_audio_element):
5961 Make playbin automatically plug an 'audioresample'
5962 element before the audio sink as well. This solves
5963 problems with sinks that only accept a very specific
5964 sample rate, like esdsink (e.g. #340379).
5966 2006-05-11 Tim-Philipp Müller <tim at centricular dot net>
5968 * gst/playback/gstplaybasebin.c: (gen_source_element):
5969 Make http sources send special headers so that we receive
5970 icecast metadata if the http stream is an icecast stream
5971 (otherwise the server will just ignore them). This also
5972 means that from now on users will need the 'icydemux'
5973 element from gst-plugins-good installed if they want to
5974 listen to icecast radio streams. (#341432, #333657).
5976 2006-05-11 Thomas Vander Stichele <thomas at apestaart dot org>
5978 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
5979 (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
5980 remove stupid example from docs - it should come with a simple
5983 * tests/check/elements/multifdsink.c: (wait_bytes_served),
5984 (fail_if_can_read), (GST_START_TEST),
5985 (gst_multifdsink_create_streamheader), (multifdsink_suite):
5986 add a test for changing streamheader which exposes a bug in
5989 2006-05-11 Michael Smith <msmith@fluendo.com>
5991 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
5992 (gst_gnome_vfs_src_received_headers_callback):
5993 * ext/gnomevfs/gstgnomevfssrc.h:
5994 Don't set icy-caps unless we have a sane interval value. Move
5995 interval to a local variable; we never use it outside this function.
5997 2006-05-11 Wim Taymans <wim@fluendo.com>
5999 * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
6000 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
6001 Register special buffer types along with the objects so
6002 that they are not registered at runtime from N different
6003 streaming threads since they are not threadsafe.
6005 2006-05-10 Thomas Vander Stichele <thomas at apestaart dot org>
6007 * tests/check/elements/multifdsink.c: (wait_bytes_served),
6008 (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
6009 add two more tests, one doing streamheader
6011 2006-05-10 Thomas Vander Stichele <thomas at apestaart dot org>
6013 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
6014 clean up the bufqueue when shutting down
6015 * tests/check/Makefile.am:
6016 * tests/check/elements/multifdsink.c: (setup_multifdsink),
6017 (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
6019 add a test for the leak that was just fixed
6021 2006-05-10 Wim Taymans <wim@fluendo.com>
6023 * gst/adder/gstadder.c: (gst_adder_setcaps),
6024 (gst_adder_query_duration), (gst_adder_query), (forward_event),
6025 (gst_adder_src_event), (gst_adder_sink_event),
6026 (gst_adder_class_init), (gst_adder_finalize),
6027 (gst_adder_request_new_pad), (gst_adder_collected):
6028 * gst/adder/gstadder.h:
6029 Updated some docs. Added comments and FIXMEs all over the place.
6030 Improve debugging info.
6031 Fix leak on finalize by not calling the parent.
6032 Implement duration query.
6033 Make event forwarding threadsafe.
6034 Correctly send NEWSEGMENT at start and after flush.
6035 Handle EOS correctly.
6036 Post error when not negotiated.
6038 * tests/check/elements/adder.c: (GST_START_TEST):
6039 Added FIXME in the test.
6041 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
6043 * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
6044 (gst_text_overlay_halign_get_type),
6045 (gst_text_overlay_wrap_mode_get_type):
6046 * ext/theora/theoradec.c: (theora_handle_type_packet),
6047 (theora_handle_data_packet):
6048 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
6049 (theora_enc_sink_setcaps), (theora_enc_chain):
6050 * gst-libs/gst/cdda/gstcddabasesrc.c:
6051 (gst_cdda_base_src_mode_get_type):
6052 * gst/audiotestsrc/gstaudiotestsrc.c:
6053 (gst_audiostestsrc_wave_get_type):
6054 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
6055 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
6056 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
6057 (gst_sync_method_get_type), (gst_unit_type_get_type),
6058 (gst_client_status_get_type):
6059 * gst/videoscale/gstvideoscale.c:
6060 (gst_video_scale_method_get_type):
6061 * gst/videotestsrc/gstvideotestsrc.c:
6062 (gst_video_test_src_pattern_get_type):
6063 * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
6064 (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
6065 (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
6066 (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
6067 (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
6068 (paint_setup_RGB565), (paint_setup_xRGB1555):
6069 Const-ify GEnumValue and GFlagsValue arrays. Use
6070 GST_ROUND_UP_* macros instead of home-made ones.
6072 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
6075 Require core CVS for the new newsegment stuff.
6077 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
6079 Patch by: Sjoerd Simons <sjoerd at luon net>
6081 * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
6082 Register nick for enum value (#341160).
6084 2006-05-09 Stefan Kost <ensonic@users.sf.net>
6086 * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
6088 backout typefind patch #340375
6090 * tests/check/elements/adder.c: (message_received),
6091 (GST_START_TEST), (adder_suite):
6092 redo, signal-handling of test
6094 2006-05-09 Wim Taymans <wim@fluendo.com>
6096 * gst/adder/gstadder.c: (gst_adder_request_new_pad),
6097 (gst_adder_collected):
6098 * gst/adder/gstadder.h:
6099 Remove bogus segment merging and forwarding, we don't
6100 care about timestamps anyway and we just produce a
6102 Also create a nice NEWSEGMENT event when we start.
6103 Use _scale_int some more.
6105 2006-05-09 Edward Hervey <edward@fluendo.com>
6107 * tests/icles/stress-xoverlay.c:
6108 Fix if core was built without parsing support.
6110 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
6112 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6113 Add SEDG (Samsung MPEG-4) fourcc.
6115 2006-05-09 Edward Hervey <edward@fluendo.com>
6117 * tests/icles/stress-xoverlay.c:
6118 * tests/examples/volume/volume.c:
6119 Fix if core was built without parsing support.
6121 * tests/examples/seek/seek.c:
6122 Disable the parse_launch example if core was built without parsing
6125 2006-05-08 Edward Hervey <edward@fluendo.com>
6127 * autogen.sh: (CONFIGURE_DEF_OPT):
6128 libtoolize on Darwin/MacOSX is called glibtoolize
6130 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6132 * tests/check/Makefile.am:
6133 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
6134 Disable the adder test, until the build-slaves posses the kindness to
6135 either like it or to give valid reason for not doing so
6137 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6139 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
6141 Shuffle NULL state change around and raise timeout more
6143 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6145 * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
6146 (mp4_type_find), (plugin_init):
6147 Add typefind to distinguish between "audio/x-m4a" and new type
6148 "video/mp4". Fixes #340375
6150 * tests/check/elements/adder.c: (adder_suite):
6151 Raise timeout to make buildbot happy
6153 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6155 * gst/adder/gstadder.c: (gst_adder_sink_event),
6156 (gst_adder_request_new_pad), (gst_adder_change_state):
6157 * gst/adder/gstadder.h:
6158 * tests/check/Makefile.am:
6159 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
6160 (adder_suite), (main):
6161 Add sink-event handling to adder. It tries to merge incomming
6162 newsegment-events. Added test to check if segment_done is comming
6163 through. Fixes #340060
6165 2006-05-05 Andy Wingo <wingo@pobox.com>
6167 * ext/theora/theoraparse.c (gst_theora_parse_init)
6168 (theora_parse_src_convert, theora_parse_src_query):
6169 * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
6170 (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
6171 query functions on the source pads of the theora and vorbis parse
6172 elements. Fixes position querying when doing a remux.
6174 2006-05-05 Michael Smith <msmith@fluendo.com>
6176 * ext/theora/theoraparse.c: (parse_granulepos),
6177 (theora_parse_drain_queue_prematurely),
6178 (theora_parse_queue_buffer), (theora_parse_sink_event):
6180 Fix invalid granulepos outputs when starting with a non-keyframe.
6182 2006-05-05 Jan Schmidt <thaytan@mad.scientist.com>
6184 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
6185 (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
6186 Rearrange MPEG system stream detection, fixing some memleaks in the
6188 Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
6189 they clean up their data correctly.
6190 Remove unused ogganx caps and move the 'is_annodex' check to inside
6191 the 'is_ogg' if statement.
6193 2006-05-05 Wim Taymans <wim@fluendo.com>
6195 * gst/playback/gstdecodebin.c: (cleanup_decodebin):
6196 Properly remove ghostpads. Fixes #340392
6198 2006-05-04 David Schleef <ds@schleef.org>
6200 * gst/typefind/gsttypefindfunctions.c:
6202 2006-05-03 Jan Schmidt <thaytan@mad.scientist.com>
6204 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
6205 (mpeg_ts_probe_headers), (mpeg_ts_type_find):
6207 When typefinding an MP3 in push-based mode, don't penalise the
6208 probability down to 74% when we found 5 valid frames just because we
6209 can't peek the end of the file.
6211 Make the probability for detecting MPEG Transport Streams based on the
6212 number of sequential headers we successfully detected.
6214 2006-05-03 Wim Taymans <wim@fluendo.com>
6216 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
6217 (vorbis_dec_push), (vorbis_dec_chain):
6218 Still produce an error when we receive an empty packet.
6220 2006-05-03 Wim Taymans <wim@fluendo.com>
6222 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
6223 (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
6224 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
6225 Mark buffers with DISCONT after seek and after activating new
6228 * ext/theora/gsttheoradec.h:
6229 * ext/theora/theoradec.c: (gst_theora_dec_reset),
6230 (theora_get_query_types), (theora_dec_sink_event),
6231 (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
6232 (theora_dec_change_state):
6234 Detect and mark DISCONT buffers.
6236 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
6237 (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
6238 (vorbis_dec_change_state):
6239 * ext/vorbis/vorbisdec.h:
6241 Detect and mark DISCONT buffers.
6242 Don't crash on 0 sized buffers.
6244 2006-05-03 Wim Taymans <wim@fluendo.com>
6246 * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
6247 (volume_transform_ip):
6248 Increase "volume" property to 10.0. Fixes #340369.
6249 Set the process function to NULL when capsnego fails so that
6250 we properly error out.
6252 2006-05-02 Stefan Kost <ensonic@users.sf.net>
6254 * gst/playback/gstplaybin.c: (add_sink):
6255 * gst/playback/test.c: (main):
6256 * gst/playback/test5.c: (dump_element_stats):
6257 * gst/playback/test6.c: (main):
6258 free caps using gst_caps_unref, don't leak caps-strings
6260 2006-05-01 Tim-Philipp Müller <tim at centricular dot net>
6262 * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
6264 Refine musepack typefinding a bit. Return MAXIMUM
6265 probability when we detect stream version 7 to make
6266 sure the mpeg audio typefinder doesn't trump us.
6268 2006-04-29 Tim-Philipp Müller <tim at centricular dot net>
6270 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
6271 Protect against unexpected NULL strf_data buffer.
6273 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
6275 * tests/check/elements/audioconvert.c: (verify_convert),
6277 interpret the out[] buffer in the order the bytes are actually
6278 put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
6279 Other tests should use BYTE_ORDER since the array is filled in
6282 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
6284 * tests/check/elements/audioconvert.c: (verify_convert),
6286 when a test fails, give an indication of which it is
6288 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
6290 * gst-libs/gst/cdda/gstcddabasesrc.c:
6291 compile fix; strtol() needs <stdlib.h>
6293 2006-04-28 Stefan Kost <ensonic@users.sf.net>
6295 * ext/alsa/gstalsamixerelement.c:
6296 * ext/alsa/gstalsasrc.c:
6297 * ext/cdparanoia/gstcdparanoiasrc.c:
6298 * ext/gnomevfs/gstgnomevfssink.c:
6299 * ext/gnomevfs/gstgnomevfssrc.c:
6300 * ext/ogg/gstoggdemux.c:
6301 * ext/ogg/gstoggmux.c:
6302 * ext/ogg/gstoggparse.c:
6303 * ext/ogg/gstogmparse.c:
6304 * ext/pango/gstclockoverlay.c:
6305 * ext/pango/gsttextoverlay.c:
6306 * ext/pango/gsttextrender.c:
6307 * ext/pango/gsttimeoverlay.c:
6308 * ext/theora/theoradec.c:
6309 * ext/theora/theoraenc.c:
6310 * ext/vorbis/vorbisdec.c:
6311 * ext/vorbis/vorbisenc.c:
6312 * gst-libs/gst/audio/gstaudiofilter.c:
6313 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
6314 * gst/audioconvert/gstaudioconvert.c:
6315 * gst/audiorate/gstaudiorate.c:
6316 * gst/audioresample/gstaudioresample.c:
6317 * gst/audiotestsrc/gstaudiotestsrc.c:
6318 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6319 * gst/playback/gstdecodebin.c:
6320 * gst/playback/gstplaybin.c:
6321 * gst/playback/gststreamselector.c:
6322 * gst/subparse/gstsubparse.c:
6323 * gst/tcp/gstmultifdsink.c:
6324 * gst/tcp/gsttcpclientsink.c:
6325 * gst/tcp/gsttcpclientsrc.c:
6326 * gst/tcp/gsttcpserversink.c:
6327 * gst/tcp/gsttcpserversrc.c:
6328 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
6329 * gst/videorate/gstvideorate.c:
6330 * gst/videoscale/gstvideoscale.c:
6331 * gst/videotestsrc/gstvideotestsrc.c:
6332 * gst/volume/gstvolume.c:
6333 * sys/v4l/gstv4ljpegsrc.c:
6334 * sys/v4l/gstv4lmjpegsink.c:
6335 * sys/v4l/gstv4lmjpegsrc.c:
6336 * sys/v4l/gstv4lsrc.c:
6337 * sys/ximage/ximagesink.c:
6338 * sys/xvimage/xvimagesink.c:
6339 * tests/check/libs/cddabasesrc.c:
6340 make GstElementDetails const
6342 2006-04-28 Stefan Kost <ensonic@users.sf.net>
6344 * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
6346 send events from src-pad to all sink-pads fixes #338657
6348 2006-04-28 Stefan Kost <ensonic@users.sf.net>
6350 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
6351 (alsasink_parse_spec):
6352 query width capabilities from alsa, fixes #338919
6354 2006-04-28 Wim Taymans <wim@fluendo.com>
6356 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
6357 (gst_multi_fd_sink_remove_client_link):
6358 * gst/tcp/gstmultifdsink.h:
6359 Fix race condition in multifdsink that can lead to spurious
6360 duplicate clients. this patch adds a new signal that is fired when
6361 multifdsink has removed all references to the fd.
6363 Updated documentation.
6364 API: client-fd-removed signal added
6366 2006-04-28 Michael Smith <msmith@fluendo.com>
6368 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
6369 When asking g_value_array_new to prealloc elements, we may as well
6370 ask for the right number of elements.
6372 2006-04-28 Wim Taymans <wim@fluendo.com>
6374 * gst-libs/gst/audio/gstbaseaudiosink.c:
6375 (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
6376 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
6377 patch to make timestamp checking more tollerant to rounding
6378 errors given that real discontinuities are to be marked on
6379 buffers. Fixes some asf files and #338778.
6380 Also avoid some crashers when we receive an event in the
6383 2006-04-28 Michael Smith <msmith@fluendo.com>
6385 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
6386 (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
6387 (gst_gnome_vfs_src_get_property),
6388 (gst_gnome_vfs_src_send_additional_headers_callback),
6389 (gst_gnome_vfs_src_received_headers_callback),
6390 (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
6391 (gst_gnome_vfs_src_stop):
6392 * ext/gnomevfs/gstgnomevfssrc.h:
6393 Remove ICY handling (mostly) from gnomevfssrc, in favour of
6394 proper shared support within icydemux.
6396 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
6398 * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
6399 (gst_video_rate_swap_prev), (gst_video_rate_chain):
6401 fix a leak when no caps negotiated
6402 fix counting of input frames
6403 * tests/check/elements/.cvsignore:
6404 * tests/check/elements/videorate.c: (assert_videorate_stats),
6405 (GST_START_TEST), (videorate_suite):
6408 2006-04-28 Wim Taymans <wim@fluendo.com>
6410 * gst-libs/gst/audio/gstringbuffer.c:
6411 (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
6412 (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
6413 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
6414 (gst_ring_buffer_pause), (gst_ring_buffer_stop),
6415 (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
6416 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
6417 (gst_ring_buffer_commit), (gst_ring_buffer_read),
6418 (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
6419 (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
6420 Check arguments passed to public functions instead of
6423 2006-04-28 Wim Taymans <wim@fluendo.com>
6425 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
6426 (gst_base_audio_src_get_time), (gst_base_audio_src_create):
6427 GstBaseAudioSrc must be live or it does not work.
6429 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
6430 Don't set live to TRUE as this is the default in the parentclass.
6432 2006-04-28 Wim Taymans <wim@fluendo.com>
6434 * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
6435 (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
6436 Videoscale doesn't pass on pixel-aspect ratio. Handle all
6437 fixation cases better. Fixes #338991
6439 2006-04-28 Wim Taymans <wim@fluendo.com>
6441 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
6442 Handle 0/1 framerate correctly Fixes #331901.
6444 2006-04-28 Wim Taymans <wim@fluendo.com>
6446 * tests/check/elements/audioconvert.c: (get_float_caps),
6447 (GST_START_TEST), (audioconvert_suite):
6448 Added check for correct clipping when doing float samples
6451 2006-04-28 Wim Taymans <wim@fluendo.com>
6453 * gst/videorate/gstvideorate.c: (gst_video_rate_event),
6454 (gst_video_rate_chain):
6455 Print more debugging info.
6457 2006-04-28 Wim Taymans <wim@fluendo.com>
6459 * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
6460 (resample_set_state_from_caps):
6461 Add support for other formats audioresample can handle such as
6462 32 bits in and float and 64 bits float. Fixes #301759
6464 2006-04-28 Wim Taymans <wim@fluendo.com>
6466 * gst/audioconvert/audioconvert.c: (float):
6467 correctly clip float samples > 1.0. Fixes #338718
6469 2006-04-28 Tim-Philipp Müller <tim at centricular dot net>
6471 Patch by: Young-Ho Cha <ganadist at chollian net>
6473 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
6474 (gst_text_overlay_render_text):
6475 Don't strip newlines from the text. Also, center lines
6476 within multi-line paragraphs (#339405).
6478 2006-04-28 Tim-Philipp Müller <tim at centricular dot net>
6480 * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
6481 Fix wavpack typefinding to work in more cases (don't peek
6482 for chunks of multiple hundred kBs at once, but process
6483 things step-by-step in smaller units). Fixes #339786.
6485 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
6490 === release 0.10.6 ===
6492 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
6495 releasing 0.10.6, "Chao"
6497 2006-04-26 David Schleef <ds@schleef.org>
6499 * gst/videoscale/gstvideoscale.c: Add call to oil_init().
6502 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
6505 * win32/common/config.h:
6508 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
6510 patch by: Wim Taymans
6512 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
6513 (gst_ogg_demux_perform_seek):
6514 make sure correct newsegments are sent, so that the decoder
6515 and the demuxer agree on timestamps. Fixes playback of a lot
6516 of Ogg files that do not start from 0. Fixes #339833.
6518 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
6520 Patch by: Edward Hervey <edward@fluendo.com>
6522 * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
6523 * tests/check/Makefile.am:
6524 * tests/check/elements/videorate.c: (assert_videorate_stats),
6525 (setup_videorate), (cleanup_videorate), (GST_START_TEST),
6526 (videorate_suite), (main):
6527 Fix an infinite loop if frames are passed in with wrongly ordered
6528 timestamps. Fixes #339013.
6530 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
6532 Patch by: Tim-Philipp Müller <tim at centricular dot net>
6534 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
6535 fix typefinding on some ISO files. Fixes #339212.
6537 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
6539 Patch by: Tim-Philipp Müller <tim at centricular dot net>
6541 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6542 add another H264 fourcc. Fixes #339047.
6544 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
6546 Patch by: Jan Schmidt
6548 * gst/playback/gststreamselector.c:
6549 (gst_stream_selector_bufferalloc):
6550 Restore old StreamSelector behaviour.
6553 2006-04-12 Thomas Vander Stichele <thomas at apestaart dot org>
6556 * win32/common/config.h:
6559 2006-04-11 Tim-Philipp Müller <tim at centricular dot net>
6561 Patch by: Antoine Tremblay <hexa00 at gmail dot com>
6563 * gst-libs/gst/rtp/gstbasertpdepayload.c:
6564 (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
6565 Fix some memory leaks: on finalize, free buffers left in the queue
6566 before destroying the queue; in _push(), unref rtp_buf even if
6567 the process vfunc returned a NULL buffer as output buffer (#337548);
6568 demote some recuring debug messages to LOG level.
6570 2006-04-11 Wim Taymans <wim@fluendo.com>
6572 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6573 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6574 (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
6575 (gst_ogg_demux_loop):
6577 Respect segment stop when emiting EOS or SEGMENT_DONE.
6580 2006-04-11 Tim-Philipp Müller <tim at centricular dot net>
6582 * gst/playback/gststreamselector.c:
6583 (gst_stream_selector_get_property):
6584 Don't leak pad name.
6586 2006-04-10 Michael Smith <msmith@fluendo.com>
6588 * tests/check/Makefile.am:
6589 * tests/check/gst-plugins-base.supp:
6590 Suppress an old libtheora bug (fixed in more recent versions), so
6591 that FC4 buildslaves can pass.
6593 2006-04-10 Wim Taymans <wim@fluendo.com>
6595 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6596 (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
6597 (gst_ogg_demux_init), (gst_ogg_demux_finalize),
6598 (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
6599 (gst_ogg_demux_loop):
6601 Remember what error we got when finding chains, if we
6602 were shutdown, that would not be an error.
6604 2006-04-10 Wim Taymans <wim@fluendo.com>
6606 * gst-libs/gst/audio/gstbaseaudiosink.c:
6607 (gst_base_audio_sink_event):
6608 Starting the ringbuffer when we did not acquire it can cause
6609 a deadlock, is pointless and causes nasty things for
6611 Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
6613 2006-04-10 Wim Taymans <wim@fluendo.com>
6615 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6616 (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
6617 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6618 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
6619 (gst_ogg_demux_deactivate_current_chain),
6620 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
6621 (gst_ogg_demux_bisect_forward_serialno),
6622 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
6623 Add some more debugging.
6625 2006-04-10 Wim Taymans <wim@fluendo.com>
6627 * ext/theora/theoradec.c: (theora_dec_src_event),
6628 (theora_handle_data_packet):
6629 Some more debug info.
6631 * tests/examples/seek/seek.c: (start_seek), (main):
6632 Print element messages too.
6634 2006-04-09 Sebastien Moutte <sebastien@moutte.net>
6636 * gst/audioresample/debug.h:
6637 replace debug macros with variable number of parameters
6638 by a simple alias to gstreamer standard debug macros
6639 (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
6640 supported by MSVC 6.0 and 7.1)
6641 * gst/audioresample/resample.h:
6642 define M_PI and rint for WIN32
6643 * win32/common/libgstaudio.def:
6644 * win32/common/libgstriff.def:
6645 * win32/common/libgsttag.def:
6646 * win32/common/libgstvideo.def:
6647 add new exported functions
6649 update project files
6651 2006-04-08 Stefan Kost <ensonic@users.sf.net>
6653 * ext/alsa/gstalsamixeroptions.c:
6654 (gst_alsa_mixer_options_class_init):
6655 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
6656 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
6657 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
6658 * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
6659 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
6660 * gst-libs/gst/audio/gstaudiofilter.c:
6661 (gst_audio_filter_class_init):
6662 * gst-libs/gst/audio/gstaudiosink.c:
6663 (gst_audioringbuffer_class_init):
6664 * gst-libs/gst/audio/gstaudiosrc.c:
6665 (gst_audioringbuffer_class_init):
6666 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
6667 * gst-libs/gst/interfaces/colorbalancechannel.c:
6668 (gst_color_balance_channel_class_init):
6669 * gst-libs/gst/interfaces/mixeroptions.c:
6670 (gst_mixer_options_class_init):
6671 * gst-libs/gst/interfaces/mixertrack.c:
6672 (gst_mixer_track_class_init):
6673 * gst-libs/gst/interfaces/tunerchannel.c:
6674 (gst_tuner_channel_class_init):
6675 * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
6676 * gst-libs/gst/netbuffer/gstnetbuffer.c:
6677 (gst_netbuffer_class_init):
6678 * gst-libs/gst/rtp/gstbasertppayload.c:
6679 (gst_basertppayload_class_init):
6680 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
6681 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
6682 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
6683 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
6684 * gst/playback/gststreamselector.c:
6685 (gst_stream_selector_class_init):
6686 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
6687 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
6688 * sys/v4l/gstv4lcolorbalance.c:
6689 (gst_v4l_color_balance_channel_class_init):
6690 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
6691 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
6692 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
6693 * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
6694 (gst_v4l_tuner_norm_class_init):
6695 * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
6696 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
6697 * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
6698 Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
6700 2006-04-08 Stefan Kost <ensonic@users.sf.net>
6702 * ext/pango/gsttextrender.h:
6703 * gst-libs/gst/audio/gstaudiosink.h:
6704 * gst-libs/gst/audio/gstaudiosrc.h:
6705 * gst-libs/gst/audio/gstbaseaudiosink.h:
6706 * gst-libs/gst/audio/gstbaseaudiosrc.h:
6707 * gst-libs/gst/audio/gstringbuffer.h:
6708 * gst-libs/gst/rtp/gstbasertpdepayload.h:
6709 * gst-libs/gst/rtp/gstbasertppayload.h:
6710 * gst-libs/gst/video/gstvideofilter.h:
6711 * gst-libs/gst/video/gstvideosink.h:
6712 * gst/playback/gstplaybasebin.h:
6713 * gst/tcp/gstmultifdsink.h:
6714 * sys/v4l/gstv4lelement.h:
6715 Fix broken GObject macros
6717 2006-04-08 Stefan Kost <ensonic@users.sf.net>
6719 * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
6720 More debug to trace why my USB headset is not working with gst
6722 2006-04-07 Jan Schmidt <thaytan@mad.scientist.com>
6724 * gst/playback/gstplaybasebin.c: (group_destroy):
6725 Clean up our group elements properly in the case where it never
6726 got committed - it still got added unconditionally to the bin.
6728 2006-04-07 Wim Taymans <wim@fluendo.com>
6730 * ext/theora/theoradec.c: (theora_dec_sink_event),
6731 (theora_handle_data_packet), (theora_dec_chain):
6732 Unref unhandled events.
6733 Protect against empty buffers.
6734 Perform QoS on running time.
6736 2006-04-07 Michael Smith <msmith@fluendo.com>
6738 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
6739 (gst_vorbis_enc_chain):
6740 Remove leaks from vorbisenc.
6741 Mostly minor changes, the only significant one is that now the
6742 buffers we set as 'streamheader' on the caps are copies of the
6743 original buffers, to avoid circular refcounting problems.
6745 2006-04-07 Jan Schmidt <thaytan@mad.scientist.com>
6747 * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
6748 Don't remove our mute-probe if someone else already did so.
6749 Don't set a 2nd one if there is already one pending on the pad.
6751 * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
6753 When a seek fails, ensure that playbin is still set back to playing.
6755 * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
6756 (mpeg_ts_type_find), (plugin_init):
6757 Add a typefind function for mpeg-ts streams. (Closes: #336617)
6759 2006-04-06 Andy Wingo <wingo@pobox.com>
6761 * gst/videorate/gstvideorate.c (gst_video_rate_reset)
6762 (gst_video_rate_init): Caps-related parameters should not be reset
6763 by a flush -- move their inits to the instance init function.
6764 (gst_video_rate_flush_prev): Don't complain if gst_pad_push
6765 is not OK, just return the result.
6767 * gst/audiotestsrc/gstaudiotestsrc.c
6768 (gst_audio_test_src_class_init)
6769 (gst_audio_test_src_get_times): Re-enable is-live=true, as was
6770 broken by Stefan's commit on 24 March.
6772 * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
6773 buffers being pushed out. Fixes oggmux ! multifdsink.
6775 2006-04-05 Tim-Philipp Müller <tim at centricular dot net>
6777 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
6778 (gst_vorbis_dec_init), (vorbis_dec_finalize):
6779 * ext/vorbis/vorbisdec.h:
6780 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
6781 (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
6782 (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
6783 (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
6784 (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
6785 (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
6786 (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
6787 (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
6788 (gst_vorbis_enc_buffer_from_packet),
6789 (gst_vorbis_enc_buffer_from_header_packet),
6790 (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
6791 (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
6792 (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
6793 (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
6794 (gst_vorbis_enc_change_state):
6795 * ext/vorbis/vorbisenc.h:
6796 Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
6797 vorbisenc adhere to the official nomenclature; use boilerplate
6800 2006-04-04 Andy Wingo <wingo@pobox.com>
6802 * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6803 Whoops, fix bug introduced. Bad hacker!
6805 * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6806 Properly handle the case where you get EOS before any buffers are
6807 received. Use gst_buffer_make_metadata_writable where appropriate.
6809 * ext/theora/theoradec.c (theora_handle_data_packet): This value
6810 is often negative -- make it signed so as not to wrap around.
6811 Fixes segfaults introduced on 9 March.
6813 2006-04-03 Wim Taymans <wim@fluendo.com>
6815 * ext/theora/gsttheoradec.h:
6816 * ext/theora/theoradec.c: (theora_dec_src_event):
6817 Don't try to store a gdouble in a gboolean.
6820 2006-04-03 Michael Smith <msmith@fluendo.com>
6822 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
6824 Make it suck slightly less by writing out the final page.
6825 Still can't encode a vorbis-in-ogg file correctly, though.
6827 2006-04-03 Andy Wingo <wingo@pobox.com>
6829 * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
6832 * ext/theora/theora.c (plugin_init): Register theoraparse.
6834 * ext/theora/gsttheoraparse.h:
6835 * ext/theora/theoraparse.c: New files implementing a theora
6836 parser. Now we can properly remux ogg/theora+vorbis, yay.
6838 * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
6840 2006-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
6842 * gst/audiotestsrc/gstaudiotestsrc.c:
6843 Fixed the sample pipeline (see #323798)
6845 2006-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
6848 * win32/common/config.h:
6849 * win32/common/config.h.in:
6850 use AS_VERSION and AS_NANO
6853 2006-03-31 Andy Wingo <wingo@pobox.com>
6855 * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
6856 uninitialized variable return that would happen.
6858 * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
6859 uninitialized variable return that would never happen.
6861 * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
6862 (vorbis_parse_sink_event): Add an event function to flush our
6863 state on a seek, and to drain buffers on a premature EOS.
6864 (vorbis_parse_push_headers, vorbis_parse_clear_queue)
6865 (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely)
6866 (vorbis_parse_chain, vorbis_parse_queue_buffer)
6867 (vorbis_parse_drain_queue): Queue up buffers until we can set
6868 their timestamps and granulepos values.
6870 * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
6871 and keep track of data needed for deriving granulepos and
6872 timestamps for buffers.
6874 2006-03-29 Wim Taymans <wim@fluendo.com>
6876 Patch by: j^ <j at bootlab dot org>
6878 * ext/alsa/gstalsamixerelement.c:
6879 (gst_alsa_mixer_element_class_init):
6880 * ext/alsa/gstalsasink.c:
6881 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
6882 * ext/ogg/gstoggdemux.c:
6883 * ext/ogg/gstoggmux.c:
6884 * ext/ogg/gstoggparse.c:
6885 * ext/pango/gstclockoverlay.c:
6886 * ext/pango/gsttextoverlay.c:
6887 * ext/pango/gsttextrender.c:
6888 * ext/pango/gsttimeoverlay.c:
6889 * ext/theora/theoradec.c:
6890 * ext/theora/theoraenc.c:
6891 * ext/vorbis/vorbisdec.c:
6892 * ext/vorbis/vorbisenc.c:
6893 * gst/audioconvert/gstaudioconvert.c:
6894 * gst/subparse/gstsubparse.c:
6895 * gst/tcp/gstmultifdsink.c:
6896 * gst/tcp/gsttcpclientsink.c:
6897 * gst/tcp/gsttcpclientsrc.c:
6898 * gst/tcp/gsttcpserversink.c:
6899 * gst/tcp/gsttcpserversrc.c:
6900 better/unified long descriptions
6903 2006-03-29 Wim Taymans <wim@fluendo.com>
6905 * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
6907 Don't let double and triple clicks mess up our state.
6909 2006-03-28 Tim-Philipp Müller <tim at centricular dot net>
6911 * gst/playback/gstplaybin.c: (gen_video_element),
6912 (gen_text_element), (gen_audio_element), (gen_vis_element):
6913 Error out gracefully when we can't create any of the usual
6914 conversion elements for some reason. Also, don't try to
6915 create an audioscale (sic) element that's not used anyway.
6917 2006-03-28 Tim-Philipp Müller <tim at centricular dot net>
6919 * gst/playback/gstplaybasebin.c: (setup_source):
6920 Don't post RESOURCE_NOT_FOUND error when we can't find a source
6921 element for a particular protocol, that's confusing for users.
6922 Instead, post a RESOURCE_FAILED error, so that our own error
6923 message is actually shown in totem etc. (#336303).
6925 2006-03-27 Tim-Philipp Müller <tim at centricular dot net>
6927 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
6929 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
6930 (gst_gnome_vfs_src_get_icy_metadata):
6931 Fix some minor memory leaks (#336194).
6933 2006-03-27 Tim-Philipp Müller <tim at centricular dot net>
6935 * ext/gnomevfs/gstgnomevfs.c:
6936 (gst_gnome_vfs_location_to_uri_string):
6937 * ext/gnomevfs/gstgnomevfs.h:
6938 * ext/gnomevfs/gstgnomevfssink.c:
6939 (gst_gnome_vfs_sink_set_property):
6940 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
6941 Make gnomevfssink accept filenames as well as URIs for the
6942 "location" property, just like gnomevfssrc does (and
6943 filesrc/filesink do) (#336190).
6945 2006-03-24 Thomas Vander Stichele <thomas at apestaart dot org>
6947 * tests/check/generic/clock-selection.c: (GST_START_TEST):
6948 set to NULL before unreffing, fixes a valgrind leak.
6949 Why was this not triggering the error that an object needs to
6950 be NULL before unreffing ?
6951 * win32/common/config.h:
6954 2006-03-24 Tim-Philipp Müller <tim at centricular dot net>
6956 * gst/subparse/gstsubparse.c: (convert_encoding),
6957 (gst_sub_parse_change_state):
6958 * gst/subparse/gstsubparse.h:
6959 Text subtitle files may or may not be UTF-8. If it's not, we
6960 don't really want to see '?' characters in place of non-ASCII
6961 characters like accented characters. So let's assume the input
6962 is UTF-8 until we come across text that is clearly not. If it's
6963 not UTF-8, we don't really know what it is, so try the following:
6964 (a) see whether the GST_SUBTITLE_ENCODING environment variable
6965 is set; if not, check (b) if the current locale encoding is
6966 non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
6967 the current locale encoding is UTF-8 and the environment variable
6968 was not set to any particular encoding. Not perfect, but better
6969 than nothing (and better than before, I think) (fixes #172848).
6971 2006-03-24 Thomas Vander Stichele <thomas at apestaart dot org>
6974 update core requirement to 0.10.4.1 because of async_playback
6975 vmethod on GstBaseSink
6977 2006-03-24 Stefan Kost <ensonic@users.sf.net>
6979 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
6980 * gst/adder/gstadder.c: (gst_adder_init):
6981 use DEBUG_FUNCPTR for collectpads
6983 2006-03-24 Stefan Kost <ensonic@users.sf.net>
6985 * docs/plugins/Makefile.am:
6986 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6987 * docs/plugins/gst-plugins-base-plugins-sections.txt:
6988 * ext/cdparanoia/gstcdparanoiasrc.c:
6989 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
6990 (gst_gnome_vfs_sink_class_init):
6991 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
6992 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
6993 * ext/ogg/gstoggmux.c:
6994 * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
6995 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
6996 (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
6997 * ext/pango/gsttextoverlay.c:
6998 * ext/pango/gsttextrender.c:
6999 * ext/theora/theoradec.c:
7000 * ext/theora/theoraenc.c:
7001 * ext/vorbis/vorbisdec.c:
7002 * ext/vorbis/vorbisenc.c:
7003 * gst-libs/gst/audio/gstaudiofilter.c:
7004 (gst_audio_filter_base_init):
7005 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
7006 (gst_audio_filter_template_base_init):
7007 * gst/adder/gstadder.c: (gst_adder_get_type):
7008 * gst/adder/gstadder.h:
7009 * gst/audioconvert/gstaudioconvert.c:
7010 * gst/audiotestsrc/gstaudiotestsrc.c:
7011 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
7012 (gst_audio_test_src_create):
7013 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7014 * gst/playback/gstdecodebin.c:
7015 * gst/playback/gstplaybin.c:
7016 * gst/playback/gststreamselector.c:
7017 (gst_stream_selector_base_init):
7018 * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
7019 * gst/volume/gstvolume.c:
7020 * sys/v4l/gstv4lmjpegsink.c:
7021 * sys/v4l/gstv4lmjpegsrc.c:
7022 * tests/check/libs/cddabasesrc.c:
7023 * tests/old/examples/gob/gst-identity2.gob:
7024 Add docs for adder, use GST_ELEMENT_DETAILS macro,
7025 define GstElementDetails at the top
7027 2006-03-23 Sebastien Moutte <sebastien@moutte.net>
7029 * win32/common/libgstinterfaces.def:
7030 Add a lot of export functions for gst-python
7031 * win32/vs6/libgstinterfaces.dsp:
7032 Add a missing include folder in the project configuration
7034 2006-03-23 Wim Taymans <wim@fluendo.com>
7036 * gst-libs/gst/audio/gstbaseaudiosrc.c:
7037 (gst_base_audio_src_get_time), (gst_base_audio_src_create),
7038 (gst_base_audio_src_change_state):
7039 Fix audio sources, forgot to make the ringbuffer
7042 2006-03-23 Wim Taymans <wim@fluendo.com>
7044 * gst-libs/gst/audio/gstbaseaudiosrc.c:
7045 (gst_base_audio_src_get_time), (gst_base_audio_src_create),
7046 (gst_base_audio_src_change_state):
7047 unparent instead of unref the ringbuffer.
7049 2006-03-23 Wim Taymans <wim@fluendo.com>
7051 * gst-libs/gst/audio/gstbaseaudiosink.c:
7052 (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
7053 (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
7054 Implement new async_play vmethod to start slaving and allow
7055 playback start in case of async PLAY state changes.
7057 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7058 Enable QoS with new method in base class.
7060 2006-03-23 Wim Taymans <wim@fluendo.com>
7062 Patch by: Julien MOUTTE <julien at moutte dot net>
7064 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
7065 (gst_video_test_src_do_seek), (gst_video_test_src_create):
7066 Partially handle 0 framerate, only EOS after the first frame
7069 2006-03-23 Wim Taymans <wim@fluendo.com>
7071 Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
7073 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7074 (gst_riff_create_video_template_caps):
7075 * gst/ffmpegcolorspace/avcodec.h:
7076 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
7077 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
7078 (gst_ffmpegcsp_avpicture_fill):
7079 * gst/ffmpegcolorspace/imgconvert.c:
7080 Patch for support of YVU9 AVI files (#334822)
7082 2006-03-22 Edward Hervey <edward@fluendo.com>
7084 * docs/design/design-decodebin.txt:
7085 Added design document for new decodebin
7086 (Target Caps): text/x-pango-markup is also a default target caps.
7088 2006-03-22 Wim Taymans <wim@fluendo.com>
7090 * gst-libs/gst/audio/gstbaseaudiosink.c:
7091 (gst_base_audio_sink_dispose):
7092 Since we _parent the ringbuffer, we also need to
7093 _unparent instead of a plain _unref.
7095 2006-03-22 Wim Taymans <wim@fluendo.com>
7097 * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
7098 (stop_seek), (scrub_toggle_cb), (main):
7101 2006-03-21 Tim-Philipp Müller <tim at centricular dot net>
7103 * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
7104 (gst_ogg_parse_chain):
7105 Fix very inefficient usage of linked lists (#335365).
7107 2006-03-21 Edward Hervey <edward@fluendo.com>
7109 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
7110 * gst/playback/gstplaybin.c: (handoff):
7111 * gst/playback/gststreamselector.c:
7112 (gst_stream_selector_set_property):
7113 gcc 4.1 unreferenced pointer fixes.
7114 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
7115 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
7116 gst_buffer_ref() now takes a GstBuffer*.
7118 2006-03-20 Julien MOUTTE <julien@moutte.net>
7120 * sys/xvimage/xvimagesink.c:
7121 (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
7124 2006-03-19 Tim-Philipp Müller <tim at centricular dot net>
7126 * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
7127 (id3v1_type_find), (apetag_type_find), (plugin_init):
7128 Can't do tag preferences via probability, as tags would then
7129 lose against types that are recognised with MAXIMUM probability
7130 (like .wav); so let all tag typefinders return MAXIMUM themselves
7131 and order them via the rank. Split ID3v1 and ID3v2 typefinders so
7132 that we can prefer APE to ID3v1 (fixes #335028).
7134 2006-03-17 Wim Taymans <wim@fluendo.com>
7136 * gst-libs/gst/audio/gstbaseaudiosink.c:
7137 (gst_base_audio_sink_change_state):
7138 * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
7139 (gst_ring_buffer_may_start):
7140 * gst-libs/gst/audio/gstringbuffer.h:
7141 Only start playback if we are playing.
7144 2006-03-17 Jan Schmidt <thaytan@mad.scientist.com>
7146 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
7147 * win32/common/config.h:
7148 Revert accidental commits to these files.
7150 2006-03-16 Tim-Philipp Müller <tim at centricular dot net>
7152 Patch by: Michal Benes <michal dot benes at xeris dot cz>
7154 * tests/Makefile.am:
7155 Don't try to build tests in tests/icles if we
7156 don't have X (#323852)
7158 2006-03-16 Tim-Philipp Müller <tim at centricular dot net>
7160 * gst-libs/gst/tag/gstid3tag.c:
7161 Add TXXX frame identifiers for replaygain stuff as used
7162 by some taggers (see #323721).
7164 2006-03-16 Jan Schmidt <thaytan@mad.scientist.com>
7166 * gst/playback/gststreamselector.c:
7167 (gst_stream_selector_set_property),
7168 (gst_stream_selector_bufferalloc):
7169 Preserve the existing buggy streamselector behaviour by performing
7170 a fallback buffer allocation when downstream isn't linked yet.
7171 This should really be fixed in playbin by blocking pads until it's
7173 Also, use gst_pad_alloc_buffer instead of
7174 gst_pad_alloc_buffer_and_set.
7176 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
7178 * gst-libs/gst/tag/gstid3tag.c:
7179 Don't crash on unknown ID3v2 TXXX frames.
7181 2006-03-15 Jan Schmidt <thaytan@mad.scientist.com>
7183 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
7184 Chain up to the parent finalize method.
7185 Add 32-bit sample size to the template caps.
7187 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7188 (gst_riff_create_video_template_caps):
7189 Add the fourcc that the VMWare codec uses.
7191 * gst/playback/gststreamselector.c:
7192 (gst_stream_selector_set_property),
7193 (gst_stream_selector_bufferalloc),
7194 (gst_stream_selector_request_new_pad):
7195 For the active pad, forward buffer-alloc requests, otherwise
7196 return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
7197 having to memcpy every frame when used by playbin.
7199 * gst/tcp/gstmultifdsink.c:
7200 (gst_multi_fd_sink_handle_client_write):
7201 Get negotiated caps from the sink pad, rather than the sink
7204 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
7206 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
7208 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
7209 Don't forget to set src->callbacks_pushed to FALSE again when
7210 popping them, otherwise re-activation in a different mode won't
7213 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
7215 Patch by: Sebastien Moutte <sebastien moutte net>
7217 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
7218 (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
7219 (gst_ffmpeg_smpfmt_to_caps):
7220 Replace __VA_ARGS__ caps creation macros with varargs functions.
7221 Makes things compile on MSVC (#320765), looks nicer, and we can
7222 tell the compiler to check for the NULL terminator.
7224 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
7226 Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
7228 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7229 Make sure the buffer we copy into is really always big
7230 enough, this time for real (#333488).
7232 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
7234 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7235 Add support for 24bpp DIB (#305279).
7237 2006-03-14 Wim Taymans <wim@fluendo.com>
7239 * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
7240 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7241 * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
7242 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
7243 (gst_video_scale_init), (gst_video_scale_src_event):
7244 Re-enable QoS after the release.
7245 Rework videoscale to use the base class src_event handler.
7247 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
7252 === release 0.10.5 ===
7254 2006-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
7257 releasing 0.10.5, "Net"
7259 2006-03-13 Tim-Philipp Müller <tim at centricular dot net>
7261 * docs/plugins/Makefile.am:
7262 Part of previous cdparanoiasrc docs fixes, forgot to commit.
7264 2006-03-12 Tim-Philipp Müller <tim at centricular dot net>
7266 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7267 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7268 * docs/plugins/gst-plugins-base-plugins.hierarchy:
7269 Add cdparanoiasrc to docs.
7271 * gst-libs/gst/cdda/gstcddabasesrc.c:
7272 More GstCddaBaseSrc docs.
7274 2006-03-12 Tim-Philipp Müller <tim at centricular dot net>
7276 * docs/libs/gst-plugins-base-libs-sections.txt:
7277 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
7278 * gst-libs/gst/tag/tag.h:
7279 API: libgsttag: new method gst_tag_from_id3_user_tag().
7281 2006-03-11 Tim-Philipp Müller <tim at centricular dot net>
7283 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7284 NULL-terminate array of mpeg4 video file extensions.
7285 Fixes crash on PPC (#334226).
7287 2006-03-11 Tim-Philipp Müller <tim at centricular dot net>
7289 * ext/gnomevfs/gstgnomevfssrc.c:
7290 (gst_gnome_vfs_src_check_get_range):
7291 gnome_vfs_uri_is_local() alone is not a good indicator
7292 whether we can operate in pull-mode with a specific URI,
7293 as it returns FALSE for file:// URIs that point to an
7294 NFS-mounted path. Be more conservative here: whitelist
7295 local files, blacklist http URIs and use the old
7296 mechanism for anything else (fixes #334216).
7298 2006-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
7303 === release 0.10.4 ===
7305 2006-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
7308 releasing 0.10.4, "Power"
7310 2006-03-10 Jan Schmidt <thaytan@mad.scientist.com>
7312 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7313 Disable max-lateness by setting it to -1 for now, so that
7314 we can bed QoS stuff in thoroughly between now and the next
7317 2006-03-10 Tim-Philipp Müller <tim at centricular dot net>
7319 Patch by: Fabrizio Gennari
7321 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7322 Make sure we don't read beyond the palette buffer in case of
7323 broken or manipulated files (#333488)
7325 2006-03-10 Edward Hervey <edward@fluendo.com>
7327 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
7328 Fix for variable not initialized.
7330 2006-03-09 Wim Taymans <wim@fluendo.com>
7332 * ext/libvisual/visual.c: (gst_visual_get_type),
7333 (gst_visual_src_setcaps), (gst_vis_src_negotiate),
7337 * ext/theora/gsttheoradec.h:
7338 * ext/theora/theoradec.c: (gst_theora_dec_init),
7339 (gst_theora_dec_reset), (_theora_granule_time),
7340 (theora_dec_src_convert), (theora_dec_sink_convert),
7341 (theora_dec_src_query), (theora_dec_src_event),
7342 (theora_dec_sink_event), (theora_handle_comment_packet),
7343 (theora_handle_header_packet), (theora_dec_push),
7344 (theora_handle_data_packet), (theora_dec_chain),
7345 (theora_dec_change_state):
7348 2006-03-09 Wim Taymans <wim@fluendo.com>
7350 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
7351 (audiocast_register_listener), (gst_gnome_vfs_src_start):
7354 2006-03-09 Wim Taymans <wim@fluendo.com>
7356 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
7357 Don't try to activate NULL chains.
7359 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7361 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
7362 Fix invalid memory access to region before peek'd data (#332964).
7364 2006-03-09 Wim Taymans <wim@fluendo.com>
7366 Patch by: Christophe Fergeau
7368 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
7369 * ext/pango/gsttextrender.c: (gst_text_render_init):
7370 * gst/adder/gstadder.c: (gst_adder_init):
7371 Don't leak padtemplates, closes #333510.
7373 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7375 * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
7376 Fix invalid memory access: make sure string passed to
7377 regexec() is NUL-termianted.
7379 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7381 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
7383 Refactor mpeg/audio typefinding to make it more maintainable
7384 and easier to fine-tune. Make probing into middle of the file
7385 work properly (fixes #333900, also see #152688).
7387 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7389 * gst/typefind/gsttypefindfunctions.c:
7390 (utf8_type_find_have_valid_utf8_at_offset):
7391 Remove part from previous commit that was bogus:
7392 g_utf8_validate() does in fact not accept embedded
7393 zeroes, so we don't need to check for those (thanks
7394 to Mike for the hint).
7396 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
7398 * gst/typefind/gsttypefindfunctions.c:
7399 (utf8_type_find_count_embedded_zeroes),
7400 (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
7401 Make plain/text typefinder more conservative: firstly, check
7402 for embedded zeroes, which are perfectly valid UTF-8 characters,
7403 but also a fairly good sign that something is not a plain text
7404 file; secondly, probe into the middle of the file if possible.
7405 If we can't probe into the middle, limit the probability value
7406 to be returned to TYPE_FIND_POSSIBLE (see #333900).
7408 2006-03-08 Michael Smith <msmith@fluendo.com>
7410 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7411 Make typefind function name for mpeg4 video unique.
7413 2006-03-08 Wim Taymans <wim@fluendo.com>
7415 * ext/libvisual/visual.c: (gst_visual_init),
7416 (gst_visual_clear_actors), (gst_visual_dispose),
7417 (gst_visual_reset), (gst_visual_src_setcaps),
7418 (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
7419 (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
7420 (gst_visual_chain), (gst_visual_change_state):
7421 Cleanups, post nice errors.
7422 Handle sink and src events.
7423 Implement simple QoS.
7425 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7426 Use new basesink methods to configure max-lateness.
7429 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7430 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
7431 Debug statement cleanups.
7433 * gst/volume/gstvolume.c: (gst_volume_class_init):
7436 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
7438 * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
7439 (gst_text_overlay_init), (gst_text_overlay_set_property),
7440 (gst_text_overlay_get_property):
7441 Revert API/ABI break from March 1. Keep 'halign' and 'valign'
7442 as string type properties, but mark them deprecated. Add
7443 'halignment' and 'valignment' properties that use enums
7446 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
7448 Patch by: Fabrizio Gennari
7450 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7451 Allow palettes with less than 256 colours in AVI files
7454 2006-03-07 Julien MOUTTE <julien@moutte.net>
7456 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
7457 (gst_text_overlay_video_event): Fix wrong EOS handling on text
7458 pad. We were releasing the queued text buffer when we should keep
7459 it until video pad gets EOS or discard the text buffer because it's
7460 too old. That was eating the last subtitle buffer. Add some more
7463 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7465 * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
7466 (gst_text_overlay_video_chain):
7467 Fix invalid memory access (we can't access a buffer after it's been
7468 pushed downstream without taking a reference); fix memory leak (if
7469 there's no text to render, bail out before allocating stuff).
7471 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7473 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
7474 (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
7475 * ext/pango/gsttextoverlay.h:
7476 If input is plain text, escape it before passing it to
7477 pango_layout_set_markup().
7479 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7481 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
7482 Don't ignore flow return from gst_pad_push().
7484 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7486 Patch by: Fabrizio Gennari
7488 * ext/libvisual/visual.c: (gst_visual_getcaps),
7489 (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
7490 * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
7491 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
7492 (gst_vorbisenc_convert_sink):
7493 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
7494 (gst_audio_duration_from_pad_buffer):
7495 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
7496 (gst_audio_filter_chain):
7497 * gst-libs/gst/rtp/gstbasertpdepayload.c:
7498 (gst_base_rtp_depayload_setcaps):
7499 * gst-libs/gst/video/video.c: (gst_video_frame_rate),
7500 (gst_video_get_size):
7501 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
7502 Don't leak references returned by gst_pad_get_parent()
7505 2006-03-06 Stefan Kost <ensonic@users.sf.net>
7507 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
7508 change location param details
7509 * gst/volume/gstvolume.c: (plugin_init):
7510 correct plugin description
7512 2006-03-06 Tim-Philipp Müller <tim at centricular dot net>
7514 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
7515 (gst_gnome_vfs_src_check_get_range):
7516 Override GstBaseSrc::check_get_range() in order to avoid opening
7517 the resource just to check whether we can operate in pull-mode or
7518 not - we can predict that pretty well from the URI alone. Should
7519 fix problems with last.fm (#331690). (Requires latest core CVS).
7521 2006-03-06 Wim Taymans <wim@fluendo.com>
7523 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
7524 (gst_video_sink_class_init):
7525 Throw away frames that are later than 20 ms.
7527 2006-03-06 Tim-Philipp Müller <tim at centricular dot net>
7529 Patch by: Fabrizio Gennari
7531 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
7532 Set depth on WMA caps (#333545)
7534 2006-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
7536 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
7537 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
7538 put Theora BOS pages before others. This hardcodes
7539 the Ogg/Theora I profile, but hey.
7541 2006-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
7544 updated with some examples
7545 * ext/theora/theoraenc.c: (granulepos_to_timestamp),
7546 (granulepos_add), (theora_buffer_from_packet):
7547 * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
7548 (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
7549 (gst_vorbisenc_chain):
7550 implement strategy from ext/ogg/README
7551 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
7552 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
7553 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
7554 (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
7555 Fix muxer so that oggz-validate is happy with all streams;
7556 except for no eos mark, and the BOS page ordering
7557 * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
7558 (check_buffer_granulepos):
7559 * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
7560 update tests to check for OFFSET being set as requested
7561 fixed type of granulepos, it's not a ClockTime
7563 2006-03-05 Julien MOUTTE <julien@moutte.net>
7565 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
7566 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
7567 Check that the xvimage we are creating has a correct size
7568 before returning it. (#314897)
7570 2006-03-05 Tim-Philipp Müller <tim at centricular dot net>
7572 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7573 Give id3 and ape tag typefinders a rank slightly higher
7574 than PRIMARY to ensure they're always run before any of
7575 the other typefinders (in particular wav and mp3) (#324186).
7577 2006-03-05 Tim-Philipp Müller <tim at centricular dot net>
7579 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7580 Add support for '3IVD' fourcc (#333403).
7582 2006-03-04 Tim-Philipp Müller <tim at centricular dot net>
7585 Bump requirements to GStreamer CVS for the new error enum.
7587 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
7588 Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
7589 space left on the device (fixes #333352).
7591 2006-03-04 Sebastien Moutte <sebastien@moutte.net>
7594 add a project file for libgstvolume
7595 update the workspace
7597 2006-03-03 Thomas Vander Stichele <thomas at apestaart dot org>
7599 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
7600 * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
7602 Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
7603 Set IN_CAPS on header buffers
7605 2006-03-02 Wim Taymans <wim@fluendo.com>
7607 * docs/plugins/Makefile.am:
7608 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7609 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7610 Add audioresample to docs.
7612 * gst/audioconvert/gstaudioconvert.c:
7615 * gst/audioresample/gstaudioresample.c:
7616 (gst_audioresample_base_init), (gst_audioresample_class_init),
7617 (gst_audioresample_init), (gst_audioresample_dispose),
7618 (audioresample_get_unit_size), (audioresample_transform_caps),
7619 (resample_set_state_from_caps), (audioresample_transform_size),
7620 (audioresample_set_caps), (audioresample_event),
7621 (audioresample_do_output), (audioresample_transform),
7622 (audioresample_pushthrough), (gst_audioresample_set_property),
7623 (gst_audioresample_get_property), (plugin_init):
7624 * gst/audioresample/gstaudioresample.h:
7626 Small code cleanups.
7628 2006-03-02 Wim Taymans <wim@fluendo.com>
7630 * docs/plugins/Makefile.am:
7631 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7632 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7633 Added videoscale to docs.
7635 * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
7636 (gst_video_rate_swap_prev), (gst_video_rate_event),
7637 (gst_video_rate_chain):
7640 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
7641 (gst_video_scale_init), (gst_video_scale_prepare_size),
7642 (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
7643 (gst_video_scale_fixate_caps), (gst_video_scale_transform):
7644 * gst/videoscale/gstvideoscale.h:
7645 Added docs, examples.
7647 Post errors instead of g_warning.
7649 2006-03-02 Wim Taymans <wim@fluendo.com>
7651 * docs/libs/gst-plugins-base-libs-docs.sgml:
7652 * docs/libs/gst-plugins-base-libs-sections.txt:
7653 * docs/libs/gst-plugins-base-libs.types:
7654 * docs/plugins/Makefile.am:
7655 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7656 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7657 Added some more docs to libs and plugins.
7659 * gst-libs/gst/audio/gstringbuffer.c:
7660 (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
7661 * gst-libs/gst/audio/gstringbuffer.h:
7662 Document ringbuffer some more.
7664 * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
7665 (gst_video_rate_setcaps), (gst_video_rate_reset),
7666 (gst_video_rate_init), (gst_video_rate_flush_prev),
7667 (gst_video_rate_swap_prev), (gst_video_rate_event),
7668 (gst_video_rate_chain), (gst_video_rate_change_state):
7669 * gst/videorate/gstvideorate.h:
7670 Fix videorate to use segments.
7671 Make it work with 0/1 framerates (closes #331903)
7672 Handle EOS correctly.
7675 2006-03-02 Tim-Philipp Müller <tim at centricular dot net>
7677 * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
7678 (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
7679 (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
7680 In state change function, first chain up to parent class,
7681 then handle downwards state change stuff. Remove some
7682 commented out cruft from 0.8 code.
7684 2006-03-02 Tim-Philipp Müller <tim at centricular dot net>
7686 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
7687 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
7688 (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
7689 (gst_ogm_parse_chain):
7690 Don't remove/re-add source pad if the new caps are the same as
7691 the old caps anyway (#333042). When removing source pad, don't
7692 unref it afterwards - we didn't ref it when adding. Sprinkle some
7693 GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
7694 after using gst_pad_get_parent(). Return downstream flow return
7695 value in chain function.
7697 2006-03-02 Wim Taymans <wim@fluendo.com>
7699 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7700 * docs/plugins/gst-plugins-base-plugins.args:
7701 * docs/plugins/gst-plugins-base-plugins.hierarchy:
7702 * docs/plugins/gst-plugins-base-plugins.interfaces:
7703 * docs/plugins/gst-plugins-base-plugins.signals:
7704 Fix hierarchy, added some more elements to the docs.
7706 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7707 (gst_ffmpegcsp_get_type):
7708 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7709 Fix docs for ffmpegcolorspace.
7711 2006-03-01 Tim-Philipp Müller <tim at centricular dot net>
7713 * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
7714 (apetag_type_find), (ape_type_find), (plugin_init):
7715 Some typefinding fine-tuning:
7716 - rank ID3/APE tags in order of preference via probabilities, so that
7717 ID3v2 > APEv2 > APEv1 > ID3v1.
7718 - three or four bytes don't really justify MAXIMUM probability,
7719 change those to 'very likely' (musepack and monkeysaudio).
7721 2006-03-01 Wim Taymans <wim@fluendo.com>
7723 * docs/plugins/Makefile.am:
7724 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7725 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7726 * ext/alsa/gstalsamixer.c:
7727 * ext/alsa/gstalsamixer.h:
7728 * ext/alsa/gstalsamixerelement.c:
7729 (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
7730 * ext/alsa/gstalsamixerelement.h:
7731 * ext/alsa/gstalsasink.c:
7732 * ext/alsa/gstalsasink.h:
7733 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
7735 * ext/alsa/gstalsasrc.h:
7737 Small code cleanups.
7739 2006-03-01 Wim Taymans <wim@fluendo.com>
7741 * ext/theora/Makefile.am:
7742 Dist new header too,
7744 2006-03-01 Wim Taymans <wim@fluendo.com>
7746 * docs/plugins/Makefile.am:
7747 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7748 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7749 * ext/gnomevfs/gstgnomevfssink.h:
7750 * ext/gnomevfs/gstgnomevfssrc.h:
7751 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
7752 * ext/vorbis/vorbisdec.h:
7753 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
7754 * ext/vorbis/vorbisenc.h:
7755 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
7756 (vorbis_parse_chain), (vorbis_parse_change_state):
7757 * ext/vorbis/vorbisparse.h:
7758 * gst/audioconvert/gstaudioconvert.h:
7759 * gst/tcp/gsttcpserversink.h:
7760 * gst/videotestsrc/gstvideotestsrc.c:
7761 * gst/videotestsrc/gstvideotestsrc.h:
7762 * gst/volume/gstvolume.c:
7763 * gst/volume/gstvolume.h:
7765 Added docs for vorbisdec and vorbisparse.
7768 2006-03-01 Wim Taymans <wim@fluendo.com>
7770 * docs/plugins/Makefile.am:
7771 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7772 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7773 * ext/pango/gstclockoverlay.h:
7774 * ext/pango/gsttextoverlay.h:
7775 * ext/pango/gsttextrender.h:
7776 * ext/pango/gsttimeoverlay.h:
7777 * ext/theora/gsttheoradec.h:
7778 * ext/theora/gsttheoraenc.h:
7779 * ext/theora/theoradec.c:
7780 * ext/theora/theoraenc.c:
7781 * gst/audioconvert/gstaudioconvert.h:
7782 * gst/audiotestsrc/gstaudiotestsrc.h:
7783 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7784 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
7785 * gst/tcp/gstmultifdsink.h:
7786 Updated/added documentation.
7788 * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
7789 (gst_text_overlay_halign_get_type),
7790 (gst_text_overlay_wrap_mode_get_type),
7791 (gst_text_overlay_base_init), (gst_text_overlay_class_init),
7792 (gst_text_overlay_init), (gst_text_overlay_set_property),
7793 (gst_text_overlay_get_property):
7794 Fix up properties to be enums instead of string to make bindings,
7795 introspection and automatic GUI creation possible.
7796 Add getters for the properties.
7798 2006-02-28 Sebastien Moutte <sebastien@moutte.net>
7800 * gst/audiotestsrc/gstaudiotestsrc.c:
7801 added defines of M_PI and M_PI_2
7802 * gst/ffmpegcolorspace/avcodec.h:
7803 removed #include "stdint.h" for win32 as _stdint.h is
7804 autogenerated to win32/common
7805 * win32/common/libgstaudio.def:
7806 * win32/common/libgsttag.def:
7809 some project files bugs corrected
7811 project files are reset to the default vs7 configuration
7812 (they link to msvcr71.dll using default optimizations)
7814 2006-02-28 Wim Taymans <wim@fluendo.com>
7816 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
7819 2006-02-28 Edward Hervey <edward@fluendo.com>
7821 * ext/alsa/gstalsasrc.c:
7822 Set proper class on the ElementDetails:
7823 Source/Audio instead of Src/Audio/
7825 2006-02-28 Edward Hervey <edward@fluendo.com>
7827 * gst/videoscale/vs_scanline.c:
7828 (vs_scanline_resample_nearest_RGBA):
7829 Revert optimization in videoscale. It should go in liboil and have
7830 an appropriate liboil function.
7832 2006-02-28 Wim Taymans <wim@fluendo.com>
7834 * gst-libs/gst/audio/gstbaseaudiosink.c:
7835 (gst_base_audio_sink_provide_clock):
7836 Don't try to provide a clock in the NULL state.
7838 2006-02-28 Wim Taymans <wim@fluendo.com>
7840 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
7841 (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
7842 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7843 (gst_ogg_demux_deactivate_current_chain),
7844 (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
7845 (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
7846 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
7847 (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
7848 Use GstSegment infrastructure to remove duplicated code
7849 and handle more seek cases correctly.
7851 2006-02-28 Wim Taymans <wim@fluendo.com>
7853 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7854 (gst_ffmpegcsp_transform):
7855 Don't ignore return code from ffmpeg convert function.
7857 * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
7858 Split out some long statements to ease debugging.
7860 2006-02-27 Jan Schmidt <thaytan@mad.scientist.com>
7862 * ext/libvisual/visual.c: (gst_visual_init),
7863 (gst_vis_src_negotiate), (get_buffer), (plugin_init):
7864 Don't use gst_pad_use_fixed_caps, because it prevents downstream from
7865 being able to renegotiate the size. Instead, use the negotiation
7866 algorithm from the goom plugin to pick an initial output caps.
7868 Also, allow theoretical libvisual plugins that might support non-GL
7869 output even if they also do GL.
7871 2006-02-26 Julien MOUTTE <julien@moutte.net>
7873 * ext/libvisual/visual.c: (gst_visual_init),
7874 (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
7875 (plugin_init): Load only non GL plugins. Fix some memleaks and
7876 possible negotiation issues.
7878 2006-02-25 Julien MOUTTE <julien@moutte.net>
7880 * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
7882 2006-02-24 Michael Smith <msmith@fluendo.com>
7884 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
7885 (cmml_type_find), (plugin_init):
7886 Fix CMML type find function to not require a specific minor version
7889 Add an MPEG4 video elementary stream typefind function.
7891 2006-02-04 Michael Smith <msmith@fluendo.com>
7893 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
7894 (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
7895 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7896 (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
7897 (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
7898 (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
7899 Annodex support in ogg demuxer. Doesn't do very much without the
7900 other annodex patches (to come).
7902 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7904 Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
7906 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7907 Pick up palette for MS video v1 (#327028)
7909 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7911 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7912 (gst_ffmpegcsp_caps_remove_format_info),
7913 (gst_ffmpegcsp_get_unit_size):
7914 The 'palette_data' field from incoming RGB caps shouldn't be
7915 proxied on outgoing YUV caps; also, restrict unit size
7916 adjustment in case of paletted data only to the unit that
7917 actually has a palette. Fixes #330711.
7919 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7921 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7922 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
7923 (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
7924 (gst_ffmpegcsp_get_unit_size):
7925 Plug some memory leaks.
7927 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7929 * sys/ximage/Makefile.am:
7930 * sys/xvimage/Makefile.am:
7931 Add some _CFLAGS and _LIBS that seem to be missing
7932 and/or required for Cygwin (see #317048).
7934 2006-02-22 Wim Taymans <wim@fluendo.com>
7936 * ext/alsa/gstalsasrc.c:
7937 Fix description as pointed out by caugier.
7939 2006-02-22 Tommi Myöhänen <ext-tommi do myohanen at nokia dot com>
7941 Reviewed by : Edward Hervey <edward@fluendo.com>
7943 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
7945 Better 3gp typefinding (#331526).
7947 2006-02-21 Tim-Philipp Müller <tim at centricular dot net>
7949 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
7950 Don't send EOS event here, the base class will send one for us.
7952 * gst/playback/gstplaybasebin.c: (prepare_output):
7953 Subpictures without video stream aren't allowed either.
7955 * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
7956 Fix debug statement copy'n'paste-o.
7958 2006-02-21 Tim-Philipp Müller <tim at centricular dot net>
7960 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
7961 Fix issues with mixer keeping state when muting/unmuting
7962 and when changing the volume whilst muted (see #331763
7965 2006-02-20 Tim-Philipp Müller <tim at centricular dot net>
7967 * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
7968 (parse_subrip), (gst_sub_parse_format_autodetect):
7969 Set right caps given that we send escaped text. Also,
7970 honour <i></i>, <b></b> and <u></u> markers that can be found
7971 in .srt files (fixes #310202).
7973 2006-02-20 Tim-Philipp Müller <tim at centricular dot net>
7975 * gst-libs/gst/audio/mixerutils.c:
7976 (element_factory_rank_compare_func):
7977 Make order in which elements are tried more determinable.
7979 2006-02-20 Julien MOUTTE <julien@moutte.net>
7981 * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
7982 (remove_element_chain), (cleanup_decodebin),
7983 (gst_decode_bin_change_state): Make decodebin reusable by
7984 fixing remove_element_chain first and then introduce a
7985 cleaner in state change to ->NULL. (Closes #331678)
7987 2006-02-19 Wim Taymans <wim@fluendo.com>
7989 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
7990 use 0666 mask when creating files so umask gets applied
7991 correctly. Fixes #331295.
7993 2006-02-19 Tim-Philipp Müller <tim at centricular dot net>
7995 * gst/subparse/Makefile.am:
7996 * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
7997 (gst_ssa_parse_dispose), (gst_ssa_parse_init),
7998 (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
7999 (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
8000 (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
8001 (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
8002 * gst/subparse/gstssaparse.h:
8003 * gst/subparse/gstsubparse.c: (plugin_init):
8004 Add very basic parser for SSA subtitle streams (as often
8005 found in matroska files).
8007 2006-02-19 Tim-Philipp Müller <tim at centricular dot net>
8009 * gst/playback/gstdecodebin.c: (mimetype_is_raw):
8010 That should be text/x-pango-markup, not text/x-pango-layout.
8012 2006-02-19 Julien MOUTTE <julien@moutte.net>
8014 * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
8017 2006-02-19 Julien MOUTTE <julien@moutte.net>
8019 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
8020 (gst_text_overlay_finalize), (gst_text_overlay_init),
8021 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
8022 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
8023 (gst_text_overlay_text_event), (gst_text_overlay_video_event),
8024 (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
8025 (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
8026 Fix state change deadlock.
8028 2006-02-19 Julien MOUTTE <julien@moutte.net>
8030 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
8031 (gst_text_overlay_finalize), (gst_text_overlay_init),
8032 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
8033 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
8034 (gst_text_overlay_text_event), (gst_text_overlay_video_event),
8035 (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
8036 (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
8037 * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
8038 and subtitles files.
8040 2006-02-19 Julien MOUTTE <julien@moutte.net>
8042 * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
8043 should be considered as raw.
8045 2006-02-19 Julien MOUTTE <julien@moutte.net>
8047 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
8049 * gst/playback/gststreaminfo.h: Introduce language informations.
8051 2006-02-18 Jan Schmidt <thaytan@mad.scientist.com>
8053 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
8054 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
8055 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
8056 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
8057 Set shared memory segments to be deleted as soon as we have attached,
8058 that way they get cleaned up automatically if we crash.
8060 2006-02-18 Julien MOUTTE <julien@moutte.net>
8062 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text):
8063 * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
8064 functions are called with lock held.
8066 2006-02-18 Julien MOUTTE <julien@moutte.net>
8068 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
8069 (gst_text_overlay_finalize), (gst_text_overlay_init),
8070 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
8071 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
8072 (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
8073 (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
8074 (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
8075 (gst_text_overlay_change_state): Refactoring of textoverlay
8076 without collectpads. This now supports sparse subtitles coming
8077 from a demuxer instead of a sub file. Seeking is still broken
8078 though. Need to discuss with wtay some more on how to handle
8080 * ext/pango/gsttextoverlay.h:
8081 * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
8082 subtitles coming from the demuxer.
8084 2006-02-17 Wim Taymans <wim@fluendo.com>
8086 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
8087 (gst_vorbisenc_convert_sink):
8088 Use some more scaling functions.
8090 2006-02-17 Tim-Philipp Müller <tim at centricular dot net>
8092 * ext/cdparanoia/gstcdparanoiasrc.c:
8093 (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
8094 (gst_cd_paranoia_paranoia_callback),
8095 (gst_cd_paranoia_src_signal_is_being_watched),
8096 (gst_cd_paranoia_src_read_sector):
8097 * ext/cdparanoia/gstcdparanoiasrc.h:
8098 Add back 'transport-error' and 'uncorrected-error' signals and
8099 make them actually be fired when bad stuff happens (#319340).
8101 2006-02-17 Wim Taymans <wim@fluendo.com>
8103 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
8104 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
8105 (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
8106 (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
8107 (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
8108 (gst_ring_buffer_pause), (gst_ring_buffer_stop),
8109 (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
8110 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
8111 (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
8112 (gst_ring_buffer_clear):
8114 Added some G_LIKELY.
8116 2006-02-17 Wim Taymans <wim@fluendo.com>
8118 * gst-libs/gst/audio/TODO:
8121 * gst-libs/gst/audio/gstbaseaudiosink.c:
8122 (gst_base_audio_sink_get_offset):
8123 When trying to play samples ASAP and we don't have a
8124 previous sample, try to play at position 0 instead of
8125 an invalid position.
8127 2006-02-17 Wim Taymans <wim@fluendo.com>
8129 * ext/alsa/gstalsasink.c: (gst_alsasink_open),
8130 (gst_alsasink_reset):
8131 Also release lock when we get an error in _reset();
8132 fix an error message.
8134 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8136 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
8137 (gst_alsasink_init), (get_channel_free_structure),
8138 (caps_add_channel_configuration), (gst_alsasink_getcaps),
8139 (gst_alsasink_close):
8140 * ext/alsa/gstalsasink.h:
8141 Add support for more than 2 channels (#326720).
8143 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8145 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8146 Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
8147 with 4 or 6 channels, assume a default channel layout to make things
8148 work (not sure there's anything else we can do in those cases).
8150 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8152 * gst-libs/gst/audio/multichannel.c:
8155 * gst-libs/gst/riff/Makefile.am:
8156 * gst-libs/gst/riff/riff-ids.h:
8157 * gst-libs/gst/riff/riff-media.c:
8158 (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
8159 Add support for WAVEFORMATEX, eg. PCM audio with more than two
8160 channels and a channel layout map.
8162 2006-02-16 Mathieu Garcia <b0nk at free dot fr>
8164 Reviewed by Edward Hervey <edward@fluendo.com>
8166 * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA):
8167 C-level optimization of the RGBA nearest neighbour function.
8168 Eventually this might end up in liboil with vectorized versions.
8170 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8172 * gst-libs/gst/audio/multichannel.c:
8173 (gst_audio_get_channel_positions):
8174 When we have more than 2 channels, but no channel layout is
8175 specified in the caps, return some default channel layout
8176 to the caller and warn about about a possibly buggy element
8177 (could be buggy filtercaps as well of course) (#317038).
8179 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8181 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
8182 Add gst-libs/gst/cdda to list of lib search paths.
8184 2006-02-15 Andy Wingo <wingo@pobox.com>
8186 * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
8187 timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
8188 to the Lord Jesus that I do not have to touch the ogg muxer ever
8191 2006-02-15 Edward Hervey <edward@fluendo.com>
8193 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
8194 quicktime movie files can also contain 'uuid' atoms.
8196 2006-02-14 Tim-Philipp Müller <tim at centricular dot net>
8198 * gst/audioconvert/plugin.c: (plugin_init):
8199 Register the GstAudioChannelPosition enum type with the type
8200 system in the plugin_init function, so that it is known before
8201 any element actually makes use of multi-channel stuff. This is
8202 required for example if one wants to be able to deserialise/use
8203 a caps string with channel positions before any pipeline has
8204 been setup and started, like with gst-launch.
8206 2006-02-14 Wim Taymans <wim@fluendo.com>
8208 * gst-libs/gst/audio/gstringbuffer.c:
8209 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
8210 (gst_ring_buffer_samples_done), (wait_segment),
8211 (gst_ring_buffer_commit), (gst_ring_buffer_clear):
8212 Add some compiler G_(UN_)LIKELY help.
8213 SIGNAL the ringbuffer waiters when going to PAUSED as well to
8214 make sure they can exit their functions. Should fix #330748
8216 2006-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
8221 * win32/common/_stdint.h:
8222 Windows does not have long long; copy the generated _stdint.h
8223 * win32/common/interfaces-enumtypes.c:
8224 (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
8225 (gst_mixer_track_flags_get_type),
8226 (gst_tuner_channel_flags_get_type):
8227 * win32/common/multichannel-enumtypes.c:
8228 (gst_audio_channel_position_get_type):
8231 2006-02-13 Wim Taymans <wim@fluendo.com>
8233 * gst-libs/gst/audio/gstbaseaudiosink.c:
8234 (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
8235 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8236 Always sync on first sample we receive when starting.
8238 2006-02-13 Wim Taymans <wim@fluendo.com>
8240 * gst/playback/gstplaybin.c: (gen_vis_element):
8241 Update vis bin docs.
8242 Move queue after tee so we don't queue video buffers but
8243 audio samples instead. Fixes problems where the video queue
8244 is filled and the audio queue empty.
8246 2006-02-13 Tim-Philipp Müller <tim at centricular dot net>
8248 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
8249 No need to push an EOS event here, GstBaseSrc will do that for us
8250 when we return FLOW_UNEXPECTED.
8252 2006-02-12 Wim Taymans <wim@fluendo.com>
8254 * gst-libs/gst/audio/gstbaseaudiosink.c:
8255 (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
8256 (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
8257 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8258 Use scale functions when possible.
8260 Free clockid when after waiting for EOS.
8261 Use G_(UN_)LIKLY when it makes sense.
8262 Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
8264 2006-02-12 Edward Hervey <edward@fluendo.com>
8266 * gst/playback/gstplaybasebin.c: (prepare_output):
8267 Remove stray semi-colon (fixes #330888).
8269 2006-02-12 Jan Schmidt <thaytan@mad.scientist.com>
8271 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
8272 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
8273 Fix up the XShm call testing so that we catch errors, and don't
8274 cause new ones by attempting to detach from a segment we failed
8275 to attach to. Fixes #312439.
8277 2006-02-10 Edward Hervey <edward@fluendo.com>
8279 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
8280 Added flv file typefind (video/x-flv).
8282 2006-02-10 Edward Hervey <edward@fluendo.com>
8284 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
8285 (gst_riff_create_video_template_caps):
8286 Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
8287 Also added the caps to the default set of riff video caps.
8289 2006-02-09 Andy Wingo <wingo@pobox.com>
8291 * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
8292 time and the end time of the last packet in the page.
8293 (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
8294 on the pages in our queue, set the duration as well. Reflow a
8296 (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
8297 Fixes bad muxing order.
8299 2006-02-09 Thomas Vander Stichele <thomas at apestaart dot org>
8301 * gst-libs/gst/rtp/gstbasertppayload.c:
8302 (gst_basertppayload_setcaps), (gst_basertppayload_push):
8303 update seqnum before setting it on the packet; this makes sure
8304 that the timestamp and seqnum properties match after pushing
8307 2006-02-09 Andy Wingo <wingo@pobox.com>
8309 * gst-libs/gst/audio/gstringbuffer.c
8310 (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
8311 overflow after 13.5 hours of recording. Kapow!
8313 * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
8314 the buffer size -- we don't care about underrun/overrun reporting
8315 right now, just need to return a useful value.
8317 2006-02-09 Jan Schmidt <thaytan@mad.scientist.com>
8322 === release 0.10.3 ===
8324 2006-02-09 Jan Schmidt <thaytan@mad.scientist.com>
8327 releasing 0.10.3, "Under Pressure"
8329 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
8332 Drat. Bump libtool version number for new API.
8333 Prelease 0.10.2.3 (of 0.10.3)
8335 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
8338 * win32/common/config.h:
8339 0.10.2.2 prerelease (of 0.10.3).
8341 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
8343 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
8344 Revert Andy's newsegment change pending a more correct
8347 2006-02-08 Thomas Vander Stichele <thomas at apestaart dot org>
8349 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
8350 (qt_type_find), (plugin_init):
8351 detect more files as 3gp
8352 group and reorder the iso file formats
8354 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8356 * ext/vorbis/vorbis.c: (plugin_init):
8357 Register musicbrainz tags, so apps don't have to.
8359 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8361 * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
8362 (gst_tag_to_vorbis_tag):
8363 Make sure we called gst_tag_register_musicbrainz_tags()
8364 before possibly mapping a vorbiscomment string from/to a
8367 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8369 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
8370 In case we can't find the required number of consecutive
8371 mpeg audio frames to positively identify an MPEG audio
8372 stream, check if there's at least a valid mpeg audio
8373 frame right at offset 0 and if so suggest mpeg/audio
8374 caps with a very low probability (#153004).
8376 2006-02-07 Andy Wingo <wingo@pobox.com>
8378 * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
8379 a TIME segment if we get timestamped buffers. Requires recent
8380 fixes in core to work properly.
8382 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8384 * gst/playback/gstplaybasebin.c: (prepare_output):
8385 Don't print the URI as part of the error message, it
8386 makes error dialogs look rather ugly, especially if
8387 the URI is very long or has characters in it that
8390 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8392 * gst/playback/gstplaybasebin.c: (prepare_output):
8393 Error out if we have only text or subtitles, but nothing
8394 else. Also error out if we have subtitles but no video
8397 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8399 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
8400 Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
8401 Post an error message on the bus when we encounter an
8402 error, which will hopefully be more meaningful than the
8403 'Internal Flow Error' message users get to see if we
8404 just return GST_FLOW_ERROR.
8406 2006-02-07 Andy Wingo <wingo@pobox.com>
8408 * configure.ac (GST_MAJORMINOR): Update core version req to
8409 0.10.2.2, for the collectpads API addition (#330244).
8411 2006-02-06 Tim-Philipp Müller <tim at centricular dot net>
8413 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8414 Return FALSE from plugin_init() when GnomeVFS can't
8415 be initialised for some reason (#328423).
8417 2006-02-06 Julien MOUTTE <julien@moutte.net>
8419 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event):
8420 Stick to seeking theory until i find the bug.
8421 * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
8423 2006-02-06 Jan Schmidt <thaytan@mad.scientist.com>
8425 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8426 (theora_enc_finalize), (theora_enc_sink_setcaps),
8427 (theora_set_header_on_caps), (theora_enc_chain),
8428 (theora_enc_change_state):
8429 * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
8430 Make theoraenc and the tests leak free. Like, really.
8432 2006-02-06 Jan Schmidt <thaytan@mad.scientist.com>
8434 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8435 (theora_enc_finalize), (theora_enc_sink_setcaps):
8436 Add a finalize method to ensure we clean up state even if
8437 someone omitted the state change back to NULL.
8439 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
8440 (gst_vorbisenc_chain):
8441 Free some more leaked bits.
8443 * tests/check/pipelines/theoraenc.c: (start_pipeline),
8445 Wait for state changes to happen if they're ASYNC.
8447 This ought to teach those fancy pants buildbots a lesson.
8449 2006-02-05 Jan Schmidt <thaytan@mad.scientist.com>
8451 * gst-libs/gst/tag/gstid3tag.c:
8452 Add mapping for ID3 International Standard Recording Code
8455 2006-02-05 Jan Schmidt <thaytan@mad.scientist.com>
8457 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
8458 Don't leak tag names.
8460 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8462 * docs/libs/gst-plugins-base-libs-docs.sgml:
8463 * docs/libs/gst-plugins-base-libs-sections.txt:
8464 * gst-libs/gst/tag/gstid3tag.c:
8465 * gst-libs/gst/tag/gstvorbistag.c:
8466 * gst-libs/gst/tag/tags.c:
8467 Split libgsttag docs into multiple sections.
8469 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8471 * docs/libs/Makefile.am:
8472 * docs/libs/gst-plugins-base-libs-docs.sgml:
8473 * docs/libs/gst-plugins-base-libs-sections.txt:
8474 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
8475 * gst-libs/gst/tag/gstvorbistag.c:
8476 * gst-libs/gst/tag/tag.h:
8477 * gst-libs/gst/tag/tags.c:
8478 Add libgsttag to the docs.
8480 2006-02-05 Julien MOUTTE <julien@moutte.net>
8482 * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
8483 (gst_text_overlay_init), (gst_text_overlay_src_event),
8484 (gst_text_overlay_collected): Fix clockoverlay.
8486 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8488 * docs/libs/compiling.sgml:
8489 Fix typo: it's pkg-config, not pkg-gconfig
8491 * docs/libs/gst-plugins-base-libs-docs.sgml:
8492 * docs/libs/gst-plugins-base-libs-sections.txt:
8493 * docs/libs/tmpl/gstgconf.sgml:
8494 There is no libgstgconf in 0.10, remove it
8497 2006-02-05 Julien MOUTTE <julien@moutte.net>
8499 * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
8500 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
8501 (gst_text_overlay_src_event), (gst_text_overlay_collected):
8502 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
8503 (gst_sub_parse_class_init), (gst_sub_parse_init),
8504 (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
8505 (parse_mpsub), (parser_state_init), (handle_buffer),
8506 (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
8507 * gst/subparse/gstsubparse.h: Introduce seeking code.
8509 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8511 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
8512 Add comment about LANGUAGE tag inconsistency (we want
8513 ISO-639-1, but extract three-letter identifiers?)
8516 Add two translatable files.
8518 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8520 * gst-libs/gst/tag/Makefile.am:
8521 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
8522 * gst-libs/gst/tag/tag.h:
8523 * gst-libs/gst/tag/tags.c:
8524 (gst_tag_register_musicbrainz_tags_internal),
8525 (gst_tag_register_musicbrainz_tags):
8526 Forward-port some tags stuff from the 0.8 branch. This is
8527 mostly the addition of musicbrainz tags and their mapping
8528 to vorbistags, and a vorbistag mapping of the language tag.
8530 2006-02-05 Julien MOUTTE <julien@moutte.net>
8532 * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
8535 2006-02-04 David Schleef <ds@schleef.org>
8537 * ext/ogg/gstoggmux.c:
8538 * gst/typefind/gsttypefindfunctions.c:
8539 Add Dirac typefinding and add dirac format to oggmux.
8541 2006-02-03 Tim-Philipp Müller <tim at centricular dot net>
8543 * gst/playback/gstdecodebin.c: (try_to_link_1):
8544 Don't put essential function call into
8545 g_return_*() macro, otherwise it'll all be
8546 replaced by NOOPs when compiling with
8547 G_DISABLE_CHECKS defined.
8549 2006-02-03 Edgard Lima <edgard.lima@indt.org.br>
8551 * ext/ogg/gstoggdemux.c:
8552 * ext/ogg/gstoggparse.c:
8553 * gst/tcp/gsttcpserversink.c:
8554 * sys/v4l/v4lsrc_calls.c:
8555 * sys/v4l/v4lsrc_calls.h:
8556 Just make it compile with --disable-gst-debug.
8558 2006-02-03 Wim Taymans <wim@fluendo.com>
8560 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
8561 (gst_alsasink_class_init), (gst_alsasink_init),
8562 (gst_alsasink_write), (gst_alsasink_reset):
8563 * ext/alsa/gstalsasink.h:
8564 Add lock to protect alsa calls.
8565 Implement reset to flush samples ASAP, does not work
8568 2006-02-02 Wim Taymans <wim@fluendo.com>
8570 * gst-libs/gst/audio/gstbaseaudiosink.c:
8571 (gst_base_audio_sink_provide_clock):
8572 Ugh.. getting late I guess...
8574 2006-02-02 Wim Taymans <wim@fluendo.com>
8576 * gst-libs/gst/audio/gstbaseaudiosink.c:
8577 (gst_base_audio_sink_provide_clock),
8578 (gst_base_audio_sink_set_property),
8579 (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
8580 Don't try to provide a clock when we are not negotiated since
8581 we might not be able to make it run.
8583 2006-02-02 Tim-Philipp Müller <tim at centricular dot net>
8585 * gst/playback/gstdecodebin.c: (try_to_link_1):
8586 Unlinking two source pads is ... hard.
8588 2006-02-02 Wim Taymans <wim@fluendo.com>
8590 * gst-libs/gst/audio/TODO:
8593 * gst-libs/gst/audio/gstbaseaudiosink.c:
8594 (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
8595 On EOS, wait till the last sample is played before posting EOS.
8597 2006-02-01 Philippe Kalaf <burger at speedy dot org>
8599 * gst-libs/gst/rtp/gstbasertpdepayload.c:
8600 Patch by Kai Vehmanen : Adds ability to enable newsegment bypass by
8601 setting queue_delay to zero. Also avoid thread being started if
8602 queue_delay is zero.
8604 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8606 * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
8607 Make test work again by connecting fakesinks to each decoded pad,
8608 which makes the pipeline wait until each fakesink has a buffer
8609 queued before going to PAUSED state. At that point we know the
8610 decodebin pads are negotiated.
8612 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8614 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
8615 (gst_cdda_base_src_handle_event):
8616 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
8617 Pass unhandled queries to the parent class's query function.
8619 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8621 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
8622 (gst_ogg_pad_src_query):
8623 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
8624 * ext/theora/theoradec.c: (theora_dec_src_query),
8625 (theora_dec_sink_query):
8626 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
8627 (vorbis_dec_sink_query):
8628 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
8629 (gst_vorbisenc_sink_query):
8630 * gst/adder/gstadder.c: (gst_adder_query):
8631 Pass unhandled queries upstream instead of just
8632 dropping them (#326447). Also, fix supported
8633 query types list for some elements.
8635 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8637 * gst/typefind/gsttypefindfunctions.c: (au_type_find),
8638 (paris_type_find), (ilbc_type_find), (plugin_init):
8639 Fix typefinding for audio/x-au, audio/x-paris and
8640 audio/iLBC-sh. We cannot use the START_WITH macros
8641 here, because there can only be one typefind factory
8642 with the same name (caps), so the second one would
8643 replace the first one and the first one would never
8644 be called when doing typefinding (see #161712).
8647 2006-01-31 Wim Taymans <wim@fluendo.com>
8649 * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
8650 (vorbis_handle_header_packet), (vorbis_dec_push),
8651 (vorbis_handle_data_packet):
8652 Use scale_int when we can, add some more scaling.
8653 Check packettype before parsing it.
8655 2006-01-31 Wim Taymans <wim@fluendo.com>
8657 * ext/theora/theoradec.c: (_theora_granule_time),
8658 (theora_dec_src_convert), (theora_dec_sink_convert):
8659 Call right _scale functions.
8660 Use parameter instead of some other random value.
8662 2006-01-31 Wim Taymans <wim@fluendo.com>
8664 * ext/theora/theoradec.c: (_theora_granule_frame),
8665 (_theora_granule_time), (_inc_granulepos),
8666 (theora_dec_src_convert), (theora_dec_sink_convert),
8667 (theora_handle_type_packet), (theora_handle_data_packet),
8669 Use higher precision timestamps calculation.
8670 Convert some other conversions to _scale.
8672 2006-01-31 Stefan Kost <ensonic@users.sf.net>
8674 * gst/audiotestsrc/gstaudiotestsrc.c:
8675 (gst_audio_test_src_create_sine_table), (plugin_init):
8676 * gst/volume/gstvolume.c: (plugin_init):
8677 initialize gst_controller before using
8679 2006-01-31 Jan Schmidt <thaytan@mad.scientist.com>
8681 * tests/check/pipelines/theoraenc.c:
8682 * tests/check/pipelines/vorbisenc.c:
8683 Define constant using G_GINT64_CONSTANT to avoid errors when
8684 passing it around - otherwise it gets truncated to 32 bits.
8686 Fixes failing tests.
8688 2006-01-31 Andy Wingo <wingo@pobox.com>
8690 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
8691 caps being set doesn't have a framerate value. Basically a stopgap
8694 * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
8695 technically correct enough to put into core though.
8696 (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
8697 DURATION. Fixes theoraenc ! oggmux.
8699 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
8700 fraction, not double.
8702 2006-01-31 Sebastien Moutte <sebastien@moutte.net>
8705 add vs7 project files created by Sergey Scobich
8707 2006-01-30 Sebastien Moutte <sebastien@moutte.net>
8710 add vs8 project files created by Sergey Scobich
8712 2006-01-30 Andy Wingo <wingo@pobox.com>
8714 * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
8715 timestamp + duration, not just timestamp -- ogg pages should be
8716 ordered by stop time. Necessary fix given the change in vorbis
8719 * ext/theora/theoraenc.c (theora_enc_sink_setcaps)
8720 (gst_theora_enc_init): Pull the granule shift out of the encoder.
8721 (granulepos_add): New function, handles the messiness of adjusting
8723 (theora_buffer_from_packet):
8725 (theora_enc_sink_event): Use granulepos_add, not +.
8727 * tests/check/pipelines/theoraenc.c
8728 (check_buffer_granulepos_from_starttime): Just check the frame
8729 count, not the actual granulepos -- we can't dictate to the
8730 encoder when it should be placing keyframes.
8732 2006-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
8734 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
8735 SERVICE_NOT_AVAILABLE happens for example when you're trying to
8736 play an http:// stream from a server that's not serving
8738 2006-01-30 Andy Wingo <wingo@pobox.com>
8740 * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET):
8741 * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
8742 remove the UINT64_CONSTANT macro, doesn't appear to be needed or
8745 * ext/theora/gsttheoraenc.h:
8746 * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
8747 although theoraenc was timestamping correctly. Added handling of
8748 streams that start with nonzero timestamps.
8750 * tests/check/Makefile.am:
8751 * tests/check/pipelines/theoraenc.c: New file, basically does same
8754 * tests/check/pipelines/vorbisenc.c: I claim these bugs.
8756 2006-01-30 Wim Taymans <wim@fluendo.com>
8758 * gst-libs/gst/audio/gstaudiosink.c:
8759 (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
8760 (gst_audioringbuffer_pause):
8761 Implement pause that does not wait for completion.
8763 * gst-libs/gst/audio/gstbaseaudiosink.c:
8764 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8765 Don't drop buffers when going to PAUSED but perform preroll on
8766 remaining samples now that core base class supports this.
8768 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
8769 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
8770 (gst_ring_buffer_commit):
8771 Pause should not signal waiters.
8772 Implement return value of _commit correctly.
8774 2006-01-30 Andy Wingo <wingo@pobox.com>
8776 * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
8778 * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
8779 updated to timestamp from the first sample, not the last.
8780 (gst_vorbisenc_buffer_from_header_packet): New function, takes
8781 special care of granulepos and timestamp for header packets.
8782 (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
8783 when the first buffer has a nonzero timestamp.
8785 * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
8786 (GstVorbisEnc.subgranule_offset): New members. Take care of the
8787 case when the first audio buffer we get has a nonzero timestamp.
8788 (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
8789 properly timestamp vorbis buffers with the time of the first
8790 sample, not the last.
8792 * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
8793 vorbis_granule_time_copy -- now it takes the granule/subgranule
8794 offset into account.
8796 * tests/check/pipelines/vorbisenc.c: New test for correctness of
8797 timestamps, durations, and granulepos on buffers produced by
8800 2006-01-30 Jan Schmidt <thaytan@mad.scientist.com>
8802 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8803 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
8804 Patch from Eric Jonas to support conversions to/from UYVY
8807 2006-01-30 Julien MOUTTE <julien@moutte.net>
8809 * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
8810 (setup_subtitle), (setup_source), (set_active_source):
8811 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
8812 (gen_text_element), (gen_audio_element), (gen_vis_element),
8813 (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
8815 2006-01-29 Sebastien Moutte <sebastien@moutte.net>
8817 * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
8818 * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
8819 use gst_guint64_to_gdouble to be compliant with vs6
8820 * gst/playback/gstdecodebin.c: (try_to_link_1)
8821 * gst/videorate/videorate.c: (gst_video_rate_blank_data)
8822 use G_GINT64_CONSTANT for int64 constants
8823 * win32/common/libgstinterfaces.def:
8824 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
8826 update and add new project files
8828 2006-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
8832 * win32/common/interfaces-enumtypes.c:
8833 (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
8834 (gst_mixer_track_flags_get_type),
8835 (gst_tuner_channel_flags_get_type):
8836 * win32/common/interfaces-enumtypes.h:
8837 * win32/common/multichannel-enumtypes.c:
8838 (gst_audio_channel_position_get_type):
8839 * win32/common/multichannel-enumtypes.h:
8840 add a win32-update rule like in core, and copy over enumtypes files
8842 2006-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
8845 * win32/common/config.h:
8846 * win32/common/config.h.in:
8847 add config files just like in core
8849 2006-01-28 Tim-Philipp Müller <tim at centricular dot net>
8851 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
8852 Make gcc-4.1 happy (part of #327357).
8854 2006-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
8856 * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
8857 (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
8858 (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
8859 * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
8860 (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
8861 (gst_alsasrc_unprepare), (gst_alsasrc_read):
8862 Update all error messages. All of them should either use
8863 the default translated message, or actually provide a
8864 translatable string.
8865 Make the string for channel count problems meaningful.
8867 2006-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
8869 * sys/v4l/v4l_calls.c: (gst_v4l_open):
8870 check for and throw RESOURCE_BUSY
8872 2006-01-27 David Schleef <ds@schleef.org>
8874 * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
8875 checked in this change -- it requires liboil features not
8876 in 0.3.6. Revert parts.
8878 2006-01-27 David Schleef <ds@schleef.org>
8881 * configure.ac: update liboil requirement to 0.3.6
8882 * gst/videoscale/Makefile.am:
8883 * gst/videoscale/vs_scanline.c: liboilify
8885 2006-01-27 Jan Schmidt <thaytan@mad.scientist.com>
8887 * ext/libvisual/visual.c: (get_buffer):
8888 When pad_alloc returns a GstFlowReturn other
8889 than GST_FLOW_OK, make sure it is passed upstream.
8891 2006-01-27 Jan Schmidt <thaytan@mad.scientist.com>
8893 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
8894 (gst_alsasink_class_init):
8895 Free the device name string.
8897 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
8898 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
8899 (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
8900 Don't remove a pad from the collectpads structure until it
8901 is released - it's a request pad, and may receive data again
8902 if the element gets moved back to PLAYING state.
8904 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
8905 Ensure we turn on double buffering on the Xv port, and
8906 set the colour key to something dark and mysterious that
8909 2006-01-27 Thomas Vander Stichele <thomas at apestaart dot org>
8911 * ext/alsa/gstalsaplugin.c: (plugin_init):
8912 * ext/cdparanoia/gstcdparanoiasrc.c:
8913 (gst_cd_paranoia_src_base_init), (plugin_init):
8914 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8915 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
8916 - a library should not call setlocale. see "Libraries" node in
8918 - make sure all plugins that use translation do bindtextdomain
8919 to point to the localedir
8920 * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
8921 (setup_sinks), (plugin_init):
8922 all this, and check for NULL when creating sinks
8924 2006-01-27 Julien MOUTTE <julien@moutte.net>
8926 * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
8927 (plugin_init): Make typefinding of subtitles work again.
8929 2006-01-26 Tim-Philipp Müller <tim at centricular dot net>
8931 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
8932 (mp3_type_frame_length_from_header), (mp3_type_find),
8933 (wavpack_type_find), (m4a_type_find), (ircam_type_find),
8935 Backport a bunch of typefinding fixes from the 0.8 branch.
8936 Also, improve wavpack typefinding: if we can't peek the
8937 entire wavpack block, try to parse the bits we can get and
8938 see if we find what we're looking for in those.
8940 2006-01-26 Julien MOUTTE <julien@moutte.net>
8942 * sys/ximage/ximagesink.c:
8943 (gst_ximagesink_calculate_pixel_aspect_ratio):
8944 * sys/xvimage/xvimagesink.c:
8945 (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
8946 more cases of pixel aspect ratio.
8948 2006-01-26 Edward Hervey <edward@fluendo.com>
8950 * gst/playback/gstdecodebin.c: (pad_probe):
8951 Also consider the flush-start and tag events as unblockers
8954 2006-01-26 Julien MOUTTE <julien@moutte.net>
8956 * gst/playback/gstplaybin.c: (gst_play_bin_init),
8957 (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
8958 (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
8959 On the fly visualisation switch, works disabling, enabling as
8960 well but it won't be able to enable vis in a playbin that was
8961 created with no visualisation.
8963 2006-01-25 Wim Taymans <wim@fluendo.com>
8965 * gst-libs/gst/audio/gstbaseaudiosink.c:
8966 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8967 Undo previous commit that returned WRONG_STATE sooner, it breaks
8970 2006-01-25 Wim Taymans <wim@fluendo.com>
8972 * gst-libs/gst/audio/gstbaseaudiosink.c:
8973 (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
8974 (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
8976 Post error when caps cannot be parsed.
8977 Resync on discontinuity in the stream.
8978 Clip samples to segment boundaries.
8979 return WRONG_STATE sooner when we are flushing.
8981 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
8982 (gst_base_audio_src_get_time), (gst_base_audio_src_create):
8983 Make audiosrc operate in TIME.
8984 Set TIMESTAMP and DURATION on buffers.
8986 2006-01-24 Tim-Philipp Müller <tim at centricular dot net>
8988 * tests/examples/seek/seek.c: (main):
8989 Output tag messages as well.
8991 2006-01-23 Edward Hervey <edward@fluendo.com>
8993 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
8994 (free_pad_probes), (remove_fakesink), (pad_probe),
8995 (close_pad_link), (gst_decode_bin_change_state):
8996 Replace GstPadBlockCallback with pad probes that detect
8997 first buffer AND eos before removing fakesink.
8998 Fixes hang with demuxers doing EOS while pre-rolling.
9001 2006-01-23 Andy Wingo <wingo@pobox.com>
9003 * ext/alsa/gstalsasink.c:
9004 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9005 (gst_base_rtp_depayload_setcaps),
9006 (gst_base_rtp_depayload_add_to_queue),
9007 (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
9009 Patch by: Jens Granseuer <jensgr at gmx dot net>
9011 2006-01-22 Julien MOUTTE <julien@moutte.net>
9013 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
9014 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
9015 (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some
9016 frames. We might get a frame destroyed after changing state to
9017 NULL, adding a safety check on xcontext.
9019 2006-01-22 Tim-Philipp Müller <tim at centricular dot net>
9021 * gst-libs/gst/interfaces/xoverlay.c:
9022 Fix prepare-xwindow-id code example in the docs - we need to
9023 ignore all messages that aren't element messages as well.
9025 2006-01-21 Julien MOUTTE <julien@moutte.net>
9027 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
9028 I think one day i'll completely undestand how caps negotiation
9029 is supposed to work. This refactoring handles buffer_alloc
9030 called with caps we can't handle. We definitely don't want a
9031 set_caps with those caps, so we define and allocate a buffer
9032 we would like to receive.
9034 2006-01-19 Tim-Philipp Müller <tim at centricular dot net>
9036 * gst/playback/gstplaybasebin.c: (setup_source):
9037 Free iterator when done.
9039 2006-01-17 Jan Schmidt <thaytan@mad.scientist.com>
9041 * gst-libs/gst/audio/gstbaseaudiosink.c:
9042 (gst_base_audio_sink_render):
9043 Fix playback of non-synchronised streams by assuming a rate
9044 of 1.0 instead of a random one.
9046 Makes this work again:
9048 gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
9049 endianness=(int)4321, signed=(boolean)true, width=(int)16,
9050 depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
9051 audioresample ! alsasink
9053 === release 0.10.2 ===
9055 2006-01-16 Thomas Vander Stichele <thomas at apestaart dot org>
9058 releasing 0.10.2, "Then the devil is six"
9060 2006-01-16 Jan Schmidt <thaytan@mad.scientist.com>
9062 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
9063 * gst/playback/gststreamselector.c:
9064 (gst_stream_selector_set_property):
9065 Comment out broken code that connects to the state-changed signal.
9066 At this point, changing current stream selection is broken, but
9067 stuff like gst-launch playbin current-audio=1 works and filters
9068 to the chosen stream.
9070 2006-01-16 Thomas Vander Stichele <thomas at apestaart dot org>
9072 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
9073 Fix #327216 (null dereference in vorbisdec)
9075 2006-01-16 Tim-Philipp Müller <tim at centricular dot net>
9077 * ext/theora/theoradec.c: (theora_handle_comment_packet):
9078 Post taglist actually on bus instead of just freeing it
9079 (fixes #327114 and totem bug #327080).
9081 * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
9082 Use gst_element_found_tags_for_pad(), so that the tags
9083 are sent downstream as an event as well.
9085 2006-01-15 Thomas Vander Stichele <thomas at apestaart dot org>
9087 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
9088 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
9089 (gst_ximagesink_buffer_alloc):
9090 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
9091 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
9092 (gst_xvimagesink_buffer_alloc):
9093 move all regularly occurring messages to GST_LOG level
9094 add some more object logs
9096 2006-01-14 Thomas Vander Stichele <thomas at apestaart dot org>
9098 * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
9099 fix a silly segfault
9101 2006-01-14 Tim-Philipp Müller <tim at centricular dot net>
9103 * docs/libs/gst-plugins-base-libs-docs.sgml:
9104 * docs/libs/gst-plugins-base-libs-sections.txt:
9105 * gst-libs/gst/audio/mixerutils.c:
9106 * gst-libs/gst/audio/mixerutils.h:
9107 Add docs for mixerutils stuff.
9109 2006-01-13 Tim-Philipp Müller <tim at centricular dot net>
9111 * gst/playback/gstplaybasebin.c: (setup_source):
9112 Fix playback for sources that emit raw audio or
9113 raw video streams (e.g.: cd audio sources) (#325984).
9115 2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
9117 * gst-libs/gst/audio/mixerutils.c:
9118 (gst_audio_mixer_filter_do_filter):
9119 actually save the element we create
9121 2006-01-12 Tim-Philipp Müller <tim at centricular dot net>
9123 * gst-libs/gst/cdda/gstcddabasesrc.c:
9124 (gst_cdda_base_src_handle_track_seek):
9125 No need to post a tag message on the bus when seeking
9126 within the same track, only post it when the current
9129 2006-01-11 Jan Schmidt <thaytan@mad.scientist.com>
9131 * gst/playback/gstplaybasebin.c: (group_destroy),
9132 (probe_triggered), (new_decoded_pad), (mute_group_type),
9133 (set_active_source):
9134 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
9135 * gst/playback/gststreamselector.c:
9136 (gst_stream_selector_base_init),
9137 (gst_stream_selector_set_property),
9138 (gst_stream_selector_request_new_pad):
9139 Reenable stream selection. These mechanisms need a complete overhaul
9140 in the face of 0.8->0.10 changes though.
9142 2006-01-11 Jan Schmidt <thaytan@mad.scientist.com>
9144 * ext/ogg/gstoggdemux.c:
9145 Change the pad template to src_%d to match the pads that
9146 are created from it. decodebin needs this information in order
9147 to decide that oggdemux is capable of producing multiple pads
9148 (and hence needs queues inserted).
9150 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
9151 (gst_ogg_mux_collected):
9152 Make debug output more useful by using GST_PTR_FORMAT.
9154 2006-01-11 Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
9156 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
9158 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
9159 Set depth and width for alaw/mulaw (fixes #326601).
9161 2006-01-11 Thomas Vander Stichele <thomas at apestaart dot org>
9163 * tests/icles/Makefile.am:
9164 don't build the tests if we don't have the libs
9166 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
9168 * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
9169 (gst_cd_paranoia_paranoia_callback):
9170 Don't try to free NULL pointers.
9172 2006-01-10 Edward Hervey <edward@fluendo.com>
9174 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
9175 (gst_audio_rate_change_state), (plugin_init):
9176 Add debugging category.
9178 Add case for incoming buffers without valid offset/offset_end.
9180 2006-01-10 Michael Smith <msmith@fluendo.com>
9182 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
9183 Don't leak GCond in audio sources.
9185 2006-01-10 Jan Schmidt <thaytan@mad.scientist.com>
9187 * gst/playback/gstplaybin.c: (gen_audio_element):
9188 Don't leak an autoaudiosink/alsasink when we generate
9189 a new audio element. (old code, I guess)
9191 2006-01-10 Michael Smith <msmith@fluendo.com>
9193 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
9194 Support float audio in audiorate.
9195 Use width rather than depth for selecting sample width.
9197 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
9199 * gst/videotestsrc/videotestsrc.h:
9200 Use GLib types here (that way we don't have to include the
9201 generated _stdint.h header, which makes life easier for win32
9202 folks that don't use autotools for the build) (#325990, patch
9203 by: Sergey Scobich).
9205 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
9207 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
9208 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
9209 (gst_ring_buffer_pause), (wait_segment):
9210 * gst-libs/gst/audio/gstringbuffer.h:
9211 Name (private) union, makes Forte compiler happy (this time
9212 for real) (#324900).
9214 2006-01-09 Tim-Philipp Müller <tim at centricular dot net>
9216 * gst-libs/gst/audio/Makefile.am:
9217 Link against libgstinterfaces, needed for mixer
9218 and property probe stuff.
9220 2006-01-09 Edward Hervey <edward@fluendo.com>
9222 * gst-libs/gst/Makefile.am:
9224 2006-01-09 Tim-Philipp Müller <tim at centricular dot net>
9226 * gst-libs/gst/audio/Makefile.am:
9227 * gst-libs/gst/audio/mixerutils.c:
9228 (gst_audio_mixer_filter_do_filter),
9229 (gst_audio_mixer_filter_check_element),
9230 (gst_audio_mixer_filter_probe_feature),
9231 (element_factory_rank_compare_func),
9232 (gst_audio_default_registry_mixer_filter):
9233 * gst-libs/gst/audio/mixerutils.h:
9234 Add gst_audio_default_registry_mixer_filter() utility
9237 2006-01-03 Michael Smith <msmith@fluendo.com>
9239 * gst/audioresample/resample.h:
9240 As before, but for o_buf
9242 2006-01-03 Michael Smith <msmith@fluendo.com>
9244 * gst/audioresample/resample.h:
9245 Declare struct _ResampleState.buffer as unsigned char *, not void *,
9246 since we do arithmetic on it.
9248 2006-01-02 Tim-Philipp Müller <tim at centricular dot net>
9250 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
9251 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
9252 (gst_ring_buffer_pause), (wait_segment):
9253 * gst-libs/gst/audio/gstringbuffer.h:
9254 Sun's Forte compiler doesn't seem to like anonymous structs,
9255 so use same setup as in GstBaseSrc (fixes #324900).
9257 2005-12-30 Stefan Kost <ensonic@users.sf.net>
9260 * gst/volume/Makefile.am:
9261 * gst/volume/demo.c:
9262 move old example to tests/examples/volume/volune.c
9263 * tests/examples/Makefile.am:
9264 * tests/examples/seek/seek.c: (main):
9265 change window-close event from "delete-event" to "destroy"
9266 * tests/examples/volume/Makefile.am:
9267 * tests/examples/volume/volume.c: (value_changed_callback),
9268 (setup_gui), (message_received), (eos_message_received), (main):
9269 fix event handling and bus usage
9271 2005-12-29 Stefan Kost <ensonic@users.sf.net>
9273 * gst/audiotestsrc/gstaudiotestsrc.c:
9274 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
9275 (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
9276 (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
9277 (gst_audio_test_src_create_square),
9278 (gst_audio_test_src_create_saw),
9279 (gst_audio_test_src_create_triangle),
9280 (gst_audio_test_src_create_silence),
9281 (gst_audio_test_src_create_white_noise),
9282 (gst_audio_test_src_create_pink_noise),
9283 (gst_audio_test_src_init_sine_table),
9284 (gst_audio_test_src_create_sine_table),
9285 (gst_audio_test_src_change_wave),
9286 (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
9287 (gst_audio_test_src_create), (gst_audio_test_src_set_property):
9288 * gst/audiotestsrc/gstaudiotestsrc.h:
9289 update to basesrc changes, implement segmented seeking and eos
9290 handling, add a 'sine-tab' waveform for performance critical playback
9292 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9295 ... and this time the other modified file that I missed last time.
9297 2005-12-29 Michael Smith <msmith@fluendo.com>
9299 * gst/playback/gstdecodebin.c: (new_pad):
9300 Fix non-C89 variable declaration not at the start of a block. Should
9301 help some compilers.
9303 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9305 * tests/check/Makefile.am:
9306 And now fix 'make distcheck' (builddir != srcdir)
9308 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9311 * ext/cdparanoia/Makefile.am:
9312 * ext/cdparanoia/gstcdparanoia.c:
9313 * ext/cdparanoia/gstcdparanoia.h:
9314 * ext/cdparanoia/gstcdparanoiasrc.c:
9315 (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
9316 (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
9317 (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
9318 (gst_cd_paranoia_paranoia_callback),
9319 (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
9320 (gst_cd_paranoia_src_set_property),
9321 (gst_cd_paranoia_src_get_property), (plugin_init):
9322 * ext/cdparanoia/gstcdparanoiasrc.h:
9323 New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
9324 plugin again (there are still fixes required to playbin to make
9325 cdda:// uris work there).
9327 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9329 * tests/check/Makefile.am:
9330 Fix test case compilation.
9332 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9334 * gst-libs/gst/cdda/gstcddabasesrc.c:
9335 (gst_cdda_base_src_update_duration),
9336 (gst_cdda_base_src_calculate_cddb_id):
9337 An integer is not a string. Fix access to uninitialised variable.
9339 * tests/check/Makefile.am:
9340 Add cddabasesrc unit test; also actually enable the vorbis test.
9342 * tests/check/generic/states.c:
9343 Blacklist new cd audio elements as well.
9345 * tests/check/libs/cddabasesrc.c:
9346 Unit test for GstCddaBaseSrc (discid calculation mostly).
9348 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
9350 * docs/libs/Makefile.am:
9351 * docs/libs/gst-plugins-base-libs-docs.sgml:
9352 * docs/libs/gst-plugins-base-libs-sections.txt:
9353 * docs/libs/gst-plugins-base-libs.types:
9354 Add docs for libgstcdda/GstCddaBaseSrc.
9356 * gst-libs/gst/interfaces/mixertrack.h:
9357 Do one struct member per line with a semicolon at the end, that way
9358 even gtk-doc might parse it without complaining.
9360 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
9363 * gst-libs/gst/Makefile.am:
9364 * gst-libs/gst/cdda/Makefile.am:
9365 * gst-libs/gst/cdda/base64.c:
9366 * gst-libs/gst/cdda/base64.h:
9367 * gst-libs/gst/cdda/gstcddabasesrc.c:
9368 (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
9369 (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
9370 (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
9371 (gst_cdda_base_src_get_property),
9372 (gst_cdda_base_src_get_track_from_sector),
9373 (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
9374 (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
9375 (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
9376 (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
9377 (gst_cdda_base_src_uri_get_protocols),
9378 (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
9379 (gst_cdda_base_src_uri_handler_init),
9380 (gst_cdda_base_src_setup_interfaces),
9381 (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
9382 (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
9383 (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
9384 (gst_cdda_base_src_add_tags),
9385 (gst_cdda_base_src_add_index_associations),
9386 (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
9387 (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
9388 (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
9389 (gst_cdda_base_src_create):
9390 * gst-libs/gst/cdda/gstcddabasesrc.h:
9391 * gst-libs/gst/cdda/sha1.c:
9392 * gst-libs/gst/cdda/sha1.h:
9393 Add new libgstcdda with GstCddaBaseSrc class.
9395 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
9397 * ext/gnomevfs/gstgnomevfssink.h:
9398 Use GstBaseSinkClass as parent_class member for class struct, not
9401 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
9403 Patch by: Michael Benes
9405 * gst/videotestsrc/gstvideotestsrc.c:
9406 (gst_video_test_src_class_init), (gst_video_test_src_start):
9407 Add start method to reset running time and number of frames sent
9408 when starting up (fixes #324696)
9410 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
9412 * docs/plugins/Makefile.am:
9413 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9414 * docs/plugins/gst-plugins-base-plugins-sections.txt:
9415 * docs/plugins/gst-plugins-base-plugins.args:
9416 * docs/plugins/gst-plugins-base-plugins.hierarchy:
9417 * docs/plugins/gst-plugins-base-plugins.signals:
9418 Add docs stuff for gnomevfssrc and gnomevfssink.
9420 * ext/gnomevfs/gstgnomevfssrc.c:
9421 Fix example pipeline in gtk-doc blurb.
9423 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
9425 * ext/gnomevfs/Makefile.am:
9426 * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
9427 (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
9428 (gst_gnome_vfs_handle_get_type), (plugin_init):
9429 * ext/gnomevfs/gstgnomevfs.h:
9430 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
9431 (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
9432 (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
9433 (gst_gnome_vfs_sink_set_property),
9434 (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
9435 (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
9436 (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
9437 (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
9438 (gst_gnome_vfs_sink_uri_get_type),
9439 (gst_gnome_vfs_sink_uri_get_protocols),
9440 (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
9441 (gst_gnome_vfs_sink_uri_handler_init):
9442 * ext/gnomevfs/gstgnomevfssink.h:
9443 Port gnomevfssink; add gtk-doc blurb.
9445 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
9446 (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
9447 (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
9448 (gst_gnome_vfs_src_uri_get_type),
9449 (gst_gnome_vfs_src_uri_get_protocols),
9450 (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
9451 (gst_gnome_vfs_src_uri_handler_init),
9452 (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
9453 (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
9454 (gst_gnome_vfs_src_send_additional_headers_callback),
9455 (gst_gnome_vfs_src_received_headers_callback),
9456 (gst_gnome_vfs_src_push_callbacks),
9457 (gst_gnome_vfs_src_pop_callbacks),
9458 (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
9459 (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
9460 (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
9461 * ext/gnomevfs/gstgnomevfssrc.h:
9462 s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
9463 file; add gtk-doc blurb with example pipelines.
9465 === release 0.10.1 ===
9467 2005-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
9470 releasing 0.10.1, "Dobro Dedek"
9472 2005-12-21 Edgard Lima <edgard.lima@indt.org.br>
9474 * gst/typefind/gsttypefindfunctions.c:
9475 iLBC30 and iLBC20 added to typefind.
9477 2005-12-20 Thomas Vander Stichele <thomas at apestaart dot org>
9479 * gst-libs/gst/audio/gstbaseaudiosink.c:
9480 (gst_base_audio_sink_class_init):
9481 * gst-libs/gst/audio/gstbaseaudiosrc.c:
9482 (gst_base_audio_src_class_init):
9483 update strings, values are in microseconds
9484 change the default sink buffer time to something that is smaller
9485 (to help software volume mixing have a slightly lower delay) but
9486 still be acceptable on Wim's laptop
9488 2005-12-20 Edward Hervey <edward@fluendo.com>
9490 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
9491 Made a quack, forgot to add DUCK to the riff video template.
9493 2005-12-19 Edward Hervey <edward@fluendo.com>
9495 * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
9496 (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
9497 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
9498 (gst_ogm_parse_chain):
9499 Make sure pads are initialized correctly.
9500 * gst-libs/gst/riff/riff-ids.h:
9501 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
9502 (gst_riff_create_video_template_caps):
9503 Add a whole bunch of FOURCC <=> MimeType.
9504 Extend the riff video pad template to support the newly added fourcc.
9506 2005-12-18 Jan Schmidt <thaytan@mad.scientist.com>
9508 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
9509 (gst_ogg_demux_activate_chain):
9510 Extra debug output when activating/deactivating chains.
9512 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
9513 (is_demuxer_element), (try_to_link_1), (remove_element_chain),
9515 Remove a queue from our list when it becomes unlinked.
9516 Don't add queues to elements in class 'Demux' if they
9517 can only produce one pad
9519 2005-12-18 Julien MOUTTE <julien@moutte.net>
9521 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
9522 (gst_video_sink_get_type): Add a debug category.
9524 2005-12-17 Philippe Khalaf <burger@speedy.org>
9526 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9527 (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
9528 Handle downstream newsegment by sending our own newsegment before the
9529 next buffer to be released. (#323900)
9531 2005-12-17 Philippe Khalaf <burger@speedy.org>
9533 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9534 (gst_base_rtp_depayload_set_gst_timestamp):
9535 add queue delay to new segment as well (as opposed to just the first
9536 buffer). (bug #322347)
9538 2005-12-16 Stefan Kost <ensonic@users.sf.net>
9540 * ext/libvisual/visual.c: (make_valid_name):
9541 change some char* into char[]
9542 * gst/audiotestsrc/gstaudiotestsrc.c:
9543 (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
9544 (gst_audio_test_src_create):
9545 * gst/audiotestsrc/gstaudiotestsrc.h:
9546 prepare to handle EOS and SEGMENT_DONE
9548 2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
9550 * tests/check/generic/states.c: (GST_START_TEST):
9551 Blacklist cdparanoia element in state test.
9553 2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
9555 Patch by: Benjamin Pineau
9558 * gst/tcp/gsttcpclientsink.c:
9559 * gst/tcp/gsttcpserversink.c:
9560 * gst/tcp/gsttcpserversrc.c:
9561 Add <string.h> includes for memset and FD_ZERO (fixes #323878)
9563 2005-12-15 Michael Smith <msmith@fluendo.com>
9565 * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
9566 (gst_video_rate_chain):
9567 Fix timestamping for videorate when the first buffer it sees has a
9568 non-zero timestamp. Fix some misleading debug output.
9570 2005-12-15 Michael Smith <msmith@fluendo.com>
9572 * gst/audioresample/gstaudioresample.c:
9573 Don't leak all input buffers to audioresample.
9575 2005-12-15 Tim-Philipp Müller <tim at centricular dot net>
9577 * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
9578 Don't operate on empty text buffers. Strip newlines and
9579 tabs only from the end of the text, but leave them intact
9580 in the middle. Fix typo in gtk-doc description.
9582 2005-12-15 Tim-Philipp Müller <tim at centricular dot net>
9584 * gst/playback/gstplaybasebin.c:
9585 * gst/playback/gstplaybin.c: (handoff):
9586 Make sure the video frame buffer we return to apps via the
9587 "frame" property always has caps set on it. Modify
9588 _gst_gvalue_set_object() macro to handle NULL objects
9591 2005-12-14 Stefan Kost <ensonic@users.sf.net>
9593 * gst/audiotestsrc/gstaudiotestsrc.c:
9594 (gst_audio_test_src_class_init), (gst_audio_test_src_init),
9595 (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
9596 (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
9597 (gst_audio_test_src_create):
9598 * gst/audiotestsrc/gstaudiotestsrc.h:
9599 Adjust to some recent api changes and add wtays new cool seeking
9602 2005-12-14 Tim-Philipp Müller <tim at centricular dot net>
9604 * ext/alsa/Makefile.am:
9605 * ext/alsa/gstalsadeviceprobe.c:
9606 * ext/alsa/gstalsadeviceprobe.h:
9607 Helper functions to add device probing via the GstPropertyProbe
9608 interface to a class.
9610 * ext/alsa/gstalsamixer.h:
9611 Comment out GST_ALSA_MIXER, it returns a struct that's not
9614 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
9615 Add some debug info.
9617 * ext/alsa/gstalsamixerelement.c:
9618 (gst_alsa_mixer_element_interface_supported),
9619 (gst_implements_interface_init),
9620 (gst_alsa_mixer_element_init_interfaces),
9621 (gst_alsa_mixer_element_class_init),
9622 (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
9623 (gst_alsa_mixer_element_set_property),
9624 (gst_alsa_mixer_element_get_property),
9625 (gst_alsa_mixer_element_change_state):
9626 * ext/alsa/gstalsamixerelement.h:
9627 Add 'device' and 'device-name' properties. Add GstPropertyProbe
9628 for device handling (gnome-volume-control will need that).
9630 2005-12-12 Christian Schaller <uraeus@gnome.org>
9632 * ext/Makefile.am: fix cdparanoia entry
9633 * gst-plugins-base.spec.in: add cdparanoia
9635 2005-12-12 Michael Smith <msmith@fluendo.com>
9637 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
9638 Use the correct function to free list of typefind factories.
9640 2005-12-12 Wim Taymans <wim@fluendo.com>
9642 * gst/videotestsrc/gstvideotestsrc.c:
9643 (gst_video_test_src_class_init), (gst_video_test_src_init),
9644 (gst_video_test_src_parse_caps), (gst_video_test_src_query),
9645 (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
9646 (gst_video_test_src_create):
9647 * gst/videotestsrc/gstvideotestsrc.h:
9648 Implement seeking in videotestsrc.
9651 2005-12-12 Wim Taymans <wim@fluendo.com>
9653 * ext/cdparanoia/Makefile.am:
9654 * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
9655 (gst_paranoia_endian_get_type), (_do_init),
9656 (cdparanoia_class_init), (cdparanoia_init),
9657 (cdparanoia_set_property), (cdparanoia_get_property),
9658 (cdparanoia_do_seek), (cdparanoia_is_seekable),
9659 (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
9660 (cdparanoia_convert), (cdparanoia_get_query_types),
9661 (cdparanoia_query), (cdparanoia_set_index),
9662 (cdparanoia_uri_set_uri):
9663 * ext/cdparanoia/gstcdparanoia.h:
9664 Partially ported cdparanoia now that basesrc can support a
9667 2005-12-12 Wim Taymans <wim@fluendo.com>
9669 * tests/examples/seek/scrubby.c: (main):
9670 Set higher priority for bus events so they don't get reordered with
9673 * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
9674 (flush_toggle_cb), (main):
9675 Added checkbox to disable flushing seeks.
9676 Disable scrubbing when doing non flushing seeks.
9678 2005-12-12 Tim-Philipp Müller <tim at centricular dot net>
9680 * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
9681 (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
9682 (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
9683 (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
9684 Implement some sort of event handling that doesn't rely on
9685 g_return_if_fail; make sure we always push the last chunk of an
9686 .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
9687 state change function; remove some old cruft. Seeking is still
9688 rather unlikely to work though.
9693 2005-12-11 Julien MOUTTE <julien@moutte.net>
9695 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
9696 Fixed a leak of the current image reference when cleaning up.
9697 Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
9699 2005-12-09 Michael Smith <msmith@fluendo.com>
9701 * tools/Makefile.am:
9702 * tools/gst-launch-ext-m.m:
9703 Remove gst-launch-ext. It doesn't work, and is no longer
9704 particularly useful.
9706 2005-12-08 Luca Ognibene <luogni@tin.it>
9708 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
9709 don't pass random values to ogmparse convert function.
9710 Make seeking possible in the exile1.ogm file.
9712 2005-12-07 Tim-Philipp Müller <tim at centricular dot net>
9714 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
9715 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
9716 Work around refcount problem with g_value_set_object() that occur
9717 if the core has been compiled against GLib-2.6 (g_value_set_object()
9718 will only g_object_ref() the element, but the caller will
9719 gst_object_unref() it and bad things will happen due to the way
9720 GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
9721 totem for people on FC4 using Thomas's 0.10 RPMs.
9723 2005-12-07 Edward Hervey <edward@fluendo.com>
9725 Time to welcome ogm to 0.10 :)
9727 * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
9728 (gst_ogg_pad_typefind):
9729 Oggdemux can now properly typefind elements with dynamic pads.
9730 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
9731 Properly set caps on src pad, and set caps on outgoing buffers.
9733 2005-12-06 Thomas Vander Stichele <thomas at apestaart dot org>
9735 * ext/alsa/gstalsamixer.h:
9736 * ext/alsa/gstalsamixerelement.h:
9737 * ext/alsa/gstalsamixeroptions.h:
9738 * ext/alsa/gstalsamixertrack.h:
9739 * ext/alsa/gstalsasink.c:
9740 * ext/alsa/gstalsasink.h:
9741 * ext/alsa/gstalsasrc.c:
9742 * ext/alsa/gstalsasrc.h:
9743 * ext/cdparanoia/gstcdparanoia.h:
9744 * ext/gnomevfs/gstgnomevfsuri.h:
9745 * ext/ogg/gstoggdemux.c:
9746 * ext/ogg/gstoggmux.c:
9747 * ext/pango/gsttextoverlay.h:
9748 * ext/theora/theoradec.c:
9749 * ext/theora/theoraenc.c:
9750 * ext/vorbis/vorbisdec.h:
9751 * ext/vorbis/vorbisenc.c:
9752 * ext/vorbis/vorbisenc.h:
9753 * ext/vorbis/vorbisparse.h:
9754 * gst-libs/gst/audio/gstaudioclock.h:
9755 * gst-libs/gst/audio/gstaudiosink.c:
9756 * gst-libs/gst/audio/gstaudiosink.h:
9757 * gst-libs/gst/audio/gstaudiosrc.c:
9758 * gst-libs/gst/audio/gstaudiosrc.h:
9759 * gst-libs/gst/audio/gstbaseaudiosink.c:
9760 * gst-libs/gst/audio/gstbaseaudiosink.h:
9761 * gst-libs/gst/audio/gstbaseaudiosrc.c:
9762 * gst-libs/gst/audio/gstbaseaudiosrc.h:
9763 * gst-libs/gst/audio/gstringbuffer.h:
9764 * gst-libs/gst/audio/multichannel.h:
9765 * gst-libs/gst/floatcast/floatcast.h:
9766 * gst-libs/gst/interfaces/colorbalance.c:
9767 * gst-libs/gst/interfaces/colorbalance.h:
9768 * gst-libs/gst/interfaces/colorbalancechannel.h:
9769 * gst-libs/gst/interfaces/mixer.h:
9770 * gst-libs/gst/interfaces/mixeroptions.h:
9771 * gst-libs/gst/interfaces/mixertrack.h:
9772 * gst-libs/gst/interfaces/navigation.h:
9773 * gst-libs/gst/interfaces/propertyprobe.h:
9774 * gst-libs/gst/interfaces/tuner.h:
9775 * gst-libs/gst/interfaces/tunerchannel.h:
9776 * gst-libs/gst/interfaces/tunernorm.h:
9777 * gst-libs/gst/interfaces/xoverlay.h:
9778 * gst-libs/gst/netbuffer/gstnetbuffer.h:
9779 * gst-libs/gst/riff/riff-ids.h:
9780 * gst-libs/gst/riff/riff-media.h:
9781 * gst-libs/gst/riff/riff-read.h:
9782 * gst-libs/gst/rtp/gstbasertpdepayload.h:
9783 * gst-libs/gst/rtp/gstbasertppayload.c:
9784 * gst-libs/gst/rtp/gstbasertppayload.h:
9785 * gst-libs/gst/rtp/gstrtpbuffer.c:
9786 * gst-libs/gst/rtp/gstrtpbuffer.h:
9787 * gst-libs/gst/tag/gsttageditingprivate.h:
9788 * gst-libs/gst/tag/gstvorbistag.c:
9789 (gst_tag_list_from_vorbiscomment_buffer):
9790 * gst-libs/gst/tag/tag.h:
9791 * gst-libs/gst/video/video.h:
9792 * gst/adder/gstadder.c:
9793 * gst/adder/gstadder.h:
9794 * gst/audioconvert/audioconvert.c:
9795 * gst/audioconvert/audioconvert.h:
9796 * gst/audioconvert/gstaudioconvert.c:
9797 * gst/audioconvert/gstchannelmix.c:
9798 * gst/audioconvert/gstchannelmix.h:
9799 * gst/audiorate/gstaudiorate.c:
9800 * gst/audioresample/buffer.h:
9801 * gst/audioresample/functable.h:
9802 * gst/audioresample/gstaudioresample.c:
9803 * gst/audioresample/resample.h:
9804 * gst/ffmpegcolorspace/avcodec.h:
9805 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9806 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
9807 * gst/ffmpegcolorspace/imgconvert.c:
9808 * gst/ffmpegcolorspace/imgconvert_template.h:
9809 * gst/playback/gstdecodebin.c:
9810 * gst/playback/gstplaybasebin.h:
9811 * gst/playback/gstplaybin.c:
9812 * gst/playback/gststreaminfo.h:
9813 * gst/tcp/gstfdset.c:
9814 * gst/tcp/gstfdset.h:
9815 * gst/tcp/gstmultifdsink.c:
9816 * gst/tcp/gstmultifdsink.h:
9818 * gst/tcp/gsttcpclientsrc.c:
9819 * gst/tcp/gsttcpclientsrc.h:
9820 * gst/tcp/gsttcpplugin.h:
9821 * gst/tcp/gsttcpserversink.c:
9822 * gst/tcp/gsttcpserversrc.c:
9823 * gst/typefind/gsttypefindfunctions.c:
9824 * gst/videorate/gstvideorate.c:
9825 * gst/videotestsrc/gstvideotestsrc.h:
9826 * gst/videotestsrc/videotestsrc.h:
9827 * sys/v4l/gstv4lcolorbalance.h:
9828 * sys/v4l/gstv4ltuner.h:
9829 * sys/v4l/gstv4lxoverlay.h:
9830 * sys/v4l/v4l_calls.h:
9831 * sys/v4l/videodev_mjpeg.h:
9832 * tests/check/elements/audioconvert.c:
9833 * tests/check/elements/audioresample.c:
9834 * tests/check/elements/audiotestsrc.c:
9835 * tests/check/elements/videotestsrc.c:
9836 * tests/check/elements/volume.c:
9837 * tests/examples/seek/scrubby.c:
9838 * tests/examples/seek/seek.c:
9841 === release 0.10.0 ===
9843 2005-12-05 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9846 releasing 0.10.0, "Mont-d'or"
9848 2005-12-05 Jan Schmidt <thaytan@mad.scientist.com>
9850 * tests/examples/seek/Makefile.am:
9851 Build fix for when gtk is not available.
9853 2005-12-05 Andy Wingo <wingo@pobox.com>
9855 * ext/libvisual/visual.c: (get_buffer):
9856 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
9857 * ext/pango/gsttextrender.c: (gst_text_render_chain):
9858 * ext/theora/theoradec.c: (theora_handle_data_packet):
9859 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
9861 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9862 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
9863 Update for alloc_buffer changes.
9865 2005-12-05 Andy Wingo <wingo@pobox.com>
9867 patch by: Kai Vehmanen <kv2004 eca cx>
9869 * gst-libs/gst/rtp/gstbasertpdepayload.c
9870 (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
9872 2005-12-04 Andy Wingo <wingo@pobox.com>
9874 patch by: Sebastien Cote <sebas642 yahoo ca>
9876 * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
9879 2005-12-02 Tim-Philipp Müller <tim at centricular dot net>
9881 * docs/plugins/Makefile.am:
9882 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9883 * docs/plugins/gst-plugins-base-plugins-sections.txt:
9884 * docs/plugins/gst-plugins-base-plugins.hierarchy:
9885 * ext/pango/gstclockoverlay.c:
9886 * ext/pango/gsttextoverlay.c:
9887 * ext/pango/gsttextrender.c:
9888 * ext/pango/gsttimeoverlay.c:
9889 Add gtk-doc blurbs to pango elements.
9891 2005-12-02 Wim Taymans <wim@fluendo.com>
9893 * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
9894 * gst/audioresample/buffer.h:
9895 * gst/audioresample/gstaudioresample.c:
9896 * gst/audioresample/gstaudioresample.h:
9897 * gst/audioresample/resample.c: (resample_input_flush),
9898 (resample_input_pushthrough), (resample_input_eos),
9899 (resample_get_output_size_for_input),
9900 (resample_get_input_size_for_output), (resample_get_output_size),
9901 (resample_get_output_data):
9902 * gst/audioresample/resample.h:
9903 * gst/audioresample/resample_ref.c: (resample_scale_ref):
9904 Fix audioresample, seek torture, new segments, reverse negotiation
9907 2005-12-02 Wim Taymans <wim@fluendo.com>
9909 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9912 2005-12-02 Wim Taymans <wim@fluendo.com>
9914 * gst/audioconvert/gstaudioconvert.c:
9915 (gst_audio_convert_transform):
9918 === release 0.9.7 ===
9920 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9923 releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
9925 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9931 add win32 MANIFEST file
9932 do something to the hungarian translation
9934 2005-12-01 Tim-Philipp Müller <tim at centricular dot net>
9937 Add $(PANGO_DIR) to SUBDIRS
9939 * ext/pango/gstclockoverlay.c:
9940 * ext/pango/gsttimeoverlay.c:
9941 Fix and improve element descriptions.
9943 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9945 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9946 * docs/plugins/inspect/plugin-libvisual.xml:
9947 * docs/plugins/inspect/plugin-pango.xml:
9948 add pango plugin to docs
9950 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9956 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9959 * tests/Makefile.am:
9960 * tests/icles/.cvsignore:
9961 * tests/icles/Makefile.am:
9962 * tests/icles/stress-xoverlay.c: (myclock), (open_display),
9963 (close_display), (resize_window), (move_window), (create_window),
9964 (terminate_playback), (pause_playback), (start_playback), (main):
9965 add stress test for xoverlay from Julien
9967 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9969 * docs/libs/tmpl/gstcolorbalance.sgml:
9970 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9971 * gst-libs/gst/rtp/gstbasertppayload.c:
9972 * gst-libs/gst/rtp/gstrtpbuffer.c:
9973 * gst-libs/gst/rtp/gstrtpbuffer.h:
9974 Do burger's rename for rtp payloaders and depayloaders
9976 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9979 add Visual Studio 6 build files
9981 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9983 * docs/libs/gst-plugins-base-libs-docs.sgml:
9984 * docs/libs/gst-plugins-base-libs-sections.txt:
9985 * docs/libs/tmpl/gstaudio.sgml:
9986 * docs/libs/tmpl/gstringbuffer.sgml:
9987 * gst-libs/gst/interfaces/xoverlay.c:
9988 * gst-libs/gst/video/gstvideofilter.c:
9989 * gst-libs/gst/video/gstvideosink.c:
9990 update documentation
9992 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9994 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
9995 (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
9996 (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
9997 (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
9998 (gst_multi_fd_sink_get_stats),
9999 (gst_multi_fd_sink_remove_client_link),
10000 (gst_multi_fd_sink_handle_client_read),
10001 (gst_multi_fd_sink_client_queue_data),
10002 (gst_multi_fd_sink_client_queue_caps),
10003 (gst_multi_fd_sink_client_queue_buffer),
10004 (gst_multi_fd_sink_new_client),
10005 (gst_multi_fd_sink_handle_client_write),
10006 (gst_multi_fd_sink_recover_client),
10007 (gst_multi_fd_sink_queue_buffer),
10008 (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
10009 (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
10010 (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
10011 (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
10012 * gst/tcp/gstmultifdsink.h:
10013 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
10014 (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
10015 (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
10016 (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
10017 (gst_tcp_client_sink_set_property),
10018 (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
10019 (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
10020 * gst/tcp/gsttcpclientsink.h:
10021 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
10022 (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
10023 (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
10024 (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
10025 (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
10026 (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
10027 * gst/tcp/gsttcpclientsrc.h:
10028 * gst/tcp/gsttcpplugin.c: (plugin_init):
10029 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
10030 (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
10031 (gst_tcp_server_sink_finalize),
10032 (gst_tcp_server_sink_handle_server_read),
10033 (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
10034 (gst_tcp_server_sink_set_property),
10035 (gst_tcp_server_sink_get_property),
10036 (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
10037 * gst/tcp/gsttcpserversink.h:
10038 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
10039 (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
10040 (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
10041 (gst_tcp_server_src_set_property),
10042 (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
10043 (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
10044 * gst/tcp/gsttcpserversrc.h:
10047 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
10049 * docs/plugins/Makefile.am:
10050 * docs/plugins/gst-plugins-base-plugins.args:
10051 * docs/plugins/inspect/plugin-libvisual.xml:
10052 * gst/audioconvert/plugin.h:
10053 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
10054 (gst_audio_rate_base_init), (gst_audio_rate_class_init),
10055 (gst_audio_rate_setcaps), (gst_audio_rate_init),
10056 (gst_audio_rate_chain), (gst_audio_rate_set_property),
10057 (gst_audio_rate_get_property), (gst_audio_rate_change_state),
10059 * gst/audiotestsrc/gstaudiotestsrc.c:
10060 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
10061 (gst_audio_test_src_class_init), (gst_audio_test_src_init),
10062 (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
10063 (gst_audio_test_src_get_query_types),
10064 (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
10065 (gst_audio_test_src_create_square),
10066 (gst_audio_test_src_create_saw),
10067 (gst_audio_test_src_create_triangle),
10068 (gst_audio_test_src_create_silence),
10069 (gst_audio_test_src_create_white_noise),
10070 (gst_audio_test_src_init_pink_noise),
10071 (gst_audio_test_src_generate_pink_noise_value),
10072 (gst_audio_test_src_create_pink_noise),
10073 (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
10074 (gst_audio_test_src_create), (gst_audio_test_src_set_property),
10075 (gst_audio_test_src_get_property), (gst_audio_test_src_start),
10077 * gst/audiotestsrc/gstaudiotestsrc.h:
10078 * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
10079 (gst_sub_parse_base_init), (gst_sub_parse_class_init),
10080 (gst_sub_parse_init), (gst_sub_parse_formats),
10081 (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
10082 (convert_encoding), (get_next_line),
10083 (gst_sub_parse_data_format_autodetect),
10084 (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
10085 (gst_sub_parse_loop), (gst_sub_parse_chain),
10086 (gst_sub_parse_change_state), (gst_sub_parse_type_find),
10088 * gst/subparse/gstsubparse.h:
10089 * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
10090 (gst_video_rate_base_init), (gst_video_rate_class_init),
10091 (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
10092 (gst_video_rate_setcaps), (gst_video_rate_blank_data),
10093 (gst_video_rate_init), (gst_video_rate_event),
10094 (gst_video_rate_chain), (gst_video_rate_set_property),
10095 (gst_video_rate_get_property), (gst_video_rate_change_state),
10097 * gst/videoscale/gstvideoscale.c:
10098 (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
10099 (gst_video_scale_src_template_factory),
10100 (gst_video_scale_sink_template_factory),
10101 (gst_video_scale_get_type), (gst_video_scale_base_init),
10102 (gst_video_scale_class_init), (gst_video_scale_init),
10103 (gst_video_scale_set_property), (gst_video_scale_get_property),
10104 (gst_video_scale_transform_caps), (gst_video_scale_get_format),
10105 (gst_video_scale_prepare_size), (parse_caps),
10106 (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
10107 (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
10108 (gst_video_scale_transform), (gst_video_scale_handle_src_event),
10110 * gst/videoscale/gstvideoscale.h:
10111 * gst/videotestsrc/gstvideotestsrc.c:
10112 (gst_video_test_src_pattern_get_type),
10113 (gst_video_test_src_base_init), (gst_video_test_src_class_init),
10114 (gst_video_test_src_init), (gst_video_test_src_src_fixate),
10115 (gst_video_test_src_set_pattern),
10116 (gst_video_test_src_set_property),
10117 (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
10118 (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
10119 (gst_video_test_src_event), (gst_video_test_src_get_times),
10120 (gst_video_test_src_create), (plugin_init):
10121 * gst/videotestsrc/gstvideotestsrc.h:
10122 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
10123 (gst_video_test_src_smpte), (gst_video_test_src_snow),
10124 (gst_video_test_src_black):
10125 * gst/videotestsrc/videotestsrc.h:
10127 clean up docs a little
10129 2005-11-30 Wim Taymans <wim@fluendo.com>
10131 * gst-libs/gst/rtp/gstbasertpdepayload.h:
10132 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
10133 (gst_basertppayload_event), (gst_basertppayload_push),
10134 (gst_basertppayload_change_state):
10135 * gst-libs/gst/rtp/gstbasertppayload.h:
10138 2005-11-30 Julien MOUTTE <julien@moutte.net>
10140 * docs/libs/gst-plugins-base-libs-docs.sgml:
10141 * docs/libs/gst-plugins-base-libs-sections.txt:
10142 * gst-libs/gst/video/gstvideofilter.c:
10143 * gst-libs/gst/video/gstvideosink.c:
10144 * gst-libs/gst/video/gstvideosink.h: Adding docs.
10146 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
10166 * scripts/autoplugins.sh:
10169 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
10173 * examples/Makefile.am:
10174 * examples/capsfilter/Makefile.am:
10175 * examples/capsfilter/capsfilter1.c:
10176 * examples/gob/Makefile.am:
10177 * examples/gob/gst-identity2.gob:
10178 * examples/indexing/.cvsignore:
10179 * examples/indexing/Makefile.am:
10180 * examples/indexing/indexmpeg.c:
10181 * examples/seeking/.cvsignore:
10182 * examples/seeking/Makefile.am:
10183 * examples/seeking/cdparanoia.c:
10184 * examples/seeking/cdplayer.c:
10185 * examples/seeking/chained.c:
10186 * examples/seeking/scrubby.c:
10187 * examples/seeking/seek.c:
10188 * examples/stats/Makefile.am:
10189 * examples/stats/mp2ogg.c:
10190 * examples/switch/.cvsignore:
10191 * examples/switch/Makefile.am:
10192 * examples/switch/switcher.c:
10193 * tests/Makefile.am:
10194 * tests/check/generic/.cvsignore:
10195 * tests/check/pipelines/.cvsignore:
10196 * tests/examples/Makefile.am:
10197 * tests/examples/seek/Makefile.am:
10198 reorganize stuff under tests/
10200 2005-11-30 Edward Hervey <edward@fluendo.com>
10202 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
10203 Go away you stupid GstStaticPadTemplate memleak.
10205 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
10207 * gst-libs/gst/net/Makefile.am:
10208 * gst-libs/gst/net/README:
10209 * gst-libs/gst/net/gstnetbuffer.c:
10210 * gst-libs/gst/net/gstnetbuffer.h:
10211 this was moved to "netbuffer"
10213 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
10215 * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
10216 (gst_video_filter_class_init), (gst_video_filter_init):
10217 * gst-libs/gst/video/gstvideofilter.h:
10218 borgify name to bring in line with other classes
10220 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
10222 * gst/audioscale/.cvsignore:
10223 * gst/audioscale/Makefile.am:
10224 * gst/audioscale/README:
10225 * gst/audioscale/audioscale.vcproj:
10226 * gst/audioscale/dtof.c:
10227 * gst/audioscale/dtos.c:
10228 * gst/audioscale/functable.c:
10229 * gst/audioscale/gstaudioscale.c:
10230 * gst/audioscale/gstaudioscale.h:
10231 * gst/audioscale/private.h:
10232 * gst/audioscale/resample.c:
10233 * gst/audioscale/resample.h:
10234 * gst/audioscale/test.c:
10237 2005-11-30 Edward Hervey <edward@fluendo.com>
10239 * gst-libs/gst/netbuffer/Makefile.am:
10240 really, really tired
10242 2005-11-30 Edward Hervey <edward@fluendo.com>
10244 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
10245 Update for new GstTypeFindFactory _register()
10247 2005-11-30 Edward Hervey <edward@fluendo.com>
10249 * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir):
10250 Let's not override libgstnet from core for no reason...
10251 (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
10252 Ok, maybe not so quick next time.
10254 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
10257 * gst-libs/gst/Makefile.am:
10258 moved gst-libs/gst/net to netbuffer through CVS surgery
10259 remove old directory
10260 updating build to accomodate
10263 2005-11-29 Andy Wingo <wingo@pobox.com>
10265 * pkgconfig/gstreamer-plugins-base.pc.in:
10266 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
10267 * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
10270 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
10272 * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
10273 3rd time's the charm. Correct ref-counting for discarded buffers.
10275 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
10277 * gst/playback/gststreamselector.c:
10278 (gst_stream_selector_class_init),
10279 (gst_stream_selector_set_property),
10280 (gst_stream_selector_get_property),
10281 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
10284 2005-11-29 Tim-Philipp Müller <tim at centricular dot net>
10286 * gst/subparse/gstsubparse.c: (feed_textbuf):
10287 Don't access already unref'ed buffer.
10289 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
10291 * gst/playback/gststreamselector.c:
10292 (gst_stream_selector_class_init), (gst_stream_selector_init),
10293 (gst_stream_selector_dispose), (gst_stream_selector_set_property),
10294 (gst_stream_selector_get_property),
10295 (gst_stream_selector_get_linked_pad),
10296 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
10297 * gst/playback/gststreamselector.h:
10298 Add the active-pad property for playbin to use shortly. Ignore buffers
10299 from any other pad, returning GST_FLOW_NOT_LINKED
10301 2005-11-29 Julien MOUTTE <julien@moutte.net>
10303 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
10304 patch from bug #322704 (Alessandro Decina).
10306 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
10308 * gst-libs/gst/audio/Makefile.am:
10309 folded audiofilter into the audio library
10311 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
10313 * gst/videoscale/gstvideoscale.h:
10314 * gst/videoscale/gstvideoscale.c:
10315 remove unimplemented scale methods
10317 2005-11-28 Tim-Philipp Müller <tim at centricular dot net>
10319 * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
10322 2005-11-28 Julien MOUTTE <julien@moutte.net>
10324 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
10325 (gst_ximagesink_setcaps):
10326 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
10327 (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
10328 happens (only visible on ximagesink but bug is in xv too) set_caps was
10329 destroying the internal x[v]image used to memcpy non locally alloced
10330 buffers so that it got renewed on next _chain. The issue is that
10331 _expose will try to put that image as it reffed it in _put.
10332 Using gst_buffer_unref instead of destroy fixes it !
10334 2005-11-28 Edward Hervey <edward@fluendo.com>
10336 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
10337 (try_to_link_1), (queue_filled_cb):
10338 Better use of the queues. Start with a small size queue and only increase
10339 the size of the queues when the other queues are empty.
10341 2005-11-28 Thomas Vander Stichele <thomas at apestaart dot org>
10343 * gst-libs/gst/video/Makefile.am:
10344 compile in copied-over videofilter into the video library
10345 * gst-libs/gst/video/videosink.h:
10346 rename the header to gstvideosink.h since it's a base GstObject class
10347 * sys/ximage/ximagesink.h:
10348 * sys/xvimage/xvimagesink.h:
10351 2005-11-28 Wim Taymans <wim@fluendo.com>
10353 * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
10354 * gst/playback/gstplaybasebin.h:
10355 Prepare to handle errors betters.
10357 * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
10358 Set sinks to PAUSED first before adding and linking them so that
10359 we don't interrupt dataflow.
10361 2005-11-28 Wim Taymans <wim@fluendo.com>
10363 * gst-libs/gst/audio/TODO:
10366 * gst-libs/gst/audio/gstaudiosink.c:
10367 (gst_audioringbuffer_open_device),
10368 (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
10369 (gst_audioringbuffer_release):
10372 * gst-libs/gst/audio/gstbaseaudiosink.c:
10373 (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
10374 (gst_base_audio_sink_change_state):
10375 Slave to the master clock when going to PLAYING and unslave when
10378 * gst-libs/gst/audio/gstringbuffer.c:
10379 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
10380 (gst_ring_buffer_acquire), (gst_ring_buffer_release),
10381 (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
10382 (gst_ring_buffer_clear_all), (wait_segment),
10383 (gst_ring_buffer_commit), (gst_ring_buffer_read),
10384 (gst_ring_buffer_advance):
10385 * gst-libs/gst/audio/gstringbuffer.h:
10386 Add some docs and cleanups.
10388 2005-11-28 Julien MOUTTE <julien@moutte.net>
10390 * sys/xvimage/xvimagesink.c:
10391 (gst_xvimagesink_navigation_send_event): Fix navigation events
10392 coordinates translation with pixel aspect ratios.
10394 2005-11-28 Julien MOUTTE <julien@moutte.net>
10396 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
10397 Use calculated video geometry from _setcaps instead of buffer
10398 caps to respect pixel aspect ratio. (fixes #322388)
10400 2005-11-28 Julien MOUTTE <julien@moutte.net>
10402 * docs/libs/tmpl/gstcolorbalance.sgml:
10403 * docs/libs/tmpl/gstmixer.sgml:
10404 * docs/libs/tmpl/gstxoverlay.sgml:
10405 * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
10408 2005-11-28 Julien MOUTTE <julien@moutte.net>
10410 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
10411 Refuse to create an XvImage if we can't find the format.
10413 2005-11-28 Edward Hervey <edward@fluendo.com>
10415 * gst-libs/gst/riff/riff-media.c:
10416 (gst_riff_create_audio_template_caps):
10417 Add ATRAC3 to the list of riff-possible audio caps.
10418 I know we still don't have a plugin for atrac3, but it's saner to output
10419 that than a cryptic mimetype.
10421 2005-11-27 Edward Hervey <edward@fluendo.com>
10423 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
10424 Don't try to create a zero-sized subbuffer.
10426 2005-11-27 Julien MOUTTE <julien@moutte.net>
10428 * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
10429 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
10430 (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
10431 (gst_ximagesink_expose): Fixed a tricky race.
10432 * sys/ximage/ximagesink.h:
10433 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
10434 (gst_xvimagesink_expose): Fixed a tricky race.
10435 * sys/xvimage/xvimagesink.h:
10437 2005-11-27 Edward Hervey <edward@fluendo.com>
10439 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
10440 (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
10441 Remove unused properties, and add queues between demuxers and decoders
10442 so that a lot more files can preroll properly.
10444 2005-11-27 Thomas Vander Stichele <thomas at apestaart dot org>
10446 * gst-libs/gst/net/Makefile.am:
10447 * gst-libs/gst/rtp/Makefile.am:
10448 * gst-libs/gst/tag/Makefile.am:
10449 remove silly include
10450 * gst/tags/Makefile.am:
10451 * gst/tags/gsttagediting.c:
10452 * gst/tags/gsttageditingprivate.h:
10453 * gst/tags/tagedit.vcproj:
10454 remove directory, is as good as empty
10456 2005-11-27 Thomas Vander Stichele <thomas at apestaart dot org>
10459 added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
10460 * gst-libs/Makefile.am:
10461 * gst-libs/gst/audio/Makefile.am:
10462 * gst-libs/gst/interfaces/Makefile.am:
10463 * gst-libs/gst/net/Makefile.am:
10464 * gst-libs/gst/riff/Makefile.am:
10465 * gst-libs/gst/rtp/Makefile.am:
10466 * gst-libs/gst/tag/Makefile.am:
10467 * gst-libs/gst/video/Makefile.am:
10470 2005-11-27 Julien MOUTTE <julien@moutte.net>
10472 * docs/libs/tmpl/gstcolorbalance.sgml:
10473 * docs/libs/tmpl/gstmixer.sgml:
10474 * docs/libs/tmpl/gstxoverlay.sgml:
10475 * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
10476 * sys/ximage/ximagesink.h:
10477 * sys/xvimage/xvimagesink.h: More and more documentation.
10479 2005-11-26 Julien MOUTTE <julien@moutte.net>
10481 * docs/libs/gst-plugins-base-libs-docs.sgml:
10482 * docs/libs/gst-plugins-base-libs-sections.txt:
10483 * docs/libs/tmpl/gstcolorbalance.sgml:
10484 * docs/libs/tmpl/gstmixer.sgml:
10485 * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
10488 2005-11-26 Julien MOUTTE <julien@moutte.net>
10490 * docs/plugins/Makefile.am:
10491 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10492 * docs/plugins/gst-plugins-base-plugins-sections.txt:
10493 * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
10495 2005-11-26 Julien MOUTTE <julien@moutte.net>
10497 * docs/plugins/Makefile.am:
10498 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10499 * docs/plugins/gst-plugins-base-plugins-sections.txt:
10500 * docs/plugins/inspect/plugin-adder.xml:
10501 * docs/plugins/inspect/plugin-alsa.xml:
10502 * docs/plugins/inspect/plugin-audioconvert.xml:
10503 * docs/plugins/inspect/plugin-audiorate.xml:
10504 * docs/plugins/inspect/plugin-audioresample.xml:
10505 * docs/plugins/inspect/plugin-audiotestsrc.xml:
10506 * docs/plugins/inspect/plugin-decodebin.xml:
10507 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
10508 * docs/plugins/inspect/plugin-gnomevfs.xml:
10509 * docs/plugins/inspect/plugin-ogg.xml:
10510 * docs/plugins/inspect/plugin-playbin.xml:
10511 * docs/plugins/inspect/plugin-subparse.xml:
10512 * docs/plugins/inspect/plugin-tcp.xml:
10513 * docs/plugins/inspect/plugin-theora.xml:
10514 * docs/plugins/inspect/plugin-typefindfunctions.xml:
10515 * docs/plugins/inspect/plugin-video4linux.xml:
10516 * docs/plugins/inspect/plugin-videorate.xml:
10517 * docs/plugins/inspect/plugin-videoscale.xml:
10518 * docs/plugins/inspect/plugin-videotestsrc.xml:
10519 * docs/plugins/inspect/plugin-volume.xml:
10520 * docs/plugins/inspect/plugin-vorbis.xml:
10521 * docs/plugins/inspect/plugin-ximagesink.xml:
10522 * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
10523 * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
10525 2005-11-26 Edward Hervey <edward@fluendo.com>
10527 * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
10528 Properly return GstFlowReturn from gst_pad_push in chain functions.
10530 2005-11-25 Michael Smith <msmith@fluendo.com>
10532 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
10533 (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
10534 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
10535 (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
10536 Handle various conditions better when we don't understand a stream.
10537 Removes a heap of CRITICALs on ogg streams containing unknown data.
10539 2005-11-24 Andy Wingo <wingo@pobox.com>
10541 * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
10544 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10546 * configure.ac: back to HEAD
10548 === release 0.9.6 ===
10550 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10553 releasing 0.9.6, "White Eight"
10555 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10557 * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
10558 * docs/plugins/inspect/plugin-sine.xml:
10559 remove sinesrc some more
10561 2005-11-23 Wim Taymans <wim@fluendo.com>
10563 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
10564 If we are reading too slowly, jump forward in the ringbuffer
10565 instead of blocking.
10567 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
10569 * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
10570 (gst_visual_chain):
10571 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
10572 * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
10573 (gst_videorate_chain):
10574 * gst/videotestsrc/gstvideotestsrc.c:
10575 (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
10576 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
10577 (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
10578 (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
10579 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10580 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10581 Updates for API changes
10583 2005-11-23 Wim Taymans <wim@fluendo.com>
10585 * gst-libs/gst/audio/gstbaseaudiosink.c:
10586 (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
10587 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10588 Fix for calibration API change.
10590 2005-11-23 Michael Smith <msmith@fluendo.com>
10592 * gst-libs/gst/audio/multichannel.c:
10593 (gst_audio_get_channel_positions),
10594 (gst_audio_set_channel_positions),
10595 (gst_audio_set_structure_channel_positions_list),
10596 (gst_audio_fixate_channel_positions):
10597 Use gst_value_array_*() functions on value arrays, not
10598 gst_value_list_*().
10600 2005-11-23 Edward Hervey <edward@fluendo.com>
10603 eheh, sinesrc is gone. Replacing sample srcfile by existing one.
10606 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10608 * check/Makefile.am:
10609 * check/elements/videotestsrc.c: (setup_videotestsrc),
10610 (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
10612 add a test for videotestsrc
10614 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10616 * gst/sine/.cvsignore:
10617 * gst/sine/Makefile.am:
10618 * gst/sine/gstsinesrc.c:
10619 * gst/sine/gstsinesrc.h:
10620 * gst/sine/sinesrc.vcproj:
10621 and remove sinesrc from the repository. Closes #321446
10623 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10626 * gst-plugins-base.spec.in:
10627 remove sinesrc from the build
10629 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10631 * check/Makefile.am:
10632 * check/elements/audiotestsrc.c: (setup_audiotestsrc),
10633 (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
10635 add a test for audiotestsrc, testing all waves. Even seems
10636 leak-free at first glance, nice job Stefan
10638 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
10654 Translation string updates
10656 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10657 (gst_v4lsrc_set_caps):
10658 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10659 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10660 * sys/v4l/v4lsrc_calls.h:
10661 Improve v4lsrc, by making it work again.
10663 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
10665 * ext/libvisual/visual.c: (gst_visual_chain):
10666 Fix the fps calculations.
10668 * gst/ffmpegcolorspace/avcodec.h:
10669 Move structure element for clarity
10671 * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
10672 * gst-libs/gst/interfaces/tunernorm.h:
10673 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
10674 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
10675 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
10676 (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
10677 (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
10678 (gst_v4lmjpegsrc_getcaps):
10679 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10680 (gst_v4lsrc_set_caps):
10681 * sys/v4l/gstv4lsrc.h:
10682 * sys/v4l/v4l_calls.c: (gst_v4l_open):
10683 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10684 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10685 * sys/v4l/v4lsrc_calls.h:
10686 Fractional framerates...
10688 2005-11-22 Wim Taymans <wim@fluendo.com>
10690 * gst-libs/gst/audio/gstbaseaudiosink.c:
10691 (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
10692 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10693 And we provide a clock by default, of course...
10695 2005-11-22 Wim Taymans <wim@fluendo.com>
10697 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
10698 This clock can be slaved to a master clock now.
10700 * gst-libs/gst/audio/gstbaseaudiosink.c:
10701 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10702 (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
10703 (gst_base_audio_sink_set_clock),
10704 (gst_base_audio_sink_set_property),
10705 (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
10706 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10707 * gst-libs/gst/audio/gstbaseaudiosink.h:
10708 Handle slaving the internal clock to the clock selected in the
10710 Add property to make the basesink not provide a clock.
10712 * gst-libs/gst/rtp/gstbasertpdepayload.c:
10713 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
10714 (gst_base_rtp_depayload_wait):
10715 * gst-libs/gst/rtp/gstbasertpdepayload.h:
10716 We can use the clock in GstElement, no need to store it ourselves.
10718 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
10720 * docs/libs/tmpl/gstaudio.sgml:
10722 * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
10723 (gst_paranoia_endian_get_type):
10724 * ext/theora/theoraenc.c: (gst_border_mode_get_type):
10725 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
10726 * gst/audiotestsrc/gstaudiotestsrc.c:
10727 (gst_audiostestsrc_wave_get_type):
10728 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
10729 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
10730 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
10731 (gst_sync_method_get_type), (gst_unit_type_get_type),
10732 (gst_client_status_get_type), (gst_multifdsink_class_init),
10733 (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
10734 (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
10735 (gst_multifdsink_get_property):
10736 * gst/tcp/gstmultifdsink.h:
10737 * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
10738 * gst/videotestsrc/gstvideotestsrc.c:
10739 (gst_videotestsrc_pattern_get_type):
10740 remove deprecated properties
10741 fix up enums to correctly have short lowercase dashed nicks
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):
10749 2005-11-22 Michael Smith <msmith@fluendo.com>
10751 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10752 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10753 Use utility method for scaling clocktime for fractional framerates.
10755 2005-11-22 Jan Schmidt <thaytan@mad.scientist.com>
10757 * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
10758 (gst_visual_chain):
10759 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
10760 * ext/theora/theoradec.c: (theora_handle_type_packet):
10761 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
10762 (theora_enc_chain):
10763 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10764 * gst-libs/gst/video/video.c: (gst_video_frame_rate):
10765 * gst-libs/gst/video/video.h:
10766 * gst/ffmpegcolorspace/avcodec.h:
10767 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10768 (gst_ffmpeg_caps_to_pixfmt):
10769 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10770 (gst_ffmpegcsp_set_caps):
10771 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
10772 (gst_videorate_setcaps), (gst_videorate_blank_data),
10773 (gst_videorate_chain):
10774 * gst/videotestsrc/gstvideotestsrc.c:
10775 (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
10776 (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
10777 (gst_videotestsrc_event), (gst_videotestsrc_create):
10778 * gst/videotestsrc/gstvideotestsrc.h:
10779 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
10780 (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
10781 (gst_ximagesink_get_times), (gst_ximagesink_init):
10782 * sys/ximage/ximagesink.h:
10783 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
10784 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
10785 (gst_xvimagesink_get_times), (gst_xvimagesink_init):
10786 * sys/xvimage/xvimagesink.h:
10787 Convert elements to use fractions for their framerate.
10788 V4L elements to come later tonight.
10790 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
10792 * gst-libs/gst/audio/audio.c:
10793 * gst-libs/gst/audio/audio.h:
10794 remove some deprecated functions
10796 2005-11-22 Andy Wingo <wingo@pobox.com>
10798 * Update for gst_tag_setter API changes.
10800 2005-11-22 Andy Wingo <wingo@pobox.com>
10802 * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
10803 (gst_ogg_demux_perform_seek):
10804 * ext/theora/theoradec.c (theora_dec_sink_event):
10805 * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
10808 2005-11-22 Wim Taymans <wim@fluendo.com>
10810 * examples/seeking/seek.c: (main):
10811 Give higher priority to bus signals than the gtk events
10812 to fix a race condition in the segment looping.
10814 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
10816 * ext/theora/Makefile.am:
10817 * ext/vorbis/Makefile.am:
10818 * gst-libs/gst/tag/Makefile.am:
10819 * gst-plugins-base.spec.in:
10820 Rename libgsttagedit to libgsttag (#322117).
10822 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
10824 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
10825 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10826 Call gst_x_overlay_prepare_xwindow_id() to give applications
10827 a final chance to set their own xwindow id before the video
10828 sink creates its own window.
10830 2005-11-22 Julien MOUTTE <julien@moutte.net>
10832 * sys/xvimage/xvimagesink.c:
10833 (gst_xvimagesink_navigation_send_event): Handle navigation
10834 events correcly with borders if applicable.
10836 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
10838 Patch by: Luca Ognibene
10840 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10841 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
10842 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10843 (gst_ffmpegcsp_caps_remove_format_info):
10844 * gst/ffmpegcolorspace/imgconvert.c:
10845 * gst/ffmpegcolorspace/imgconvert_template.h:
10846 Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
10847 #318353); use gst_structure_has_name().
10849 2005-11-22 Julien MOUTTE <julien@moutte.net>
10851 * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
10852 (gst_ximagesink_class_init): Add debug macros on functions.
10853 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
10854 (gst_xvimagesink_xwindow_draw_borders),
10855 (gst_xvimagesink_xvimage_put),
10856 (gst_xvimagesink_xwindow_update_geometry),
10857 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
10858 (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
10859 (gst_xvimagesink_xcontext_clear),
10860 (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
10861 (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
10862 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
10863 (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
10864 (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
10865 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
10866 * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
10867 expose while being PAUSED, out of data flow navigation events, etc..
10869 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
10871 * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10872 * gst-libs/gst/audio/audio.h:
10873 fix prototype - wondering why the test worked regardless
10875 2005-11-21 Thomas Vander Stichele <thomas at apestaart dot org>
10877 * check/Makefile.am:
10878 * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10879 * gst-libs/gst/audio/audio.h:
10880 add a method that returns a proper GstClockTime
10882 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10884 * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
10885 (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
10886 * gst-libs/gst/interfaces/xoverlay.h:
10887 Remove everything having to do with the desired size; add
10888 gst_x_overlay_prepare_xwindow_id() function; remove the
10889 'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
10890 post a message on the bus instead (#321816).
10892 * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
10893 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
10894 (gst_xvimagesink_xoverlay_init):
10895 Remove desired size stuff (#321816).
10897 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10899 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
10900 (mpeg2_sys_type_find), (mpeg1_sys_type_find),
10901 (mpeg_video_type_find), (mpeg_video_stream_type_find):
10902 Terminate vararg functions with NULL instead of 0 to
10905 2005-11-21 Andy Wingo <wingo@pobox.com>
10907 patch by: Sebastien Cote <sebas642@yahoo.ca>
10909 * gst-libs/gst/rtp/gstrtpbuffer.h:
10910 * gst-libs/gst/rtp/gstrtpbuffer.c
10911 (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
10913 2005-11-21 Andy Wingo <wingo@pobox.com>
10915 * gst/playback/gstplaybin.c (gen_audio_element)
10916 (gen_video_element): Use the new MISSING_PLUGIN core error
10917 category. Closes #320060.
10919 * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event):
10920 * gst/videorate/gstvideorate.c (gst_videorate_event):
10921 * ext/theora/theoradec.c (theora_dec_sink_event):
10922 * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
10925 * gst/subparse/gstsubparse.c (gst_subparse_src_event):
10926 * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
10927 stream lock changes.
10929 2005-11-21 Wim Taymans <wim@fluendo.com>
10931 * gst-libs/gst/audio/gstbaseaudiosink.c:
10932 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10933 (gst_base_audio_sink_provide_clock),
10934 (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
10935 (gst_base_audio_sink_change_state):
10936 * gst/audioresample/gstaudioresample.c:
10937 Segment update fix.
10939 2005-11-21 Andy Wingo <wingo@pobox.com>
10942 * *.c: Ran scripts/update-macros. Oh yes.
10944 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10946 * sys/ximage/Makefile.am:
10947 * sys/ximage/ximage.c:
10948 Rename ximage plugin to ximagesink (#321426) (Don't forget to
10949 remove your old libgstximage.* manually if necessary).
10951 2005-11-21 Michael Smith <msmith@fluendo.com>
10953 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
10954 Minimal fix for bug #320200: set the min/max bitrate in the correct
10955 units. A better fix would be to upgrade to the RATEMANAGE2
10956 interface, rather than using the deprecated interface used here, but
10957 that would require an update in our libvorbis dependency (to 1.1),
10958 which is probably undesirable.
10960 2005-11-21 Jan Schmidt <thaytan@mad.scientist.com>
10962 * ext/libvisual/visual.c: (get_buffer):
10963 * gst-libs/gst/audio/gstbaseaudiosrc.c:
10964 (gst_base_audio_src_fixate):
10965 * gst/audioconvert/gstaudioconvert.c:
10966 (gst_audio_convert_fixate_caps):
10967 * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
10968 * gst/audiotestsrc/gstaudiotestsrc.c:
10969 (gst_audiotestsrc_src_fixate):
10970 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
10971 * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
10972 * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
10973 * gst/videotestsrc/gstvideotestsrc.c:
10974 (gst_videotestsrc_src_fixate):
10975 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
10976 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
10977 Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
10981 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10983 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
10984 (gst_riff_create_iavs_caps):
10985 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
10986 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
10987 (gst_riff_parse_info):
10988 * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
10989 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
10990 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10991 Fixes for GST_FOURCC_FORMAT API change.
10993 2005-11-21 Andy Wingo <wingo@pobox.com>
10995 patch by: Alessandro Dessina <alessandro nnva org>
10997 * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
10998 * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
10999 (gst_ogg_parse_chain):
11000 * ext/theora/theoraenc.c (theora_set_header_on_caps):
11001 * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
11002 * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
11003 gst_value_list calls on arrays. Fixes #321962.
11005 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
11007 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
11008 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
11009 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
11010 * gst/adder/gstadder.c: (gst_adder_init),
11011 (gst_adder_request_new_pad), (gst_adder_collected),
11012 (gst_adder_change_state):
11013 Update for gst_collectpads_foo() to gst_collect_pads_foo()
11016 2005-11-21 Michael Smith <msmith@fluendo.com>
11018 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
11019 (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
11020 Properly handle pad_push return values.
11022 2005-11-20 Jan Schmidt <thaytan@mad.scientist.com>
11024 * gst-libs/gst/tag/Makefile.am:
11025 * gst-libs/gst/tag/gstvorbistag.c:
11026 (gst_tag_list_to_vorbiscomment_buffer):
11027 Remove obsolete vorbistag element and debug category.
11029 * gst/playback/gstplaybasebin.c: (check_queue):
11030 Don't divide by 0 when queue-threshold is 0.
11032 * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
11033 Don't modify an existing pixel-aspect-ratio if we fail to read
11036 2005-11-20 Wim Taymans <wim@fluendo.com>
11038 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
11039 (gst_vorbisenc_push_packet):
11040 GST_PAD_IS_USABLE is gone, use the return value of
11041 the push or pad_alloc_buffer instead.
11043 2005-11-18 Julien MOUTTE <julien@moutte.net>
11045 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
11046 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
11047 (gst_ximagesink_ximage_destroy),
11048 (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
11049 (gst_ximagesink_xwindow_new),
11050 (gst_ximagesink_xwindow_update_geometry),
11051 (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
11052 (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
11053 (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
11054 (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
11055 (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
11056 (gst_ximagesink_navigation_send_event),
11057 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
11058 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
11059 (gst_ximagesink_finalize), (gst_ximagesink_init),
11060 (gst_ximagesink_class_init):
11061 * sys/ximage/ximagesink.h: Refactoring of ximagesink.
11062 This new version brings correct software scaling, non flickering
11063 window while resizing, pixel aspect ratio handling, usage of
11064 hardware buffer pools, out of data flow event thread for
11065 navigation and handling of expose events even when being PAUSED,
11066 a new property to keep video aspect ratio when resizing, etc...
11068 2005-11-18 Julien MOUTTE <julien@moutte.net>
11070 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
11071 (gst_videoscale_fixate_caps): Introduce back caps fixate with
11074 2005-11-18 Edward Hervey <bilboed@dvdsrc.fluendo.com>
11076 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
11077 Unsetting IS_SINK flag from the fakesink, so decodebin
11078 never behaves as a sink.
11080 2005-11-17 Wim Taymans <wim@fluendo.com>
11082 * gst-libs/gst/audio/gstbaseaudiosrc.c:
11083 (gst_base_audio_src_change_state):
11084 Fix the audiosrc base class again, we did not unflush.
11086 2005-11-17 Julien MOUTTE <julien@moutte.net>
11088 * examples/seeking/seek.c: (make_dv_pipeline),
11089 (make_vorbis_theora_pipeline), (make_avi_pipeline),
11090 (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
11091 to ogg/vorbis/theora pipeline.
11093 2005-11-17 Wim Taymans <wim@fluendo.com>
11095 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
11096 (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
11097 (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
11098 Fix EOS on multiple streams.
11101 2005-11-16 Wim Taymans <wim@fluendo.com>
11103 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
11104 (gst_ogg_demux_perform_seek):
11105 Segment done must include stream time.
11107 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
11108 (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
11109 (gst_ogg_mux_change_state):
11110 Fix ogg muxer again.
11112 2005-11-16 Wim Taymans <wim@fluendo.com>
11114 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
11117 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
11119 * ext/libvisual/visual.c: (gst_visual_init):
11120 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
11121 * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
11122 (gst_ogg_parse_chain):
11123 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
11124 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
11125 * ext/theora/theoradec.c: (gst_theora_dec_init):
11126 * ext/theora/theoraenc.c: (gst_theora_enc_init):
11127 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
11128 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
11129 * gst/adder/gstadder.c: (gst_adder_class_init),
11130 (gst_adder_dispose):
11131 * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
11132 * gst/subparse/gstsubparse.c: (gst_subparse_init):
11133 * gst/videorate/gstvideorate.c: (gst_videorate_init):
11134 Fix a whole set of pad template leaks
11136 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
11138 * check/generic/states.c: (GST_START_TEST):
11139 fix the test so that it only checks for elements that are part of
11142 2005-11-16 Michael Smith <msmith@fluendo.com>
11144 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
11145 (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
11146 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11147 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11148 (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
11149 (gst_ogg_mux_change_state):
11150 Fix leaking collectpads.
11152 2005-11-16 Edward Hervey <edward@fluendo.com>
11154 * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
11155 (gst_videorate_event), (gst_videorate_chain):
11156 Handle segment seeks
11158 2005-11-16 Wim Taymans <wim@fluendo.com>
11160 * gst-libs/gst/audio/gstbaseaudiosink.c:
11161 (gst_base_audio_sink_provide_clock),
11162 (gst_base_audio_sink_change_state):
11163 Set ringbuffer to non-flushing when going to PAUSED, set to
11164 flushing again when going to READY.
11166 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
11167 (gst_ring_buffer_stop):
11168 Start in flushing mode by default.
11169 Don't set flushing in the _stop method, let the app call
11172 2005-11-16 Julien MOUTTE <julien@moutte.net>
11174 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
11175 * gst-libs/gst/video/videosink.h: Add helper function needed
11178 2005-11-16 Tim-Philipp Müller <tim at centricular dot net>
11180 * gst/videoscale/gstvideoscale.c:
11181 (gst_videoscale_handle_src_event):
11182 Don't leak reference to pad parent.
11184 2005-11-16 Wim Taymans <wim@fluendo.com>
11186 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
11187 Set ringbuffer to flushing when stopping so that we don't
11188 block on wait_segment anymore and livelock.
11190 2005-11-16 Wim Taymans <wim@fluendo.com>
11192 * examples/seeking/seek.c: (send_event), (do_seek),
11193 (loop_toggle_cb), (segment_done), (main):
11194 Added looping checkbox.
11196 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
11198 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
11199 (gst_ogg_demux_init):
11200 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
11201 (gst_vorbis_dec_init):
11202 revert unrefs, they don't pass make check
11204 2005-11-15 Johan Dahlin <johan@gnome.org>
11206 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
11207 (gst_ogg_demux_init), (gst_ogg_demux_finalize):
11208 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
11209 (gst_vorbis_dec_init):
11210 Fix pad template leaks.
11212 2005-11-15 Tim-Philipp Müller <tim at centricular dot net>
11214 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
11215 Make state change function thread safe.
11217 2005-11-15 Edward Hervey <edward@fluendo.com>
11219 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
11220 (gst_ogg_demux_class_init):
11221 Implement GstElement::send_event, so we can send seek events
11224 2005-11-14 Julien MOUTTE <julien@moutte.net>
11226 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
11227 Discovered how to take away flickering while resizing the
11228 window. Please don't put that in ximagesink, refactoring in
11231 2005-11-14 Michael Smith <msmith@fluendo.com>
11233 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
11234 (gst_multifdsink_render):
11235 Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
11237 2005-11-14 Tim-Philipp Müller <tim at centricular dot net>
11239 * gst/playback/gstplaybin.c: (gen_audio_element):
11240 Use autoaudiosink, it tends to be more widely available than
11243 2005-11-14 Andy Wingo <wingo@pobox.com>
11245 * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
11246 as well if it is available. Fixes #316442.
11248 2005-11-14 Michael Smith <msmith@fluendo.com>
11250 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
11251 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
11252 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11253 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11254 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
11255 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
11256 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
11257 (gst_vorbisenc_change_state):
11258 Fix a small memory leak in vorbisenc.
11259 Fix large memory leaks in oggmux, also fix lots of state change
11262 2005-11-14 Thomas Vander Stichele <thomas at apestaart dot org>
11264 * gst/videotestsrc/gstvideotestsrc.c:
11265 (gst_videotestsrc_class_init), (gst_videotestsrc_init),
11266 (gst_videotestsrc_src_fixate):
11267 move fixation to a fixate function
11268 remove negotiate function, basesrc's is good enough
11269 fixes a bug for check when using the element alone
11271 2005-11-13 Edward Hervey <edward@fluendo.com>
11273 * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
11274 (key_toggle_cb), (main):
11275 Added checkboxes for adding/removing the accurate and key_unit seek
11278 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
11280 * configure.ac: back to HEAD
11282 === release 0.9.5 ===
11284 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
11287 releasing 0.9.5, "No No Kia"
11289 2005-11-11 Edward Hervey <edward@fluendo.com>
11291 * examples/seeking/seek.c: (make_parselaunch_pipeline):
11292 Added parse-launch syntax seeking mode for the seeking example.
11293 This should help stress-test even more cases.
11294 Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
11296 2005-11-11 Tim-Philipp Müller <tim at centricular dot net>
11298 * sys/xvimage/xvimagesink.c:
11299 (gst_xvimagesink_navigation_send_event):
11300 Check whether peer pad exists before sending navigation events
11303 2005-11-11 Michael Smith <msmith@fluendo.com>
11305 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
11306 (gst_vorbisenc_buffer_from_packet):
11307 * ext/vorbis/vorbisenc.h:
11308 Set duration on encoded buffers. This allows oggmux's
11309 max_page_delay parameter to actually work.
11311 2005-11-11 Tim-Philipp Müller <tim at centricular dot net>
11313 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11314 (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
11315 (gst_ffmpegcsp_avpicture_fill):
11316 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11317 (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
11318 Make palettes work again (see #132341). Use our own macros
11321 2005-11-10 Andy Wingo <wingo@pobox.com>
11323 * gst/playback/gstplaybasebin.c (prepare_output): Fix format
11326 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
11328 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11329 (gst_ffmpegcsp_transform_caps):
11330 Prefer passthrough in transform_caps
11332 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
11334 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
11335 check for ALSA errors properly, instead of relying on ALSA's
11336 error strings to serve to the user.
11338 2005-11-10 Wim Taymans <wim@fluendo.com>
11340 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
11341 (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
11342 (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
11343 Modernise the seek code.
11345 2005-11-10 Michael Smith <msmith@fluendo.com>
11347 * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
11348 (setup_substreams), (set_active_source):
11349 Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
11350 trying to go to NULL if we failed to read a file.
11352 2005-11-10 Wim Taymans <wim@fluendo.com>
11354 * gst/audiotestsrc/gstaudiotestsrc.c:
11355 (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
11356 (gst_audiotestsrc_create):
11357 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
11358 (gst_sinesrc_get_times), (gst_sinesrc_create):
11359 * gst/videotestsrc/gstvideotestsrc.c:
11360 (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
11361 (gst_videotestsrc_create):
11362 The base class can now sync for us.
11364 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
11366 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
11367 a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
11368 name=source autoprobe=false autoprobe-fps=false copy-mode=1
11369 device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
11370 format=(fourcc)I420" ! xvimagesink
11372 2005-11-10 Tim-Philipp Müller <tim at centricular dot net>
11374 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
11375 (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
11376 (gst_sinesrc_newsegment):
11377 Send newsegment event in TIME format, set duration if
11378 num-buffers is set, fix duration querying.
11380 2005-11-10 Michael Smith <msmith@fluendo.com>
11382 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
11383 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11384 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11385 (gst_ogg_mux_collected):
11386 Fix EOS handling, partially. Now forwarding an EOS event once we have
11387 EOS on all pads works correctly. However, we still don't properly set
11388 EOS on the actual ogg stream pages.
11390 2005-11-09 Tim-Philipp Müller <tim at centricular dot net>
11392 * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
11393 Set elements to NULL state before disposing of them.
11395 2005-11-08 Sebastien Cote <sebas642 at yahoo dot ca>
11397 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
11399 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11400 (gst_base_rtp_depayload_init),
11401 (gst_base_rtp_depayload_set_gst_timestamp):
11402 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11403 We need to send a newsegment event for each instance, not
11404 just for the first instance of this class (get rid of
11405 static variable in function). (#321011).
11407 2005-11-08 Michael Smith <msmith@fluendo.com>
11409 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
11410 (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
11411 (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
11412 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
11413 Forward port rewrite of muxing strategy to 0.9 version of oggmux.
11414 This makes us mux things correctly according to the ogg muxing
11415 rules. Still not handling EOS correctly right now, though.
11417 2005-11-08 Tim-Philipp Müller <tim at centricular dot net>
11419 * gst/audioconvert/gstaudioconvert.c:
11422 2005-11-08 Tim-Philipp Müller <tim at centricular dot net>
11424 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
11425 (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
11426 Initialise segment_stop to GST_CLOCK_TIME_NONE when
11427 creating a new chain; should fix live streaming. Also
11428 add more debug output and fix a typo.
11430 2005-11-08 Brian Cameron <brian dot cameron at sun dot com>
11432 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
11434 * gst/volume/gstvolume.c: (volume_set_caps):
11435 Fix compilation on Solaris with Forte. (#320923)
11437 2005-11-08 Wim Taymans <wim@fluendo.com>
11439 * gst-libs/gst/audio/gstbaseaudiosink.c:
11440 (gst_base_audio_sink_render):
11441 No need to do a typecheck.
11443 2005-11-07 Tim-Philipp Müller <tim at centricular dot net>
11445 * ext/alsa/gstalsa.h:
11446 We register a debug category, so let's use it.
11448 2005-11-04 Zeeshan Ali <zeenix@gmail.com>
11450 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11451 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
11452 Fixed a small problem.
11454 2005-11-04 Wim Taymans <wim@fluendo.com>
11456 * examples/seeking/Makefile.am:
11457 * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
11458 (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
11459 (make_playerbin_pipeline), (format_value), (update_scale),
11460 (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
11461 (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
11462 (print_usage), (main):
11463 Added app for playback speed testing.
11465 * examples/seeking/seek.c: (dynamic_link),
11466 (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
11467 (make_mpeg_pipeline), (do_seek), (set_update_scale),
11468 (message_received), (main):
11469 Updated seek example.
11471 2005-11-04 Zeeshan Ali <zeenix@gmail.com>
11473 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11474 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
11475 (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
11476 (gst_base_rtp_depayload_set_clock):
11477 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11478 Don't sleep on the bench (system clock) when you have a nice
11479 comfortable bed (Gstreamer clock) to sleep on.
11481 2005-11-03 Wim Taymans <wim@fluendo.com>
11483 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11484 (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
11485 (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
11486 Handle the case where a pad_block failed.
11488 2005-11-02 Sebastien Cote <sebas642@yahoo.ca>
11490 reviewed by: Zeeshan Ali <zeenix@gmail.com>
11492 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11493 (gst_base_rtp_depayload_add_to_queue),
11494 (gst_base_rtp_depayload_push),
11495 (gst_base_rtp_depayload_set_gst_timestamp),
11496 (gst_base_rtp_depayload_queue_release):
11497 Fixes some bugs in the depayloader's queuing/de-queueing code.
11499 2005-10-31 Michael Smith <msmith@fluendo.com>
11501 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
11502 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
11503 (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
11504 Patch from Alessandro Decina <alessandro@nnva.org>.
11505 Make oggdemux only find the final time in a chain, not per-pad,
11506 since the per-pad information can be very expensive to locate, and
11507 it isn't used anywhere. This makes reading a file containing
11508 OggSkeleton reasonably fast.
11509 Also, make chain finding work when there are logical bitstreams that
11510 can't be decoded. Fixes #319110.
11512 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
11514 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11515 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
11516 (gst_base_rtp_depayload_chain),
11517 (gst_base_rtp_depayload_add_to_queue),
11518 (gst_base_rtp_depayload_push),
11519 (gst_base_rtp_depayload_set_gst_timestamp),
11520 (gst_base_rtp_depayload_queue_release),
11521 (gst_base_rtp_depayload_start_thread),
11522 (gst_base_rtp_depayload_set_property),
11523 (gst_base_rtp_depayload_get_property):
11524 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11525 Some random fixes, to fullfill the desires of thomas.
11527 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
11529 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11530 (gst_base_rtp_depayload_add_to_queue),
11531 (gst_base_rtp_depayload_push):
11532 Fixed the queueing algorithm.
11534 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
11536 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11537 (gst_base_rtp_depayload_push):
11540 2005-10-31 Wim Taymans <wim@fluendo.com>
11542 * gst-libs/gst/audio/gstringbuffer.h:
11545 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11546 (gst_ffmpeg_caps_to_pixfmt):
11547 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11548 (gst_ffmpegcsp_set_caps):
11549 Some more comments.
11550 Handle missing required caps fields better.
11552 2005-10-31 Wim Taymans <wim@fluendo.com>
11554 * gst-libs/gst/audio/gstbaseaudiosink.c:
11555 (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
11556 (gst_base_audio_sink_render):
11557 * gst-libs/gst/audio/gstringbuffer.c:
11558 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
11559 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
11560 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
11561 (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
11562 (gst_ring_buffer_read):
11563 * gst-libs/gst/audio/gstringbuffer.h:
11564 Add flushing mode to the ringbuffer so that it in all cases does
11565 not try to handle more audio. This makes sure it does not try to
11566 block anymore when flushing and fixes a livelock.
11568 2005-10-29 Tim-Philipp Müller <tim at centricular dot net>
11570 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
11571 (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
11572 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
11573 Explicitly check for -1 values before doing a conversion
11574 and always map them to -1. (#315545)
11576 2005-10-28 Thomas Vander Stichele <thomas at apestaart dot org>
11578 * gst/playback/gstplaybin.c: (gen_video_element):
11579 first try autovideosink, then xvimagesink, then error out
11581 add translatable file
11596 update translations
11598 2005-10-27 Philippe Khalaf <burger at speedy dot org>
11600 * gst-libs/gst/rtp/gstbasedepayload.c:
11601 * gst-libs/gst/rtp/gstbasedepayload.h:
11604 2005-10-27 Tim-Philipp Müller <tim at centricular dot net>
11606 * gst/playback/.cvsignore:
11607 * gst/playback/decodetest.c:
11608 * gst/playback/test3.c:
11609 Port these two tests as well.
11611 2005-10-27 Wim Taymans <wim@fluendo.com>
11613 * ext/theora/theoradec.c: (theora_dec_src_query),
11614 (theora_dec_sink_event):
11615 * ext/theora/theoraenc.c: (theora_enc_sink_event),
11616 (theora_enc_change_state):
11617 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
11618 (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
11619 Take proper locks when handling events.
11621 2005-10-27 Wim Taymans <wim@fluendo.com>
11623 * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
11624 (gst_adder_change_state):
11625 Fix timestamps and fix deadlock when stopping the collectpads.
11627 2005-10-27 Zeeshan Ali <zeenix@gmail.com>
11629 * gst-libs/gst/rtp/gstrtpbuffer.h:
11630 Declaring the payload types as strings too so that they can be used
11631 in the padtemplate inialization.
11633 2005-10-26 Andre Magalhaes <andrunko@gmail.com>
11635 reviewed by: Zeeshan Ali <zeenix@gmail.com>
11637 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11638 (gst_base_rtp_depayload_class_init):
11639 Fixes a small but nasty bug. The derived elements no longer segfaults
11642 2005-10-26 Michael Smith <msmith@fluendo.com>
11644 * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
11645 When clearing an audioconvert context, set tmpbufsize to zero, so
11646 we'll allocate it again later if required.
11647 This fixes audioconvert re-negotiating formats, which previously
11648 segfaulted with a NULL destination buffer.
11650 2005-10-26 Zeeshan Ali <zeenix@gmail.com>
11652 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11653 (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
11654 (gst_base_rtp_depayload_set_gst_timestamp),
11655 (gst_base_rtp_depayload_queue_release):
11656 Fixed a smalll memleak.
11658 2005-10-26 Zeeshan Ali <zeenix@gmail.com>
11659 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11660 (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
11661 (gst_base_rtp_depayload_finalize),
11662 (gst_base_rtp_depayload_setcaps),
11663 (gst_base_rtp_depayload_add_to_queue),
11664 (gst_base_rtp_depayload_push),
11665 (gst_base_rtp_depayload_set_gst_timestamp),
11666 (gst_base_rtp_depayload_queue_release),
11667 (gst_base_rtp_depayload_thread),
11668 (gst_base_rtp_depayload_change_state):
11669 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11670 Changed the C++ comments to C comments
11672 2005-10-26 Tim-Philipp Müller <tim at centricular dot net>
11674 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
11675 * gst/tcp/gsttcpclientsrc.h:
11676 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
11677 * gst/tcp/gsttcpserversrc.h:
11678 Remove unused 'curoffset' structure member.
11680 2005-10-25 Zeeshan Ali <zeenix@gmail.com>
11682 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11683 (gst_base_rtp_depayload_base_init),
11684 (gst_base_rtp_depayload_finalize):
11685 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11686 * gst-libs/gst/rtp/gstbasertppayload.h:
11687 The pad-template on the sinkpad should be set by the derived classes.
11688 Also added some useful macros.
11690 2005-10-24 Wim Taymans <wim@fluendo.com>
11692 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
11693 Correctly flush decoder samples even if we could not
11694 copy them to an output buffer. Fixes #319618.
11696 2005-10-24 Julien MOUTTE <julien@moutte.net>
11698 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
11699 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
11700 the caps against our xcontext caps.
11702 2005-10-24 Wim Taymans <wim@fluendo.com>
11704 * gst-libs/gst/audio/gstbaseaudiosink.c:
11705 (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11707 Use sync property from baseclass to disable sync.
11709 2005-10-24 Wim Taymans <wim@fluendo.com>
11711 * gst-libs/gst/audio/gstbaseaudiosink.c:
11712 (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11713 Buffers with no timestamps get aligned with previous buffers or
11714 on underrun, played ASAP.
11716 2005-10-24 Julien MOUTTE <julien@moutte.net>
11718 * gst-libs/gst/video/video.h:
11719 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11720 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
11721 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
11722 here comes my change on caps for framerate and geometry range.
11723 We are now accepting 1 to MAXINT for width and height, and from
11724 0.0 to MAXDOUBLE for framerate. That allows duration less png frames
11725 to be blended correctly in videomixer.
11727 2005-10-24 Thomas Vander Stichele <thomas at apestaart dot org>
11732 === release 0.9.4 ===
11734 2005-10-23 Thomas Vander Stichele <thomas at apestaart dot org>
11739 releasing 0.9.4, "Velociraptor"
11741 2005-10-23 Thomas Vander Stichele <thomas at apestaart dot org>
11743 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
11747 2005-10-21 Wim Taymans <wim@fluendo.com>
11749 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11750 (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
11751 (pad_blocked), (close_pad_link), (new_pad):
11752 Don't try to remove elements twice.
11754 2005-10-21 Wim Taymans <wim@fluendo.com>
11756 * ext/theora/theoradec.c: (theora_dec_src_query),
11757 (theora_dec_sink_event):
11758 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11759 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11760 (vorbis_handle_data_packet):
11761 * ext/vorbis/vorbisdec.h:
11764 * gst-libs/gst/audio/gstbaseaudiosink.c:
11765 (gst_base_audio_sink_render):
11766 Don't try to sync on buffers without a timestamp.
11768 2005-10-21 Wim Taymans <wim@fluendo.com>
11770 * ext/theora/theoradec.c: (theora_dec_src_query),
11771 (theora_dec_sink_event):
11772 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11773 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11774 (vorbis_handle_data_packet):
11775 * ext/vorbis/vorbisdec.h:
11778 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
11780 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
11781 (gst_vorbisenc_src_query):
11782 Implement position and duration queries.
11784 * gst/playback/test3.c: (update_scale), (main):
11785 Fix for async state changes and print nicer output.
11787 2005-10-20 Wim Taymans <wim@fluendo.com>
11789 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11790 (dump_element_stats), (main):
11791 * gst/playback/test6.c: (main):
11794 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
11796 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11797 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11798 Don't use functions for position queries when handling
11801 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
11803 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11804 (vorbis_handle_data_packet), (vorbis_dec_chain),
11805 (vorbis_dec_change_state):
11806 * ext/vorbis/vorbisdec.h:
11807 Vorbis streams can be embedded in other container formats
11808 than ogg, container formats where the demuxer might set
11809 timestamps on encoded vorbis buffers instead of those silly
11810 granulepos thingies. In short: make vorbisdec handle
11811 timestamps on incoming buffers as well.
11813 2005-10-20 Wim Taymans <wim@fluendo.com>
11815 * gst/playback/gstplaybasebin.c: (group_destroy),
11816 (gst_play_base_bin_change_state):
11818 Handle case where playbasebin is now ASYNC because
11821 2005-10-19 Tim-Philipp Müller <tim at centricular dot net>
11823 * gst/audioconvert/Makefile.am:
11824 * gst/audioconvert/bufferframesconvert.c:
11825 * gst/audioconvert/plugin.c: (plugin_init):
11826 * gst/audioconvert/plugin.h:
11827 And bye bye buffer-frames-convert
11829 2005-10-19 Wim Taymans <wim@fluendo.com>
11831 * check/elements/audioconvert.c:
11832 * docs/libs/tmpl/gstaudio.sgml:
11833 * docs/libs/tmpl/gstcolorbalance.sgml:
11834 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11835 (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
11836 * ext/vorbis/vorbisenc.c: (raw_caps_factory):
11837 * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
11838 * gst-libs/gst/audio/audio.h:
11839 * gst/audioconvert/audioconvert.h:
11840 * gst/audioconvert/gstaudioconvert.c:
11841 (gst_audio_convert_parse_caps):
11842 * gst/volume/gstvolume.c:
11843 Bye bye buffer-frames.
11845 2005-10-19 Wim Taymans <wim@fluendo.com>
11847 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
11848 (query_positions_elems), (query_positions_pads), (update_scale),
11849 (do_seek), (set_update_scale), (message_received), (main):
11850 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
11851 (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
11852 (gst_ogg_demux_loop):
11853 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
11854 * ext/theora/theoradec.c: (theora_dec_src_query),
11855 (theora_dec_sink_event):
11856 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11857 (vorbis_dec_sink_event), (vorbis_handle_data_packet):
11858 * gst/adder/gstadder.c: (gst_adder_query):
11859 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11860 * gst/playback/test3.c: (update_scale):
11861 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11862 (dump_element_stats), (main):
11863 * gst/playback/test6.c: (main):
11864 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11867 2005-10-19 Tim-Philipp Müller <tim at centricular dot net>
11869 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
11870 (xml_check_first_element), (xml_type_find), (smil_type_find),
11872 Add typefinding for SMIL and for generic XML. Based on patch by
11873 Akos Maroy (#308663).
11875 2005-10-18 Wim Taymans <wim@fluendo.com>
11877 * gst/playback/Makefile.am:
11878 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11879 (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
11880 (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
11881 (try_to_link_1), (new_pad), (no_more_pads), (type_found),
11882 (gst_decode_bin_change_state):
11883 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
11884 (gst_play_bin_send_event_to_sink):
11885 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11886 (dump_element_stats), (main):
11887 * gst/playback/test6.c: (main):
11888 Make playbin async, it'll commit state to paused when all streams
11891 Added test6.c to show async behaviour.
11893 2005-10-18 Wim Taymans <wim@fluendo.com>
11895 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
11896 (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
11897 Fix for segment-start/stop API change.
11899 2005-10-18 Wim Taymans <wim@fluendo.com>
11901 * check/Makefile.am:
11902 * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
11904 Add future test for clock selection.
11906 2005-10-18 Wim Taymans <wim@fluendo.com>
11908 * ext/alsa/gstalsasink.c: (gst_alsasink_init),
11909 (gst_alsasink_close):
11910 Set handle to NULL.
11912 * gst-libs/gst/audio/gstringbuffer.c:
11913 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
11914 (gst_ring_buffer_acquire), (gst_ring_buffer_release),
11915 (gst_ring_buffer_start), (gst_ring_buffer_pause),
11916 (gst_ring_buffer_stop), (gst_ring_buffer_commit),
11917 (gst_ring_buffer_read):
11920 2005-10-17 Stefan Kost <ensonic@users.sf.net>
11922 * gst/audiotestsrc/Makefile.am:
11923 * gst/sine/Makefile.am:
11924 * gst/volume/Makefile.am:
11925 fix broken build of controllerized plugins
11927 2005-10-17 Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
11929 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
11931 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
11932 (gst_riff_create_video_template_caps):
11933 Add support for Indeo-3 (IV32).
11935 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
11940 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
11942 * gst-libs/gst/video/video.c: (gst_video_get_size):
11943 * gst/audiotestsrc/gstaudiotestsrc.c:
11946 2005-10-17 Andy Wingo <wingo@pobox.com>
11948 * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
11949 with the collectpads change.
11950 (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
11952 * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
11954 * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
11956 * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
11957 alloc_buffer flow return to callers.
11958 (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
11959 change. Fix some memleaks in theoraenc.
11961 * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
11962 in strange circumstance.
11964 2005-10-17 Julien MOUTTE <julien@moutte.net>
11966 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11967 (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
11968 from caps, let's use the caps...
11970 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
11973 put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
11975 2005-10-16 Thomas Vander Stichele <thomas at apestaart dot org>
11977 * gst-libs/gst/interfaces/Makefile.am:
11980 2005-10-16 Andy Wingo <wingo@pobox.com>
11982 * gst/playback/gstdecodebin.c
11983 (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
11985 (try_to_link_1): Increase kraziness level.
11987 2005-10-16 Thomas Vander Stichele <thomas at apestaart dot org>
11990 restructure like the core one
11991 * gst-libs/gst/audio/Makefile.am:
11992 * gst-libs/gst/interfaces/Makefile.am:
11993 * gst-libs/gst/net/Makefile.am:
11994 * gst-libs/gst/riff/Makefile.am:
11995 * gst-libs/gst/rtp/Makefile.am:
11996 * gst-libs/gst/tag/Makefile.am:
11997 * gst-libs/gst/video/Makefile.am:
11998 use correct linker flags, now the libs are properly versioned
11999 * check/elements/audioconvert.c: (verify_convert):
12000 * ext/alsa/gstalsaplugin.c:
12001 * ext/cdparanoia/gstcdparanoia.c:
12002 * ext/gnomevfs/gstgnomevfs.c:
12003 * ext/libvisual/visual.c:
12004 * ext/ogg/gstogg.c:
12005 * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
12006 * ext/theora/theora.c:
12007 * ext/vorbis/vorbis.c:
12008 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
12009 * gst-libs/gst/tag/gsttagediting.c:
12010 * gst-libs/gst/video/video.c:
12011 * gst/adder/gstadder.c:
12012 * gst/audioconvert/plugin.c:
12013 * gst/audiorate/gstaudiorate.c:
12014 * gst/audioresample/gstaudioresample.c:
12015 * gst/audioresample/resample_ref.c: (resample_scale_ref):
12016 * gst/audioscale/gstaudioscale.c:
12017 * gst/audioscale/resample.c:
12018 * gst/audiotestsrc/gstaudiotestsrc.c:
12019 * gst/ffmpegcolorspace/gstffmpeg.c:
12020 * gst/playback/gstdecodebin.c: (close_pad_link):
12021 * gst/playback/gstplaybin.c: (gen_video_element),
12022 (gen_audio_element):
12023 * gst/sine/gstsinesrc.c:
12024 * gst/subparse/gstsubparse.c:
12025 * gst/tags/gsttagediting.c:
12026 * gst/tcp/gsttcpplugin.c:
12027 * gst/typefind/gsttypefindfunctions.c:
12028 * gst/videorate/gstvideorate.c:
12029 * gst/videoscale/gstvideoscale.c:
12030 * gst/videotestsrc/gstvideotestsrc.c:
12031 * gst/volume/gstvolume.c:
12032 * sys/v4l/gstv4l.c:
12033 * sys/ximage/ximage.c:
12034 * sys/xvimage/xvimagesink.c:
12037 2005-10-13 Tim-Philipp Müller <tim at centricular dot net>
12039 * ext/vorbis/vorbisenc.c:
12040 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
12041 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
12042 (gst_tag_to_vorbis_comments):
12043 Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
12045 2005-10-13 Stefan Kost <ensonic@users.sf.net>
12047 * examples/stats/mp2ogg.c:
12048 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12051 2005-10-13 Michael Smith <msmith@fluendo.com>
12053 * ext/ogg/gstoggmux.c:
12054 Use magic glib macros to define constants as 64 bit, to ensure
12055 appropriate vararg passing.
12057 2005-10-13 Michael Smith <msmith@fluendo.com>
12059 * ext/ogg/gstoggmux.c:
12060 * gst/audioconvert/audioconvert.c: (float):
12061 Don't use LL suffix, as it's not portable, and neither of these
12062 uses required it anyway.
12064 2005-10-12 Stefan Kost <ensonic@users.sf.net>
12066 * examples/indexing/indexmpeg.c: (main):
12067 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
12068 (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
12069 (cdparanoia_convert), (cdparanoia_query):
12070 * ext/cdparanoia/gstcdparanoia.h:
12071 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
12072 (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
12073 (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
12074 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
12075 * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
12076 * gst/playback/gststreamselector.c: (gst_stream_selector_init):
12077 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
12078 (gst_multifdsink_render), (gst_multifdsink_start),
12079 (gst_multifdsink_stop):
12080 * gst/tcp/gstmultifdsink.h:
12081 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
12082 (gst_tcpclientsink_render), (gst_tcpclientsink_start),
12083 (gst_tcpclientsink_stop):
12084 * gst/tcp/gsttcpclientsink.h:
12085 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
12086 (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
12087 (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
12088 * gst/tcp/gsttcpclientsrc.h:
12089 * gst/tcp/gsttcpserversink.h:
12090 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
12091 (gst_tcpserversrc_create), (gst_tcpserversrc_start),
12092 (gst_tcpserversrc_stop):
12093 * gst/tcp/gsttcpserversrc.h:
12094 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
12095 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
12096 * sys/ximage/ximagesink.c: (gst_ximagesink_init):
12097 renamed GST_FLAGS macros to GST_OBJECT_FLAGS
12098 moved bitshift from macro to enum definition
12100 2005-10-12 Wim Taymans <wim@fluendo.com>
12102 * examples/seeking/Makefile.am:
12105 2005-10-12 Wim Taymans <wim@fluendo.com>
12107 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12108 (gst_ring_buffer_read), (gst_ring_buffer_clear):
12109 Don't assert on normal stuff.
12111 * gst/playback/gstplaybin.c: (do_playbin_seek):
12114 2005-10-12 Wim Taymans <wim@fluendo.com>
12116 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12117 * examples/seeking/Makefile.am:
12118 * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
12119 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
12120 (do_seek), (set_update_scale), (message_received), (main):
12121 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12122 (gst_ring_buffer_read), (gst_ring_buffer_clear):
12123 Update for _get_state() API change.
12125 2005-10-11 Wim Taymans <wim@fluendo.com>
12127 * gst-libs/gst/audio/gstbaseaudiosink.c:
12128 (gst_base_audio_sink_render):
12129 * gst-libs/gst/audio/gstbaseaudiosrc.c:
12130 (gst_base_audio_src_create):
12131 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12132 (gst_ring_buffer_read):
12134 Commit and read from ringbuffer in samples rather than bytes.
12136 2005-10-11 Wim Taymans <wim@fluendo.com>
12138 * gst-libs/gst/audio/gstbaseaudiosink.c:
12139 (gst_base_audio_sink_render):
12140 Respect segment rate and accum when scheduling samples.
12142 2005-10-11 Julien MOUTTE <julien@moutte.net>
12144 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
12145 (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
12146 EOS correctly, that needs more work.
12148 2005-10-11 Wim Taymans <wim@fluendo.com>
12150 * check/generic/states.c: (GST_START_TEST):
12151 remove old property.
12153 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
12154 (gst_ogg_demux_perform_seek):
12155 * ext/theora/theoradec.c: (theora_dec_sink_event):
12156 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
12157 (vorbis_handle_data_packet):
12158 * gst-libs/gst/rtp/gstbasertpdepayload.c:
12159 (gst_base_rtp_depayload_set_gst_timestamp):
12160 * gst/videorate/gstvideorate.c: (gst_videorate_event):
12161 Update for newsegment API change.
12163 2005-10-11 Michael Smith <msmith@fluendo.com>
12165 * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
12166 (do_playbin_seek), (gst_play_bin_send_event):
12167 Override send_event differently, so that we can takes bits of
12168 functionality from GstPipeline (special handling for seeks,
12169 including pausing/resuming, and resetting stream time) and still get
12170 the appropriate behaviour of only forwarding event to a single sink,
12171 rather than all of them.
12172 Unfortunately requires a lot of code duplication, but the
12173 alternatives are equally ugly in the end.
12175 2005-10-11 Thomas Vander Stichele <thomas at apestaart dot org>
12177 * check/elements/audioconvert.c: (setup_audioconvert),
12178 (cleanup_audioconvert), (get_int_caps), (verify_convert),
12179 (GST_START_TEST), (audioconvert_suite):
12180 clean up tests a little, fix some leaks.
12182 2005-10-10 Wim Taymans <wim@fluendo.com>
12184 * ext/alsa/gstalsasink.c:
12185 Also allow unsigned int.
12187 * gst-libs/gst/audio/gstbaseaudiosrc.c:
12188 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
12191 2005-10-10 Wim Taymans <wim@fluendo.com>
12193 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12194 Small update, use API as stated in design docs.
12196 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
12197 (update_scale), (do_seek), (seek_cb), (set_update_scale),
12198 (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
12199 (message_received), (main):
12200 Updated seek example for GOption. Some usability improvements.
12202 2005-10-10 Wim Taymans <wim@fluendo.com>
12204 * gst/audioconvert/audioconvert.h:
12205 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
12206 (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
12207 Alloc temp storage somewhere else where we can do it more
12210 2005-10-10 Wim Taymans <wim@fluendo.com>
12212 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
12213 (gst_tcpserversrc_start):
12214 Don't block in accept while doing the state change, move
12215 to poll and make cancellable.
12217 2005-10-09 Philippe Khalaf <burger@speedy.org>
12219 * gst-libs/gst/rtp/rtpbasedepayload.c:
12220 Set timestamp and add queue delay to timestamp
12221 * gst-libs/gst/rtp/rtpbuffer.h:
12222 Set correct payload type for h263
12224 2005-10-09 Stefan Kost <ensonic@users.sf.net>
12226 * gst/audiotestsrc/gstaudiotestsrc.c:
12227 (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
12228 (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
12229 (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
12230 (gst_audiotestsrc_create_triangle),
12231 (gst_audiotestsrc_create_silence),
12232 (gst_audiotestsrc_create_white_noise),
12233 (gst_audiotestsrc_init_pink_noise),
12234 (gst_audiotestsrc_generate_pink_noise_value),
12235 (gst_audiotestsrc_create_pink_noise),
12236 (gst_audiotestsrc_change_wave):
12237 * gst/audiotestsrc/gstaudiotestsrc.h:
12238 fixed typo, added pink noise
12240 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
12242 * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
12244 Add wavpack and spc typefind functions from 0.8 branch.
12246 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
12248 * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
12249 (ar_type_find), (msdos_type_find), (plugin_init):
12250 Add typefind functions for tar archives, ar archives,
12251 RAR archives, and msdos-executables (dlls, exe, etc.).
12252 Some of those would be wrongly identified as mpeg
12253 streams of some sort before (#315550).
12255 2005-10-09 Stefan Kost <ensonic@users.sf.net>
12258 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12259 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12260 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
12261 * gst/audiotestsrc/Makefile.am:
12262 * gst/audiotestsrc/gstaudiotestsrc.c:
12263 (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
12264 (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
12265 (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
12266 (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
12267 (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
12268 (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
12269 (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
12270 (gst_audiotestsrc_create_silence),
12271 (gst_audiotestsrc_create_white_noise),
12272 (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
12273 (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
12274 (gst_audiotestsrc_start), (plugin_init):
12275 * gst/audiotestsrc/gstaudiotestsrc.h:
12276 add new plugin and element
12277 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
12280 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
12282 * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
12283 (gst_adder_init), (gst_adder_request_new_pad),
12284 (gst_adder_change_state):
12285 Add query function to source pad, so adder reports the correct
12286 time/sample position when queried (#315457); fix state change
12287 function; use GST_DEBUG_FUNCPTR() for pad functions.
12289 2005-10-08 Thomas Vander Stichele <thomas at apestaart dot org>
12291 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
12292 Fix leaks in typefind registration
12293 Clean up the gratuitous commenting and whitespacing a little
12295 2005-10-08 Wim Taymans <wim@fluendo.com>
12297 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
12298 Only actually wait for the thread to be stopped if it's
12301 2005-10-08 Wim Taymans <wim@fluendo.com>
12303 * gst-libs/gst/audio/gstbaseaudiosink.c:
12304 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
12305 If we receive EOS we can start playback of what we had.
12307 2005-10-08 Wim Taymans <wim@fluendo.com>
12309 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
12310 (gst_multifdsink_finalize), (multifdsink_hash_remove),
12311 (gst_multifdsink_stop):
12312 Fix crasher when going to NULL multiple times.
12314 2005-10-06 Wim Taymans <wim@fluendo.com>
12316 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
12317 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
12318 * gst-libs/gst/audio/gstbaseaudiosrc.h:
12319 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
12320 patch from Edgard Lima <edgard.lima@indt.org.br>
12321 Fixed gstbaseaudiosrc adding ring buffer sync to it.
12323 2005-10-06 Wim Taymans <wim@fluendo.com>
12325 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
12326 Report the FLOW_RETURN as string in the error message.
12328 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
12329 Don't assert when clearing an unnegotiated buffer.
12331 2005-10-04 Michael Smith <msmith@fluendo.com>
12333 * gst/playback/gstplaybasebin.c: (group_destroy),
12334 (gen_preroll_element), (remove_groups), (setup_source):
12335 * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
12336 (setup_sinks), (gst_play_bin_send_event),
12337 (gst_play_bin_change_state):
12338 Set state to NULL before removing from bin. Fix refcounting.
12340 2005-10-04 Michael Smith <msmith@fluendo.com>
12342 * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
12343 Correct refcounting in send_event() function. Previously was wrong
12344 if the first sink was unable to handle the event.
12346 2005-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
12349 back to development
12351 === release 0.9.3 ===
12353 2005-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
12356 Releasing 0.9.3, "De Facto"
12358 2005-10-03 Andy Wingo <wingo@pobox.com>
12360 * gst/playback/gstdecodebin.c (try_to_link_1)
12361 (remove_element_chain): set element to NULL before removing it.
12363 2005-10-02 Johan Dahlin <johan@gnome.org>
12365 * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols):
12366 protect gst_gnomevfs_get_supported_uris by a mutex, to make it
12369 2005-10-02 Andy Wingo <wingo@pobox.com>
12371 * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear)
12372 (gst_ring_buffer_prepare_read):
12373 * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
12376 2005-09-29 Wim Taymans <wim@fluendo.com>
12378 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
12379 * ext/theora/theoradec.c: (theora_handle_data_packet):
12380 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
12381 Propagate error codes from alloc_buffer too.
12383 2005-09-29 Wim Taymans <wim@fluendo.com>
12385 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
12388 * gst/playback/Makefile.am:
12389 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
12390 (dump_element_stats), (main):
12391 Added example stream introspection code.
12393 2005-09-28 Stefan Kost <ensonic@users.sf.net>
12395 * gst/adder/gstadder.c: (gst_adder_collected):
12396 fix adder for float elements
12398 2005-09-28 Wim Taymans <wim@fluendo.com>
12400 * gst-libs/gst/audio/gstbaseaudiosink.c:
12401 (gst_base_audio_sink_class_init),
12402 (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
12403 * gst-libs/gst/audio/gstbaseaudiosrc.c:
12404 (gst_base_audio_src_class_init),
12405 (gst_base_audio_src_provide_clock):
12406 get_clock -> provide_clock
12408 2005-09-28 Andy Wingo <wingo@pobox.com>
12410 * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
12413 * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
12416 * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
12417 Actually add the pad template.
12418 (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
12420 * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
12423 * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
12424 from fdsrc. Get caps in create() instead of start() so it can be
12425 interrupted. Interruption somewhat untested.
12427 * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
12428 Proper EOS handling.
12430 2005-09-27 Andy Wingo <wingo@pobox.com>
12432 * gst/tcp/gsttcpclientsrc.c: Cleaned up.
12434 * gst/tcp/gsttcpserversrc.c: Cleaned up.
12436 * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
12438 * gst/tcp/gsttcp.h:
12439 * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
12440 out of tcpclientsrc.c. Cancellable.
12441 (gst_tcp_socket_read): Made private, cancellable, with better
12442 diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
12443 (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
12444 whole buffer, and better diagnostics.
12445 (gst_tcp_gdp_read_caps): Same.
12447 * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
12449 2005-09-26 Andy Wingo <wingo@pobox.com>
12451 * gst/sine/gstsinesrc.h:
12452 * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
12453 change the 'sync' property to 'is-live' and implement it halfway,
12454 update for controller api change.
12456 * gst/volume/gstvolume.c (volume_transform_ip): Update for
12457 controller api change.
12459 2005-09-24 Wim Taymans <wim@fluendo.com>
12461 * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
12462 * gst-libs/gst/audio/gstaudiosink.c:
12463 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
12464 (gst_audioringbuffer_stop):
12465 * gst-libs/gst/audio/gstbaseaudiosink.c:
12466 (gst_base_audio_sink_event), (gst_base_audio_sink_render),
12467 (gst_base_audio_sink_change_state):
12468 * gst-libs/gst/audio/gstbaseaudiosink.h:
12469 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
12470 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
12471 (gst_ring_buffer_commit), (gst_ring_buffer_read):
12472 * gst-libs/gst/audio/gstringbuffer.h:
12473 Fix sync again. Moved sample alignment to basesink.
12475 2005-09-23 Thomas Vander Stichele <thomas at apestaart dot org>
12477 * docs/plugins/Makefile.am:
12478 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12479 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12480 * gst/volume/gstvolume.c:
12482 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
12483 * gst-libs/gst/audio/audio.h:
12484 add conversion macros for frames <-> clocktime
12486 2005-09-23 David Schleef <ds@schleef.org>
12488 * gst/audioresample/Makefile.am:
12489 * gst/audioresample/debug.h:
12490 * gst/audioresample/gstaudioresample.c:
12491 * gst/audioresample/resample.c: Convert to using gst debugging
12493 2005-09-22 Wim Taymans <wim@fluendo.com>
12495 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
12496 (gst_play_bin_send_event):
12497 Only seek on one sink, the first one that succeeds.
12499 2005-09-22 Michael Smith <msmith@fluendo.com>
12501 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
12502 (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
12503 Don't flush encoder state unless we have an initialised encoder.
12504 Clear out encoder state on PAUSED_TO_READY.
12506 2005-09-22 Wim Taymans <wim@fluendo.com>
12508 * gst-libs/gst/rtp/gstbasertppayload.c:
12509 (gst_basertppayload_class_init), (gst_basertppayload_init),
12510 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12511 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12512 (gst_basertppayload_is_filled), (gst_basertppayload_push),
12513 (gst_basertppayload_set_property),
12514 (gst_basertppayload_get_property),
12515 (gst_basertppayload_change_state):
12516 * gst-libs/gst/rtp/gstbasertppayload.h:
12517 Added max-ptime to control amount of data in the rtp packets.
12519 2005-09-21 Andy Wingo <wingo@pobox.com>
12521 * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
12524 * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
12525 can be called multiple times, dogs.
12527 2005-09-21 Wim Taymans <wim@fluendo.com>
12529 * gst-libs/gst/rtp/gstbasertppayload.c:
12530 (gst_basertppayload_class_init), (gst_basertppayload_init),
12531 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12532 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12533 (gst_basertppayload_push), (gst_basertppayload_get_property),
12534 (gst_basertppayload_change_state):
12537 2005-09-21 Stefan Kost <ensonic@users.sf.net>
12539 * docs/libs/compiling.sgml:
12542 2005-09-20 Wim Taymans <wim@fluendo.com>
12544 * gst-libs/gst/rtp/gstbasertppayload.c:
12545 (gst_basertppayload_class_init), (gst_basertppayload_init),
12546 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12547 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12548 (gst_basertppayload_push), (gst_basertppayload_set_property),
12549 (gst_basertppayload_get_property),
12550 (gst_basertppayload_change_state):
12551 * gst-libs/gst/rtp/gstbasertppayload.h:
12552 Added property to configure sequence number offsets.
12554 2005-09-20 Wim Taymans <wim@fluendo.com>
12556 * gst-libs/gst/rtp/gstbasertppayload.c:
12557 (gst_basertppayload_class_init), (gst_basertppayload_init),
12558 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12559 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12560 (gst_basertppayload_push), (gst_basertppayload_set_property),
12561 (gst_basertppayload_get_property),
12562 (gst_basertppayload_change_state):
12563 * gst-libs/gst/rtp/gstbasertppayload.h:
12564 Make timestamp offset configurable.
12566 2005-09-20 Thomas Vander Stichele <thomas at apestaart dot org>
12568 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12569 fix wrong pop/unref
12571 2005-09-19 Torsten Schoenfeld <kaffeetisch at gmx dot net>
12573 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
12575 * gst-libs/gst/interfaces/propertyprobe.c:
12576 (gst_property_probe_probe_property_name),
12577 (gst_property_probe_needs_probe_name),
12578 (gst_property_probe_get_values_name),
12579 (gst_property_probe_probe_and_get_values_name):
12580 Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
12581 G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
12583 2005-09-19 Thomas Vander Stichele <thomas at apestaart dot org>
12585 * check/Makefile.am:
12586 have some tests be disabled for valgrinding
12587 * check/elements/vorbisdec.c: (cleanup_vorbisdec),
12589 * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
12590 Fix A Leak. Chain To Parent Finalize.
12592 2005-09-19 Wim Taymans <wim@fluendo.com>
12594 * examples/seeking/seek.c: (make_wav_pipeline), (main):
12595 Fixed wav pipeline.
12597 2005-09-19 Wim Taymans <wim@fluendo.com>
12599 * gst-libs/gst/rtp/gstbasertppayload.c:
12600 (gst_basertppayload_class_init), (gst_basertppayload_init),
12601 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12602 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12603 (gst_basertppayload_push), (gst_basertppayload_get_property),
12604 (gst_basertppayload_change_state):
12605 Posting ERROR and WARNING messages is good.
12607 2005-09-19 Wim Taymans <wim@fluendo.com>
12609 * gst-libs/gst/rtp/gstbasertpdepayload.c:
12610 (gst_base_rtp_depayload_add_to_queue),
12611 (gst_base_rtp_depayload_push),
12612 (gst_base_rtp_depayload_set_gst_timestamp),
12613 (gst_base_rtp_depayload_queue_release):
12614 This one was not supposed to go in.
12616 2005-09-19 Wim Taymans <wim@fluendo.com>
12618 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12621 * gst-libs/gst/rtp/gstbasertpdepayload.c:
12622 (gst_base_rtp_depayload_chain),
12623 (gst_base_rtp_depayload_add_to_queue),
12624 (gst_base_rtp_depayload_push),
12625 (gst_base_rtp_depayload_set_gst_timestamp),
12626 (gst_base_rtp_depayload_queue_release):
12629 * gst-libs/gst/rtp/gstbasertppayload.c:
12630 (gst_basertppayload_class_init), (gst_basertppayload_init),
12631 (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
12632 (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12633 (gst_basertppayload_get_property),
12634 (gst_basertppayload_change_state):
12635 Added debugging category.
12637 2005-09-18 David Schleef <ds@schleef.org>
12639 * gst/playback/gstdecodebin.c: free plugin list correctly
12640 * gst/playback/gstplaybin.c: emit warning if autovideosink
12641 and autoaudiosink can't be found (instead of segfaulting)
12643 2005-09-17 Thomas Vander Stichele <thomas at apestaart dot org>
12645 * check/elements/audioconvert.c: (GST_START_TEST):
12646 try out 24 bit conversion
12648 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12650 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
12651 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
12652 (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
12653 * ext/vorbis/vorbisenc.h:
12654 Fix EOS handling. Still needs a fix in the ogg muxer to
12655 mark the last page as eos.
12657 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12659 * common/gtk-doc-plugins.mak:
12660 * docs/plugins/Makefile.am:
12661 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12662 * gst/ffmpegcolorspace/Makefile.am:
12663 * gst/ffmpegcolorspace/avcodec.h:
12664 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12665 * gst/tcp/gstmultifdsink.c:
12666 fix up ffmpegcolorspace docs; extract header
12668 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12670 * common/gtk-doc-plugins.mak:
12671 * docs/plugins/Makefile.am:
12672 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12673 * ext/theora/Makefile.am:
12674 * ext/theora/gsttheoraenc.h:
12675 * ext/theora/theoraenc.c:
12676 * ext/vorbis/vorbisenc.c:
12677 pick up signals and args for vorbis; add some docs for vorbis
12679 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12681 * common/gstdoc-scangobj:
12682 * common/gtk-doc-plugins.mak:
12683 * docs/libs/Makefile.am:
12684 * docs/plugins/gst-plugins-base-plugins.args:
12685 * docs/plugins/gst-plugins-base-plugins.hierarchy:
12686 * docs/plugins/gst-plugins-base-plugins.interfaces:
12687 * docs/plugins/gst-plugins-base-plugins.prerequisites:
12688 * docs/plugins/gst-plugins-base-plugins.signals:
12689 only scanobj stuff from our source module. Not sure yet
12690 if that's correct, given the hierarchy stuff :)
12692 2005-09-15 Wim Taymans <wim@fluendo.com>
12694 * gst/audioconvert/gstaudioconvert.c:
12695 And enable 24 bits mode as well..
12697 2005-09-15 Wim Taymans <wim@fluendo.com>
12699 * gst-libs/gst/rtp/Makefile.am:
12700 * gst-libs/gst/rtp/gstbasertppayload.c:
12701 (gst_basertppayload_get_type), (gst_basertppayload_base_init),
12702 (gst_basertppayload_class_init), (gst_basertppayload_init),
12703 (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
12704 (gst_basertppayload_chain), (gst_basertppayload_set_options),
12705 (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12706 (gst_basertppayload_set_property),
12707 (gst_basertppayload_get_property),
12708 (gst_basertppayload_change_state):
12709 * gst-libs/gst/rtp/gstbasertppayload.h:
12710 Added rtp payloader base class.
12712 2005-09-15 Andy Wingo <wingo@pobox.com>
12714 * configure.ac (plugindir): Remove the EOL matcher from the
12715 regexp, as it causes me problems. Libtool? Make? Who knows?
12717 2005-09-14 David Schleef <ds@schleef.org>
12719 * check/generic/states.c:
12720 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
12721 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
12722 Fixes for changes in registry API.
12724 * configure.ac: Only export gst_plugins_desc. Add -no-undefined
12725 to GST_PLUGIN_LDFLAGS.
12726 * ext/libvisual/visual.c: Make the library shut up.
12727 * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
12728 * gst-libs/gst/audio/gstaudiofilter.c: same
12730 2005-09-14 Thomas Vander Stichele <thomas at apestaart dot org>
12732 * docs/plugins/Makefile.am:
12733 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12734 * docs/plugins/inspect/plugin-libvisual.xml:
12735 * docs/plugins/tmpl/element-tcpserversink.sgml:
12736 * ext/theora/theoraenc.c:
12737 add libvisual plugin and theoraenc element to docs
12739 2005-09-14 Thomas Vander Stichele <thomas at apestaart dot org>
12741 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12742 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12743 * ext/theora/theoraenc.c:
12746 2005-09-13 Tim-Philipp Müller <tim at centricular dot net>
12748 * gst/audioconvert/Makefile.am:
12749 Audioconvert derives from GstBaseTransform and should
12750 link to the library with our base elements to avoid
12751 unresolved symbols. Makes things work with MinGW (#316160)
12753 * gst/playback/test4.c: (main):
12754 Fix MinGW build problem and use g_usleep() instead of
12757 2005-09-12 Wim Taymans <wim@fluendo.com>
12759 * gst/audioconvert/audioconvert.c: (float),
12760 (audio_convert_prepare_context), (audio_convert_convert):
12761 * gst/audioconvert/audioconvert.h:
12762 Cleanups, speedups, simplifications, added back support
12765 2005-09-11 Thomas Vander Stichele <thomas at apestaart dot org>
12767 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12768 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12769 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12770 * docs/plugins/tmpl/element-tcpserversink.sgml:
12771 * gst/ffmpegcolorspace/gstffmpeg.c:
12772 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12773 * gst/videotestsrc/gstvideotestsrc.c:
12774 * gst/volume/gstvolume.c:
12775 add more elements to the docs
12777 2005-09-09 Jan Schmidt <thaytan@mad.scientist.com>
12779 * check/Makefile.am:
12780 * check/pipelines/simple_launch_lines.c: (setup_pipeline),
12781 (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
12782 Add extra tests for basetransform based components.
12783 Comment out the test_element_negotiation test until we decide
12784 if it's testing correct behaviour.
12785 * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
12786 (gst_visual_chain), (gst_visual_change_state):
12787 Slightly more correct but still bogus timestamping.
12788 Fix state change function.
12789 * gst/audioconvert/gstaudioconvert.c:
12790 (gst_audio_convert_class_init):
12791 * gst/audioresample/gstaudioresample.c:
12792 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12793 (gst_ffmpegcsp_class_init):
12794 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
12795 (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
12796 (gst_videoscale_prepare_image):
12797 * gst/volume/gstvolume.c: (gst_volume_class_init),
12798 (volume_transform_ip):
12799 Basetransform updates. Enable passthrough modes.
12800 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12801 (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
12802 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
12803 Negotiation fix that allows the window to return to the original
12804 size and renegotiate passthrough upstream. Extra debug output.
12806 2005-09-09 Thomas Vander Stichele <thomas at apestaart dot org>
12808 * gst/sine/gstsinesrc.c:
12809 * gst/volume/gstvolume.c:
12810 fix up header include
12812 2005-09-09 Stefan Kost <ensonic@users.sf.net>
12814 * gst-libs/gst/audio/gstbaseaudiosink.c:
12815 (gst_base_audio_sink_render):
12816 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
12817 * gst/volume/gstvolume.c: (gst_volume_class_init),
12818 (volume_transform):
12819 fixing lost sync, some more debugging
12821 2005-09-08 Jan Schmidt <thaytan@mad.scientist.com>
12823 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12824 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
12825 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12826 (gst_xvimagesink_check_xshm_calls):
12827 Fix compilation when XShm is not available.
12829 2005-09-07 Jan Schmidt <thaytan@mad.scientist.com>
12831 * ext/libvisual/visual.c: (gst_visual_dispose),
12832 (gst_visual_getcaps), (gst_visual_src_setcaps),
12833 (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
12834 (gst_visual_change_state):
12835 Finish fixing up libvisual plugin so that it runs.
12837 2005-09-07 Stefan Kost <ensonic@users.sf.net>
12839 * ext/vorbis/vorbisenc.c:
12840 * gst-libs/gst/tag/gstvorbistag.c:
12841 gsttaginterface.h -> gsttagsetter.h
12843 2005-09-07 Stefan Kost <ensonic@users.sf.net>
12845 * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
12846 added another test that failes for me (test is not active by default)
12848 2005-09-07 Zaheer Abbas Merali <zaheerabbas at merali dot org>
12851 v4l2 is no longer in gst-plugins-base
12853 2005-09-07 Jan Schmidt <thaytan@mad.scientist.com>
12856 In the output at the end, don't show the first plugin on the same
12857 line as "Core plug-ins, always built:".
12858 Indent the output as for other plugin categories
12859 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
12860 #define that can be used to not use peer buffer_alloc functions for
12862 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12863 (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
12864 (gst_ximagesink_show_frame):
12865 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12866 (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
12867 (gst_xvimagesink_show_frame):
12868 Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
12869 fails gracefully instead of XError aborting or deadlocking.
12871 2005-09-07 Stefan Kost <ensonic@users.sf.net>
12873 * ext/libvisual/Makefile.am:
12874 link against gst-base-libs
12876 2005-09-06 David Schleef <ds@schleef.org>
12878 * configure.ac: Enable libvisual plugin.
12879 * ext/libvisual/Makefile.am:
12880 * ext/libvisual/visual.c: Fixes to make it compile.
12882 === release 0.9.2 ===
12884 2005-09-06 Thomas Vander Stichele <thomas at apestaart dot org>
12889 * docs/random/ChangeLog-0.8:
12890 releasing 0.9.2, "Spoon"
12892 2005-09-05 Michael Smith <msmith@fluendo.com>
12894 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
12895 libvorbis accepts quality as low as -0.1, not just 0.0. So accept
12896 that in the vorbisenc element.
12898 2005-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
12900 * common/gtk-doc-plugins.mak:
12901 * docs/plugins/Makefile.am:
12903 * gst/audioresample/resample.c:
12904 fix wrong docstring
12906 2005-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
12908 * common/gst-xmlinspect.py:
12909 * common/gtk-doc-plugins.mak:
12910 only inspect plugins for this given package
12911 require gst-python 0.9
12913 2005-09-03 Thomas Vander Stichele <thomas at apestaart dot org>
12917 * common/gst-xmlinspect.py:
12919 * docs/Makefile.am:
12920 * docs/plugins/inspect/plugin-alsa.xml:
12921 * docs/plugins/inspect/plugin-audioresample.xml:
12922 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12923 * docs/plugins/inspect/plugin-ogg.xml:
12924 * docs/plugins/tmpl/element-gnomevfssink.sgml:
12925 * docs/plugins/tmpl/element-multifdsink.sgml:
12926 * docs/plugins/tmpl/element-tcpserversink.sgml:
12927 * docs/plugins/tmpl/element-vorbisenc.sgml:
12928 * gst-plugins-base.spec.in:
12929 various doc-related updates
12931 2005-08-31 Wim Taymans <wim@fluendo.com>
12933 * gst-libs/gst/audio/gstbaseaudiosink.c:
12934 (gst_base_audio_sink_render):
12935 Resync if the buffer timestamps drift more than a 10th
12938 2005-08-31 Tim-Philipp Müller <tim at centricular dot net>
12940 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
12941 (gst_v4lsrc_get_property):
12942 The 'timestamp-offset' property is registered as an int64, so
12943 let's use g_value_{set|get}_int64() in our setter and getter
12944 functions (makes it work and fixes warnings with gst-inspect).
12946 2005-08-30 Wim Taymans <wim@fluendo.com>
12948 * check/elements/audioconvert.c: (setup_audioconvert):
12949 * check/elements/audioresample.c: (setup_audioresample):
12950 * check/elements/volume.c: (setup_volume):
12953 2005-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
12955 * common/gtk-doc-plugins.mak:
12956 * common/plugins.xsl:
12957 * docs/plugins/Makefile.am:
12958 make module a param
12960 2005-08-30 Stefan Kost <ensonic@users.sf.net>
12962 * examples/seeking/seek.c: (make_mp3_pipeline),
12963 (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
12964 (play_cb), (pause_cb), (stop_cb):
12967 2005-08-30 Stefan Kost <ensonic@users.sf.net>
12969 * gst/volume/gstvolume.c: (gst_volume_class_init),
12970 (volume_transform):
12971 do not update controlled params, if buffer has no timestamp
12973 2005-08-29 Stefan Kost <ensonic@users.sf.net>
12976 * gst/sine/Makefile.am:
12977 * gst/volume/Makefile.am:
12978 controllerized elements also need to link against controller-libs ;)
12980 2005-08-29 Stefan Kost <ensonic@users.sf.net>
12982 * docs/libs/tmpl/gstcolorbalance.sgml:
12983 * docs/libs/tmpl/gstgconf.sgml:
12984 * docs/libs/tmpl/gstmixer.sgml:
12985 * docs/libs/tmpl/gstringbuffer.sgml:
12986 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
12987 (gst_sinesrc_create):
12988 * gst/volume/gstvolume.c: (gst_volume_class_init),
12989 (volume_transform):
12990 controllerized two audio plugins
12992 2005-08-29 Andy Wingo <wingo@pobox.com>
12994 * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push)
12995 (vorbis_handle_data_packet): Fix some int overflow errors.
12997 * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
12999 (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
13001 (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
13002 if it's valid. Fixed streaming-mode playback.
13004 * check/elements/volume.c (cleanup_volume): Fix for running
13007 * check/elements/audioconvert.c: Convert from native endian, not
13010 2005-08-29 Michael Smith <msmith@fluendo.com>
13012 * ext/ogg/Makefile.am:
13013 * ext/ogg/gstogg.c: (plugin_init):
13014 * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
13015 (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
13016 (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
13017 (gst_ogg_parse_class_init), (gst_ogg_parse_init),
13018 (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
13019 (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
13020 (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
13021 (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
13022 Add an ogg parser element.
13024 2005-08-28 Andy Wingo <wingo@pobox.com>
13026 * Updates for two-arg init from GST_BOILERPLATE_FULL.
13028 2005-08-26 Wim Taymans <wim@fluendo.com>
13030 * gst/audioconvert/audioconvert.c: (if), (float),
13031 (audio_convert_get_func_index), (check_default),
13032 (audio_convert_clean_fmt), (audio_convert_prepare_context),
13033 (audio_convert_clean_context), (audio_convert_get_sizes),
13034 (audio_convert_convert):
13037 2005-08-26 Wim Taymans <wim@fluendo.com>
13039 * gst/audioconvert/audioconvert.c: (if), (float),
13040 (audio_convert_get_func_index), (check_default),
13041 (audio_convert_clean_fmt), (audio_convert_prepare_context),
13042 (audio_convert_clean_context), (audio_convert_get_sizes),
13043 (audio_convert_convert):
13044 More elegant and working temp buffer selection algo.
13046 2005-08-26 Wim Taymans <wim@fluendo.com>
13048 * gst/audioconvert/audioconvert.c: (if), (float),
13049 (audio_convert_get_func_index), (check_default),
13050 (audio_convert_clean_fmt), (audio_convert_prepare_context),
13051 (audio_convert_clean_context), (audio_convert_get_sizes),
13052 (get_temp_buffer), (audio_convert_convert):
13053 Use realloc else we lose our original data.
13055 2005-08-26 Thomas Vander Stichele <thomas at apestaart dot org>
13057 * gst/audioresample/gstaudioresample.c:
13058 use base class' newsegment to properly timestamp
13060 2005-08-26 Wim Taymans <wim@fluendo.com>
13062 * gst/audioconvert/audioconvert.c: (if), (float),
13063 (audio_convert_get_func_index), (check_default),
13064 (audio_convert_clean_fmt), (audio_convert_prepare_context),
13065 (audio_convert_clean_context), (audio_convert_get_sizes),
13066 (get_temp_buffer), (audio_convert_convert):
13067 * gst/audioconvert/gstaudioconvert.c:
13068 (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
13069 (gst_audio_convert_transform_caps),
13070 (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
13071 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
13072 Oops, allocate enough space to perform the channel mix.
13074 2005-08-26 Wim Taymans <wim@fluendo.com>
13076 * gst/audioconvert/Makefile.am:
13077 * gst/audioconvert/audioconvert.c: (if), (float),
13078 (audio_convert_get_func_index), (check_default),
13079 (audio_convert_clean_fmt), (audio_convert_prepare_context),
13080 (audio_convert_clean_context), (audio_convert_get_sizes),
13081 (get_temp_buffer), (audio_convert_convert):
13082 * gst/audioconvert/audioconvert.h:
13083 * gst/audioconvert/gstaudioconvert.c:
13084 (gst_audio_convert_class_init), (gst_audio_convert_init),
13085 (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
13086 (gst_audio_convert_get_unit_size),
13087 (gst_audio_convert_transform_caps),
13088 (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
13089 (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
13090 * gst/audioconvert/gstaudioconvert.h:
13091 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
13092 (gst_channel_mix_fill_identical),
13093 (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
13094 (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
13095 (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
13096 (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
13097 (gst_channel_mix_mix):
13098 * gst/audioconvert/gstchannelmix.h:
13099 Cleanups, librarify a bit, optimize, better negotiation and more.
13101 2005-08-26 Jan Schmidt <thaytan@mad.scientist.com>
13103 * ext/ogg/gstoggdemux.c: (ogg_find_peek):
13104 Another from MikeS:
13105 During typefinding, don't support negative offsets
13106 (offsets from the end of the stream) in our typefind->peek() function
13107 - nothing embedded in ogg ever needs them. However, we need to recognise
13108 those requests and reject them, otherwise we return invalid pointers.
13110 2005-08-26 Jan Schmidt <thaytan@mad.scientist.com>
13112 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
13113 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
13114 (vorbisdec_finalize), (vorbis_handle_type_packet):
13115 Big shout-out to MikeS for fixing this giant memory leak.
13118 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13120 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
13121 (audio_convert_get_unit_size):
13124 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13126 * check/Makefile.am:
13127 * check/elements/audioconvert.c: (setup_audioconvert),
13128 (cleanup_audioconvert), (get_int_caps), (verify_convert),
13129 (GST_START_TEST), (audioconvert_suite), (main):
13130 add a test for audioconvert
13131 * gst/audioresample/gstaudioresample.c:
13132 * gst/audioresample/gstaudioresample.h:
13133 set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
13134 note that for buffers of 1/3 sec this means DURATION(c) is
13135 one nanosecond more than for a and b
13137 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13139 * check/Makefile.am:
13140 * check/elements/audioresample.c: (setup_audioresample),
13141 (cleanup_audioresample), (fail_unless_perfect_stream),
13142 (test_perfect_stream_instance), (GST_START_TEST),
13143 add a check for audioresample
13144 (audioresample_suite), (main):
13145 * check/elements/volume.c: (GST_START_TEST):
13146 remove unused method
13147 * gst/audioresample/gstaudioresample.c:
13148 set correct buffer parameters since we're changing them
13149 * gst/audioresample/resample_ref.c: (resample_scale_ref):
13152 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13154 * gst/audioresample/debug.c:
13155 * gst/audioresample/gstaudioresample.c:
13156 add room for extra overlap samples when asked to transform size
13157 protect against possible mem corruption and check for discrepancies
13158 between written size and outbuffer's size so we can warn for
13160 * gst/audioresample/resample.c: (resample_init),
13161 (resample_get_output_size_for_input), (resample_get_output_size),
13162 (resample_set_n_channels), (resample_set_format):
13163 set debug level based on RESAMPLE_DEBUG env var
13164 make sure that get_output_size* returns a whole number of
13166 set sample_size each time either channel or format is set
13167 * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
13168 * gst/audioresample/resample_functable.c:
13169 (resample_scale_functable):
13170 * gst/audioresample/resample_ref.c: (resample_scale_ref):
13171 remove r->sample_size, it's done in resample.c now
13172 add some debugging to the ref implementation
13173 make sure we only give back bytes that are wholes of the sample
13176 2005-08-25 Jan Schmidt <thaytan@mad.scientist.com>
13177 * gst/playback/gstplaybasebin.c: (fill_buffer):
13178 Revert unpopular change for GST_MESSAGE_SRC to GObject.
13180 2005-08-25 Stefan Kost <ensonic@users.sf.net>
13182 * gst/volume/gstvolume.c:
13183 made set_caps function static
13185 2005-08-24 Wim Taymans <wim@fluendo.com>
13187 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
13188 (gst_vorbisenc_change_state):
13189 Stop leaking taglists.
13191 2005-08-24 Wim Taymans <wim@fluendo.com>
13193 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
13194 (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
13195 (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
13196 (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
13197 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13198 (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
13199 Parse seeking events better.
13201 Generate correct newsegment events, fixes seeking in live oggs.
13203 * ext/theora/theoradec.c: (theora_dec_src_query),
13204 (theora_dec_src_event), (theora_dec_src_getcaps),
13205 (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
13206 Use newsegment values to report correct play time.
13208 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
13209 (vorbis_dec_src_event), (vorbis_dec_sink_event):
13210 * ext/vorbis/vorbisdec.h:
13211 Parse and use newsegment values to report correct play time.
13213 * gst-libs/gst/audio/gstbaseaudiosink.c:
13214 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
13215 Clear ringbuffer on flush.
13216 Use newsegment values to calculate playback time.
13218 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
13219 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
13220 Basesink does newsegment calculations for us now.
13222 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13224 * check/Makefile.am:
13226 add core's plugins to the mix so that playbin works
13227 * check/generic/states.c: (GST_START_TEST):
13228 set a 0 timeout on pipelines, so they don't force the next
13230 * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
13231 (gst_play_base_bin_change_state):
13232 remove the crappy error handling and do GST error handling
13234 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13236 * check/Makefile.am:
13237 * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
13238 add same test as to core, it bitches out on playbin atm.
13240 2005-08-24 Wim Taymans <wim@fluendo.com>
13245 2005-08-24 Wim Taymans <wim@fluendo.com>
13247 * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
13248 (gst_videoscale_prepare_size), (parse_caps),
13249 (gst_videoscale_set_caps), (gst_videoscale_get_size),
13250 (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
13251 (gst_videoscale_transform):
13252 * gst/videoscale/gstvideoscale.h:
13253 Refactor, make use of BaseTranform really well.
13255 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13258 compile audioresample
13259 * gst/audioresample/Makefile.am:
13260 * gst/audioresample/buffer.c:
13261 * gst/audioresample/functable.c:
13262 * gst/audioresample/gstaudioresample.c:
13263 * gst/audioresample/gstaudioresample.h:
13264 * gst/audioresample/resample.c:
13265 (resample_get_output_size_for_input):
13266 * gst/audioresample/resample.h:
13267 * gst/audioresample/resample_chunk.c:
13268 * gst/audioresample/resample_functable.c:
13269 * gst/audioresample/resample_ref.c:
13270 port to use basetransform; doesn't work in all cases yet
13272 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13274 * gst/audioconvert/gstaudioconvert.c:
13275 (gst_audio_convert_class_init), (gst_audio_convert_init),
13276 (audio_convert_get_unit_size), (audio_convert_transform_caps),
13277 (audio_convert_fixate_caps), (audio_convert_set_caps),
13278 (audio_convert_transform),
13279 (gst_audio_convert_buffer_to_default_format),
13280 (gst_audio_convert_buffer_from_default_format),
13281 (gst_audio_convert_channels):
13282 * gst/audioconvert/gstchannelmix.c:
13283 * gst/audioconvert/gstchannelmix.h:
13284 port to basetransform
13285 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13286 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
13287 (gst_ffmpegcsp_get_unit_size):
13288 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
13289 (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
13290 fix for basetransform changes
13292 2005-08-24 Jan Schmidt <thaytan@mad.scientist.com>
13294 * check/Makefile.am:
13295 Add CHECK_CFLAGS and LDFLAGS
13297 * gst/playback/gstplaybasebin.c: (fill_buffer):
13298 GST_MESSAGE_SRC became a GObject
13300 2005-08-24 Wim Taymans <wim@fluendo.com>
13302 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
13303 (gst_ring_buffer_clear_all):
13304 * gst-libs/gst/audio/gstringbuffer.h:
13305 Added function to clear the ringbuffer.
13307 2005-08-24 Andy Wingo <wingo@pobox.com>
13309 * sys/v4l/gstv4lelement.c (gst_v4lelement_start)
13310 (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
13311 of _open and _close.
13313 * sys/v4l/gstv4lxoverlay.h:
13314 * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
13315 an Xv connection here, instead of all the time. Make Xv only be
13316 loaded if you axe for it. Kindof a workaround for buggy behaviour
13317 of Xv when using remote xservers (XvQueryExtension would block).
13318 (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
13319 replace the _open and _close public API. Only start the xv
13320 connection if necessary.
13321 (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
13323 2005-08-23 David Schleef <ds@schleef.org>
13325 * gst/audioresample/Makefile.am: Leet audioresampling code
13326 * gst/audioresample/buffer.c:
13327 * gst/audioresample/buffer.h:
13328 * gst/audioresample/debug.c:
13329 * gst/audioresample/debug.h:
13330 * gst/audioresample/functable.c:
13331 * gst/audioresample/functable.h:
13332 * gst/audioresample/gstaudioresample.c:
13333 * gst/audioresample/gstaudioresample.h:
13334 * gst/audioresample/resample.c:
13335 * gst/audioresample/resample.h:
13336 * gst/audioresample/resample_chunk.c:
13337 * gst/audioresample/resample_functable.c:
13338 * gst/audioresample/resample_ref.c:
13340 2005-08-23 Wim Taymans <wim@fluendo.com>
13342 * examples/seeking/seek.c: (make_vorbis_pipeline),
13343 (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
13344 Small seek updates.
13346 2005-08-23 Andy Wingo <wingo@pobox.com>
13348 * gst-libs/gst/audio/gstbaseaudiosrc.c
13349 (gst_base_audio_src_fixate): Only fixate endianness if it is
13350 present in the caps.
13352 2005-08-22 Andy Wingo <wingo@pobox.com>
13354 * ext/alsa/gstalsasink.c (gst_alsasink_get_property):
13355 * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
13356 device-name property.
13358 * gst-libs/gst/audio/gstaudiosrc.h:
13359 * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
13360 close_device in the ring buffer, like gstaudiosink.
13362 * ext/alsa/gstalsamixer.h:
13363 * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
13364 macro to implement the interface without much code. Cleanups.
13366 * ext/alsa/gstalsasrc.h:
13367 * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
13370 * ext/alsa/Makefile.am: Add new files.
13371 * ext/alsa/gstalsamixerelement.c:
13372 * ext/alsa/gstalsamixerelement.c: Split element code out from
13373 mixer code so that alsasrc can be a mixer too.
13375 2005-08-21 Thomas Vander Stichele <thomas at apestaart dot org>
13377 * check/elements/volume.c: (setup_volume), (cleanup_volume),
13379 * check/elements/vorbisdec.c: (setup_vorbisdec),
13380 (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
13381 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
13382 (vorbis_handle_identification_packet),
13383 (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
13384 (vorbis_handle_header_packet), (vorbis_dec_push),
13385 (vorbis_dec_chain):
13386 use the setup/teardown methods to save code. save code is good.
13388 2005-08-20 Thomas Vander Stichele <thomas at apestaart dot org>
13390 * check/Makefile.am:
13391 add ext dir for plugins
13392 add vorbisdec test conditionally
13393 * check/elements/volume.c: (setup_volume), (cleanup_volume),
13394 (GST_START_TEST), (volume_suite):
13395 add a test with wrong caps
13396 * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
13397 (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
13398 add a vorbisdec test
13399 * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
13400 (gst_ogg_demux_chain), (gst_ogg_demux_loop):
13401 clean up debug output
13402 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
13403 yay, fix a segfault/security issue in vorbisdec
13404 gst-launch fakesrc ! vorbisdec wasn't happy
13405 * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
13406 (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
13407 (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
13408 (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
13409 (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
13410 (gst_vorbisenc_set_metadata), (get_constraints_string),
13411 (update_start_message), (gst_vorbisenc_setup),
13412 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
13413 (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
13414 (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
13415 (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
13416 * ext/vorbis/vorbisenc.h:
13418 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13419 (gst_ffmpegcsp_transform):
13420 have the kow come home
13421 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
13423 * gst/volume/gstvolume.c: (volume_set_caps):
13426 2005-08-20 Thomas Vander Stichele <thomas at apestaart dot org>
13429 * check/.cvsignore:
13430 * check/Makefile.am:
13431 * check/elements/.cvsignore:
13432 * check/elements/volume.c: (chain_func), (event_func),
13433 (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
13436 add unit test structure for gst-plugins-base
13437 add a test for volume
13438 * gst/volume/gstvolume.c: (gst_volume_list_tracks),
13439 (gst_volume_set_volume), (gst_volume_get_volume),
13440 (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
13441 (volume_funcfind), (volume_process_float), (volume_process_int16),
13442 (volume_set_caps), (volume_transform), (volume_update_mute),
13443 (volume_update_volume), (volume_set_property),
13444 (volume_get_property):
13445 document a little; use basetransform vmethod _set_caps
13447 2005-08-19 Andy Wingo <wingo@pobox.com>
13449 * ext/alsa/gstalsamixertrack.h:
13450 * ext/alsa/gstalsamixertrack.c:
13451 * ext/alsa/gstalsamixeroptions.h:
13452 * ext/alsa/gstalsamixeroptions.c:
13453 * ext/alsa/gstalsamixer.h:
13454 * ext/alsa/gstalsamixer.c: Port to 0.9.
13456 * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
13457 Remove gstalsa.c and alsaclock. No more cruft here.
13459 2005-08-18 Wim Taymans <wim@fluendo.com>
13461 * gst-libs/gst/rtp/gstbasertpdepayload.c:
13462 (gst_base_rtp_depayload_chain),
13463 (gst_base_rtp_depayload_add_to_queue),
13464 (gst_base_rtp_depayload_push),
13465 (gst_base_rtp_depayload_queue_release):
13466 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13467 Fix for RTPBuffer changes.
13469 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
13470 (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
13471 (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
13472 (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
13473 (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
13474 (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
13475 (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
13476 (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
13477 (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
13478 (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
13479 (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
13480 (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
13481 (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
13482 (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
13483 (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
13484 (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
13485 (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
13486 (gst_rtpbuffer_get_payload):
13487 * gst-libs/gst/rtp/gstrtpbuffer.h:
13488 Don't subclass GstBuffer but add methods and helper functions
13489 to construct and manipulate RTP packets in regular GstBuffers.
13491 2005-08-18 Stefan Kost <ensonic@users.sf.net>
13493 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
13494 moved statement below switch
13495 * gst/volume/gstvolume.c: (gst_volume_class_init):
13498 2005-08-16 Wim Taymans <wim@fluendo.com>
13500 * gst-libs/gst/audio/gstbaseaudiosrc.c:
13501 (gst_base_audio_src_change_state):
13502 Open and close device in READY<->NULL state change.
13504 2005-08-16 Andy Wingo <wingo@pobox.com>
13506 * examples/seeking/Makefile.am: Don't compile non-compiling
13507 compiled objects with the compiler.
13509 * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
13512 2005-08-12 Philippe Khalaf <burger@speedy.org>
13513 * gst-libs/gst/rtp/gstbasertpdepayload.c:
13514 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13515 Made a thread to release the queue.
13516 Removed timestamp conversion for now.
13518 2005-08-10 Philippe Khalaf <burger@speedy.org>
13519 * gst-libs/gst/rtp/gstbasertpdepayload.c:
13520 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13521 Added rtp timestamp -> gst timestamp conversion.
13522 Fixed several problems with queue.
13524 2005-08-09 Tim-Philipp Müller <tim at centricular dot net>
13526 * gst-libs/gst/audio/gstaudioclock.h:
13527 * gst-libs/gst/audio/gstaudiofilter.h:
13528 * gst-libs/gst/audio/gstaudiosink.h:
13529 * gst-libs/gst/audio/gstaudiosrc.h:
13530 * gst-libs/gst/audio/gstbaseaudiosink.h:
13531 * gst-libs/gst/audio/gstbaseaudiosrc.h:
13532 * gst-libs/gst/audio/gstringbuffer.h:
13533 * gst-libs/gst/net/gstnetbuffer.h:
13534 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13535 * gst-libs/gst/rtp/gstrtpbuffer.h:
13536 Add padding (you will need to rebuild gst-plugins-base,
13537 gst-plugins and all applications afterwards!)
13539 2005-08-09 Tim-Philipp Müller <tim at centricular dot net>
13541 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
13542 (gst_riff_parse_chunk):
13543 Fix bug in debug message and add some more debug messages.
13545 2005-08-08 Edward Hervey <edward@fluendo.com>
13547 * gst-libs/gst/riff/riff-media.c:
13548 backported updates since branch
13550 2005-08-08 Andy Wingo <wingo@pobox.com>
13552 * gst-libs/gst/audio/gstbaseaudiosink.c
13553 (gst_base_audio_sink_change_state): Open the device in NULL->READY
13554 like good elements should. Close on READY->NULL too.
13556 * gst-libs/gst/audio/gstaudiosink.c
13557 (gst_audioringbuffer_open_device,
13558 (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
13559 (gst_audioringbuffer_release): Updates for new ring buffer API,
13560 hook into the new audio sink api.
13562 * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
13563 (GstAudioSinkClass.close): Just open and close the device -- no
13564 resource allocation or configuration.
13565 (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
13566 vmethods, handle device setup and resource allocation.
13568 * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
13569 (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
13572 * gst-libs/gst/audio/gstringbuffer.h
13573 (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
13576 * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
13577 (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
13578 New API functions. The device should be opened before acquiring
13579 and closed after releasing.
13581 2005-08-08 Tim-Philipp Müller <tim at centricular dot net>
13583 * gst-libs/gst/interfaces/mixer.h:
13584 Reset padding to GST_PADDING.
13586 2005-08-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13588 * gst/playback/gstplaybin.c: (remove_sinks):
13589 Remove visualization from parent explicitely; works around some
13590 apparent refcount issue that I haven't tracked down yet.
13592 2005-08-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13594 * ext/alsa/gstalsasink.c: (set_hwparams):
13595 Assign debug category, add negotiation debug msgs.
13597 2005-08-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13599 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
13600 Fix error code for file-not-found to NOT_FOUND.
13602 2005-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
13604 * common/gtk-doc-plugins.mak:
13605 * docs/plugins/Makefile.am:
13606 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13607 * docs/plugins/gst-plugins-base-plugins-sections.txt:
13608 renamed to actual element names, so much nicer to look at
13609 * docs/plugins/tmpl/gstmultifdsink.sgml:
13611 * docs/plugins/tmpl/multifdsink.sgml:
13612 * docs/plugins/tmpl/tcpserversink.sgml:
13614 * ext/alsa/gstalsa.c:
13615 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
13616 * ext/ogg/gstoggmux.c:
13617 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
13618 * gst/playback/gstdecodebin.c:
13619 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
13620 * gst/tcp/gsttcpserversink.c:
13621 various fixes and documentation additions
13623 2005-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
13625 * common/Makefile.am:
13626 * common/gstdoc-scangobj:
13627 * common/gtk-doc-plugins.mak:
13628 * common/gtk-doc.mak:
13629 add a custom scangobj that uses the registry
13630 add a custom gtk-doc-plugins.mak that uses it
13631 some doc build fixes
13633 * docs/Makefile.am:
13634 * docs/plugins/Makefile.am:
13635 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13636 * docs/plugins/gst-plugins-base-plugins-sections.txt:
13637 * docs/plugins/gst-plugins-base-plugins.types:
13638 * docs/plugins/tmpl/gstmultifdsink.sgml:
13639 add docs for one element, multifdsink
13640 * gst/adder/gstadder.h:
13641 * gst/volume/gstvolume.h:
13642 don't privatize enum
13643 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
13644 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
13645 (gst_sync_method_get_type), (gst_client_status_get_type),
13646 (gst_multifdsink_class_init),
13647 (gst_multifdsink_client_queue_buffer),
13648 (gst_multifdsink_handle_client_write):
13649 * gst/tcp/gstmultifdsink.h:
13650 * gst/tcp/gsttcp.h:
13651 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
13652 (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
13653 (gst_tcpclientsink_render):
13654 * gst/tcp/gsttcpclientsink.h:
13655 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
13656 (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
13657 (gst_tcpclientsrc_start):
13658 * gst/tcp/gsttcpclientsrc.h:
13659 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
13660 (gst_tcpserversrc_init), (gst_tcpserversrc_create):
13661 * gst/tcp/gsttcpserversrc.h:
13662 * gst/typefind/gsttypefindfunctions.c:
13663 remove superfluous Type stuff
13665 2005-08-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13667 * gst/playback/gstplaybin.c: (gen_video_element):
13670 2005-08-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13672 * gst-libs/gst/gconf/gconf.c:
13673 * gst-libs/gst/gconf/gconf.h:
13674 Fix some Andy Problem [tm].
13676 2005-08-04 Andy Wingo <wingo@pobox.com>
13678 * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
13679 * gst/ffmpegcolorspace/gstffmpegcolorspace.c
13680 (gst_ffmpegcsp_get_size): Adapt to API changes.
13682 * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
13683 Implement an in-place do-nothing transform.
13685 2005-08-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13687 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
13688 (gst_ximagesink_renegotiate_size):
13689 Do not set new window sizes yet if we prepare a new buffer size
13690 for upstream renegotiation (software scaling) at some point in the
13691 future, because this new size waqs not actually accepted yet. Once
13692 accepted, renegotiation later on will set the new sizes just fine.
13693 Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
13694 embedding testcase.
13696 2005-08-03 Andy Wingo <wingo@pobox.com>
13698 * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
13699 (gst_ximagesink_buffer_alloc):
13700 Protect the height, width, and desired_caps with the pool_lock.
13701 Fixes videotestsrc ! queue ! ximagesink.
13703 2005-08-02 Edward Hervey <edward@fluendo.com>
13705 * gst/volume/gstvolume.c:
13706 include left from controller cleanup
13708 2005-08-02 Jan Schmidt <thaytan@mad.scientist.com>
13709 * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
13710 Stop collectpads before calling the parent state
13711 change function on PAUSED->READY.
13713 2005-08-01 Jan Schmidt <thaytan@mad.scientist.com>
13715 When testing for X libs, use the X CFlags
13716 * gst/adder/gstadder.c: (gst_adder_change_state):
13717 Stop the collectpads before calling parent state change function
13718 on PAUSED->READY, otherwise we deadlock deactivating pads.
13720 2005-08-01 Stefan Kost <ensonic@users.sf.net>
13723 * docs/libs/tmpl/gstcolorbalance.sgml:
13724 * docs/libs/tmpl/gstmixer.sgml:
13725 * examples/Makefile.am:
13726 * gst/sine/Makefile.am:
13727 * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
13728 (gst_sinesrc_set_property), (plugin_init):
13729 * gst/sine/gstsinesrc.h:
13730 * gst/volume/Makefile.am:
13731 * gst/volume/gstvolume.c: (gst_volume_set_volume),
13732 (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
13733 (volume_process_float), (volume_process_int16),
13734 (volume_set_property), (plugin_init):
13735 * gst/volume/gstvolume.h:
13736 deactivate and remove dparams (libgstcontrol)
13738 2005-07-29 Wim Taymans <wim@fluendo.com>
13740 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
13741 Convert me to BaseTransform!! help..
13743 2005-07-29 Andy Wingo <wingo@pobox.com>
13745 * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
13748 * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
13749 support of both endiannesses.
13751 2005-07-28 Tim-Philipp Müller <tim at centricular dot net>
13753 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
13754 Fix confusing debug message (s/event/query/)
13756 2005-07-28 Tim-Philipp Müller <tim at centricular dot net>
13758 * gst/videotestsrc/videotestsrc.h:
13759 Use "_stdint.h" instead of <stdint.h>
13761 2005-07-27 Wim Taymans <wim@fluendo.com>
13763 * ext/vorbis/Makefile.am:
13764 Revert wrong commit.
13766 2005-07-27 Wim Taymans <wim@fluendo.com>
13768 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
13769 More compilation fixen.
13771 2005-07-27 Wim Taymans <wim@fluendo.com>
13773 * gst-libs/gst/audio/gstbaseaudiosink.c:
13774 (gst_base_audio_sink_event), (gst_base_audio_sink_render),
13775 (gst_base_audio_sink_create_ringbuffer),
13776 (gst_base_audio_sink_change_state):
13779 2005-07-27 Wim Taymans <wim@fluendo.com>
13781 * examples/seeking/seek.c: (setup_dynamic_link),
13782 (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
13783 (query_positions_elems), (query_positions_pads), (do_seek):
13784 Update seek example.
13786 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13787 (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
13788 (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
13789 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
13790 (gst_ogg_demux_handle_event),
13791 (gst_ogg_demux_deactivate_current_chain),
13792 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13793 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13794 (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
13795 (gst_ogg_demux_loop):
13796 * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
13797 * ext/theora/theoradec.c: (theora_dec_src_event),
13798 (theora_dec_src_getcaps), (theora_dec_sink_event),
13799 (theora_dec_push), (theora_dec_chain):
13800 * ext/vorbis/Makefile.am:
13801 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
13802 (vorbis_dec_sink_event), (vorbis_dec_push),
13803 (vorbis_handle_data_packet):
13804 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
13805 (gst_vorbisenc_chain):
13806 * gst/playback/gststreaminfo.c: (cb_probe):
13807 * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
13808 * gst/videorate/gstvideorate.c: (gst_videorate_event):
13809 * gst/videoscale/gstvideoscale.c:
13810 (gst_videoscale_handle_src_event):
13811 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
13812 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
13813 (gst_ximagesink_navigation_send_event):
13814 * sys/xvimage/xvimagesink.c:
13815 (gst_xvimagesink_navigation_send_event):
13816 Various event updates and cleanups
13818 2005-07-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13820 * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
13821 Fix segfault for I420/YV12.
13823 2005-07-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13825 * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
13828 2005-07-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13830 * gst/playback/gstplaybin.c: (gen_video_element),
13831 (gen_audio_element):
13832 Switch to auto*sink elements as default sinks; add volume element
13833 so that volume control in totem works.
13835 2005-07-21 Wim Taymans <wim@fluendo.com>
13837 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
13838 * gst/playback/gstplaybin.c: (setup_sinks),
13839 (gst_play_bin_change_state):
13840 Refcount fix and more comments.
13842 2005-07-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
13844 * sys/ximage/Makefile.am:
13845 * sys/ximage/ximage.c: (plugin_init):
13846 * sys/ximage/ximagesink.c:
13847 Prepare for adding ximagesrc, rename of plugin to ximage etc.
13850 2005-07-21 Wim Taymans <wim@fluendo.com>
13852 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13853 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13854 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13855 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13856 (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13857 (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
13858 (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
13859 (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
13860 (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
13861 Generate correct disconts for live chained oggs.
13863 * gst-libs/gst/audio/gstbaseaudiosink.c:
13864 (gst_base_audio_sink_render),
13865 (gst_base_audio_sink_create_ringbuffer),
13866 (gst_base_audio_sink_change_state):
13867 Handle discont math correctly.
13869 * gst/playback/gstplaybin.c: (add_sink):
13870 Some small debug cleanup.
13872 2005-07-21 Wim Taymans <wim@fluendo.com>
13874 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
13875 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13876 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13877 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13878 (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13879 (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
13880 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13881 (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
13882 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13883 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
13884 (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
13885 (gst_ogg_demux_change_state), (gst_ogg_print):
13886 Reorganize code to send the right disconts when in streaming
13889 2005-07-20 Andy Wingo <wingo@pobox.com>
13891 * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
13892 fix (?), fixes a seggie mcfalterson (#310894).
13894 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13896 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
13897 (gst_ogg_mux_set_header_on_caps):
13898 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
13899 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
13900 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
13901 * gst-libs/gst/audio/multichannel.c:
13902 (gst_audio_set_channel_positions),
13903 (gst_audio_set_structure_channel_positions_list):
13904 * gst/playback/gstdecodebin.c: (dynamic_create):
13905 * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
13906 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
13907 Fixes for API changes in core.
13909 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13911 * gst/playback/gstplaybasebin.c: (fill_buffer):
13912 Use _new_custom() so we can set custom message types for buffering
13915 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13918 * gst-libs/gst/Makefile.am:
13919 * gst-libs/gst/gconf/.cvsignore:
13920 * gst-libs/gst/gconf/Makefile.am:
13921 * gst-libs/gst/gconf/test-gconf.c:
13922 * pkgconfig/Makefile.am:
13923 * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
13924 * pkgconfig/gstreamer-gconf.pc.in:
13925 Remove gconf stuff, use gconf elements instead from now on.
13927 2005-07-20 Wim Taymans <wim@fluendo.com>
13929 * gst-libs/gst/audio/TODO:
13930 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
13931 (gst_audio_clock_get_internal_time):
13932 * gst-libs/gst/audio/gstaudioclock.h:
13933 * gst-libs/gst/audio/gstbaseaudiosink.c:
13934 (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
13935 (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
13936 (gst_base_audio_sink_render),
13937 (gst_base_audio_sink_create_ringbuffer),
13938 (gst_base_audio_sink_change_state):
13939 Make sure the audio clock always returns an increasing value.
13941 2005-07-19 Andy Wingo <wingo@pobox.com>
13943 * gst/videotestsrc/: Cleanups.
13945 2005-07-19 Wim Taymans <wim@fluendo.com>
13947 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
13950 2005-07-19 Wim Taymans <wim@fluendo.com>
13952 * examples/seeking/seek.c: (make_dv_pipeline),
13953 (make_vorbis_theora_pipeline), (query_rates),
13954 (query_positions_elems), (query_positions_pads), (do_seek):
13955 Make correct DV pipeline.
13957 2005-07-18 Andy Wingo <wingo@pobox.com>
13959 * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
13960 default. Also because it's the only thing that really works. (This
13961 is used in the GConf elements).
13962 Use AS_LIBTOOL_TAGS.
13964 2005-07-18 Wim Taymans <wim@fluendo.com>
13966 * gst/playback/gstdecodebin.c: (remove_element_chain):
13967 * gst/playback/gstplaybin.c: (add_sink):
13968 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
13969 (gst_stream_info_set_mute):
13970 * gst/playback/gststreamselector.c:
13971 (gst_stream_selector_get_linked_pad),
13972 (gst_stream_selector_getcaps), (gst_stream_selector_chain):
13973 More leak and compile fixes.
13975 2005-07-18 Wim Taymans <wim@fluendo.com>
13977 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
13978 (query_rates), (query_positions_elems), (query_positions_pads),
13979 (do_seek), (seek_cb), (stop_seek):
13980 Updated seek example.
13982 * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
13983 * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
13984 (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
13985 * gst/playback/gstplaybin.c: (add_sink):
13986 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
13987 (gst_stream_info_set_mute):
13988 Some refcount leak fixes.
13990 2005-07-16 Wim Taymans <wim@fluendo.com>
13992 * gst-libs/gst/audio/gstbaseaudiosink.c:
13993 (gst_base_audio_sink_render):
13994 Align samples even if we have roundoff errors in the
13995 timestamp conversion.
13997 2005-07-16 Wim Taymans <wim@fluendo.com>
13999 * docs/libs/tmpl/gstringbuffer.sgml:
14000 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
14001 (query_rates), (query_positions_elems), (query_positions_pads),
14002 (update_scale), (do_seek):
14003 Updated seek example.
14005 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14006 (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
14007 (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
14008 (gst_ogg_demux_loop):
14009 Push out correct discont values.
14011 * ext/theora/theoradec.c: (theora_dec_src_convert),
14012 (theora_dec_sink_convert), (theora_dec_src_getcaps),
14013 (theora_dec_sink_event), (theora_handle_type_packet),
14014 (theora_handle_header_packet), (theora_dec_push),
14015 (theora_handle_data_packet), (theora_dec_chain),
14016 (theora_dec_change_state):
14017 Better timestamping.
14019 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
14020 (vorbis_dec_sink_event), (vorbis_dec_push),
14021 (vorbis_handle_data_packet), (vorbis_dec_chain):
14022 * ext/vorbis/vorbisdec.h:
14023 Better timestamping.
14025 * gst-libs/gst/audio/gstbaseaudiosink.c:
14026 (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
14027 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
14028 Handle syncing on timestamps instead of sample offsets. Make
14029 use of DISCONT values as described in design docs.
14031 * gst-libs/gst/audio/gstbaseaudiosrc.c:
14032 (gst_base_audio_src_get_time):
14033 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
14034 (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
14035 (gst_ring_buffer_read):
14036 * gst-libs/gst/audio/gstringbuffer.h:
14037 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
14038 (gst_ximagesink_show_frame):
14039 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
14040 Correcly convert buffer timestamp to stream time.
14042 2005-07-16 Wim Taymans <wim@fluendo.com>
14044 * gst/audioconvert/gstaudioconvert.c:
14045 (gst_audio_convert_get_buffer):
14046 Timestamp buffers correctly.
14048 * gst/playback/gstplaybin.c: (gen_video_element):
14049 Make internal fakesink silent.
14051 2005-07-15 Wim Taymans <wim@fluendo.com>
14053 * gst/ffmpegcolorspace/Makefile.am:
14054 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14055 (gst_ffmpegcsp_caps_remove_format_info),
14056 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
14057 (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
14058 (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
14059 (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
14060 Ported ffmpegcolorspace to basetransform.
14062 * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
14063 * gst/volume/gstvolume.c: (volume_transform):
14066 2005-07-14 Wim Taymans <wim@fluendo.com>
14068 * gst/videotestsrc/Makefile.am:
14069 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
14070 (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
14071 (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
14072 (gst_videotestsrc_init), (gst_videotestsrc_event),
14073 (gst_videotestsrc_create), (gst_videotestsrc_start),
14074 (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
14075 (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
14076 (gst_videotestsrc_get_property):
14077 * gst/videotestsrc/gstvideotestsrc.h:
14078 Make videotestsrc a pushsrc.
14080 2005-07-14 Wim Taymans <wim@fluendo.com>
14082 * gst/tcp/gstfdset.c: (gst_fdset_free):
14083 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
14084 (gst_multifdsink_add), (gst_multifdsink_remove),
14085 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
14086 (gst_multifdsink_remove_client_link),
14087 (gst_multifdsink_client_queue_data),
14088 (gst_multifdsink_client_queue_caps),
14089 (gst_multifdsink_client_queue_buffer),
14090 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
14091 (gst_multifdsink_stop):
14092 * gst/tcp/gstmultifdsink.h:
14095 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
14096 Also draw image when not from a pool.
14098 2005-07-14 Wim Taymans <wim@fluendo.com>
14100 * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
14101 (mute_stream), (silence_stream):
14102 Small debug additions.
14104 2005-07-14 Wim Taymans <wim@fluendo.com>
14106 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
14107 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
14108 (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
14109 Better error recovery, ignore unconnected pads and
14112 2005-07-14 Thomas Vander Stichele <thomas at apestaart dot org>
14114 * docs/libs/tmpl/gstaudio.sgml:
14115 * docs/libs/tmpl/gstcolorbalance.sgml:
14116 * docs/libs/tmpl/gstgconf.sgml:
14117 * docs/libs/tmpl/gstmixer.sgml:
14118 * docs/libs/tmpl/gstringbuffer.sgml:
14119 * docs/libs/tmpl/gsttuner.sgml:
14120 * gst-libs/gst/audio/gstbaseaudiosrc.c:
14121 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
14122 (gst_tcpclientsrc_class_init):
14123 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
14124 (gst_tcpserversrc_class_init):
14125 * sys/v4l/gstv4lelement.c:
14126 more autistic cleanliness in functions/names/defines
14128 2005-07-13 Thomas Vander Stichele <thomas at apestaart dot org>
14131 make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
14132 added manually to each Makefile.am so we are sure it goes
14133 *last* and doesn't add -L flags before linking in libs of our
14134 own, like, say, internal .la libs, that then accidentally pick
14135 up the installed copy.
14136 * docs/libs/Makefile.am:
14137 * ext/alsa/Makefile.am:
14138 * ext/cdparanoia/Makefile.am:
14139 * ext/gnomevfs/Makefile.am:
14140 * ext/libvisual/Makefile.am:
14141 * ext/ogg/Makefile.am:
14142 * ext/theora/Makefile.am:
14143 * ext/vorbis/Makefile.am:
14144 * gst-libs/gst/video/Makefile.am:
14145 * gst/adder/Makefile.am:
14146 * gst/audioconvert/Makefile.am:
14147 * gst/audiorate/Makefile.am:
14148 * gst/audioscale/Makefile.am:
14149 * gst/ffmpegcolorspace/Makefile.am:
14150 * gst/playback/Makefile.am:
14151 * gst/sine/Makefile.am:
14152 * gst/subparse/Makefile.am:
14153 * gst/tags/Makefile.am:
14154 * gst/tcp/Makefile.am:
14155 * gst/typefind/Makefile.am:
14156 * gst/videorate/Makefile.am:
14157 * gst/videoscale/Makefile.am:
14158 * gst/videotestsrc/Makefile.am:
14159 * gst/volume/Makefile.am:
14160 * sys/v4l/Makefile.am:
14161 * sys/ximage/Makefile.am:
14162 * sys/xvimage/Makefile.am:
14163 adapt properly to this change. This should make sure that
14164 plugins and libs properly link to the as-yet-uninstalled
14165 copies of stuff like libgstinterfaces and libgstvideo
14167 2005-07-13 Andy Wingo <wingo@pobox.com>
14169 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
14170 (gst_v4lsrc_fixate): Fixate on format as well.
14172 * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy)
14173 (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
14174 buffer points to it.
14175 (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
14176 rather just doing X calls ourselves. Also fixes a memleak.
14178 2005-07-12 Andy Wingo <wingo@pobox.com>
14180 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property)
14181 (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init)
14182 (gst_v4lsrc_create): Re-add the copy-mode property, default to
14183 TRUE to avoid deadlocks if an element holds on to our buffers.
14185 2005-07-11 Thomas Vander Stichele <thomas at apestaart dot org>
14187 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
14188 (gst_sinesrc_init), (gst_sinesrc_create),
14189 (gst_sinesrc_set_property), (gst_sinesrc_get_property),
14190 (gst_sinesrc_start):
14191 * gst/sine/gstsinesrc.h:
14192 removing num-buffers property before moving it
14194 2005-07-10 Thomas Vander Stichele <thomas at apestaart dot org>
14197 use overridable ERROR_CFLAGS
14198 * docs/libs/gst-plugins-base-libs.types:
14199 * docs/libs/tmpl/gstringbuffer.sgml:
14200 * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
14201 (gst_alsasink_class_init):
14202 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
14203 (gst_alsasrc_class_init):
14204 * gst-libs/gst/audio/audio.h:
14205 * gst-libs/gst/audio/gstaudioclock.h:
14206 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
14207 (gst_audio_filter_base_init), (gst_audio_filter_class_init),
14208 (gst_audio_filter_link), (gst_audio_filter_init),
14209 (gst_audio_filter_chain), (gst_audio_filter_set_property),
14210 (gst_audio_filter_get_property),
14211 (gst_audio_filter_class_add_pad_templates):
14212 * gst-libs/gst/audio/gstaudiofilter.h:
14213 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
14214 (gst_audio_filter_template_get_type),
14215 (gst_audio_filter_template_base_init),
14216 (gst_audio_filter_template_class_init),
14217 (gst_audio_filter_template_init),
14218 (gst_audio_filter_template_set_property),
14219 (gst_audio_filter_template_get_property), (plugin_init),
14220 (gst_audio_filter_template_setup),
14221 (gst_audio_filter_template_filter),
14222 (gst_audio_filter_template_filter_inplace):
14223 * gst-libs/gst/audio/gstaudiosink.c:
14224 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14225 (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
14226 (gst_audioringbuffer_release), (gst_audioringbuffer_start),
14227 (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
14228 (gst_audio_sink_base_init), (gst_audio_sink_class_init),
14229 (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
14230 * gst-libs/gst/audio/gstaudiosink.h:
14231 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
14232 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
14233 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14234 (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
14235 (gst_audioringbuffer_delay), (gst_audio_src_base_init),
14236 (gst_audio_src_class_init), (gst_audio_src_init),
14237 (gst_audio_src_create_ringbuffer):
14238 * gst-libs/gst/audio/gstaudiosrc.h:
14239 * gst-libs/gst/audio/gstbaseaudiosink.c:
14240 (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
14241 (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
14242 (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
14243 (gst_base_audio_sink_set_property),
14244 (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
14245 (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
14246 (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
14247 (gst_base_audio_sink_create_ringbuffer),
14248 (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
14249 * gst-libs/gst/audio/gstbaseaudiosink.h:
14250 * gst-libs/gst/audio/gstbaseaudiosrc.c:
14251 (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
14252 (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
14253 (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
14254 (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
14255 (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
14256 (gst_base_audio_src_event), (gst_base_audio_src_create),
14257 (gst_base_audio_src_create_ringbuffer),
14258 (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
14259 * gst-libs/gst/audio/gstbaseaudiosrc.h:
14260 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
14261 (gst_ring_buffer_class_init), (gst_ring_buffer_init),
14262 (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
14263 (gst_ring_buffer_debug_spec_caps),
14264 (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
14265 (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
14266 (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
14267 (gst_ring_buffer_start), (gst_ring_buffer_pause),
14268 (gst_ring_buffer_stop), (gst_ring_buffer_delay),
14269 (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
14270 (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
14271 (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
14272 (gst_ring_buffer_clear):
14273 * gst-libs/gst/audio/gstringbuffer.h:
14274 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
14275 (gst_video_sink_class_init), (gst_video_sink_get_type):
14276 * gst-libs/gst/video/videosink.h:
14277 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
14278 (gst_multifdsink_class_init),
14279 (gst_multifdsink_handle_client_write),
14280 (gst_multifdsink_change_state):
14281 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
14282 (gst_tcpclientsink_setcaps):
14283 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
14284 (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
14285 (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
14286 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
14287 (gst_ximagesink_send_pending_navigation),
14288 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
14289 (gst_ximagesink_class_init), (gst_ximagesink_get_type):
14290 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
14291 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
14292 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
14293 (gst_xvimagesink_send_pending_navigation),
14294 (gst_xvimagesink_navigation_send_event),
14295 (gst_xvimagesink_set_xwindow_id),
14296 (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
14297 (gst_xvimagesink_get_type):
14298 more macro splitting
14300 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
14302 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
14303 plug a memleak, allows me to import 1479 albums in one go
14305 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14306 (vorbis_handle_type_packet), (vorbis_dec_chain),
14307 (vorbis_dec_change_state):
14308 fix some format strings
14310 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
14312 * docs/libs/tmpl/gstcolorbalance.sgml:
14313 * docs/libs/tmpl/gstmixer.sgml:
14314 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
14315 (gst_alsasink_set_property), (gst_alsasink_get_property):
14316 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
14317 (gst_alsasrc_set_property), (gst_alsasrc_get_property):
14318 add device property
14320 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
14322 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
14323 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
14324 (audiocast_register_listener), (audiocast_thread_run),
14325 (gst_gnomevfssrc_send_additional_headers_callback),
14326 (gst_gnomevfssrc_received_headers_callback),
14327 (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
14328 (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
14329 (gst_gnomevfssrc_get_size):
14330 add/clean up debugging
14331 * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
14334 2005-07-07 Andy Wingo <wingo@pobox.com>
14336 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
14337 framerate. Need to get a handle on when exactly this function is
14340 * sys/v4l/v4lsrc_calls.h:
14341 * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
14342 (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
14343 (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
14345 * sys/v4l/v4l_calls.h: Cast to V4lElement.
14346 * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
14347 v4lelements are sources.
14349 * sys/v4l/gstv4lxoverlay.h:
14350 * sys/v4l/gstv4lxoverlay.c:
14351 * sys/v4l/gstv4ltuner.h:
14352 * sys/v4l/gstv4ltuner.c: Header loc fixen.
14354 * sys/v4l/gstv4lsrc.h:
14355 * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
14356 PushSrc/BaseSrc. Removed most sync-related properties, videorate
14357 or something should handle that. Made a live source.
14359 * sys/v4l/gstv4lelement.h:
14360 * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
14361 signals. Some cleanups.
14363 * sys/v4l/gstv4lcolorbalance.h: Interface header update.
14365 * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
14368 * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
14371 * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
14373 2005-07-07 Wim Taymans <wim@fluendo.com>
14375 * ext/theora/theoradec.c: (theora_get_query_types),
14376 (theora_dec_src_getcaps), (theora_dec_push):
14377 * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
14378 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
14379 Remove deprecated/unused query types.
14381 2005-07-06 Wim Taymans <wim@fluendo.com>
14383 * ext/alsa/Makefile.am:
14384 * ext/alsa/gstalsaplugin.c: (plugin_init):
14385 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
14386 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
14387 (gst_alsasrc_dispose), (gst_alsasrc_base_init),
14388 (gst_alsasrc_class_init), (gst_alsasrc_init),
14389 (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
14390 (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
14391 (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
14392 (gst_alsasrc_reset):
14393 * ext/alsa/gstalsasrc.h:
14394 * gst-libs/gst/audio/Makefile.am:
14395 * gst-libs/gst/audio/gstaudiosink.c:
14396 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14397 (gst_audioringbuffer_start):
14398 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
14399 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
14400 (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
14401 (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
14402 (gst_audioringbuffer_release), (gst_audioringbuffer_start),
14403 (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
14404 (gst_audiosrc_base_init), (gst_audiosrc_class_init),
14405 (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
14406 * gst-libs/gst/audio/gstaudiosrc.h:
14407 * gst-libs/gst/audio/gstbaseaudiosink.c:
14408 (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
14409 (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
14410 (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
14411 * gst-libs/gst/audio/gstbaseaudiosrc.c:
14412 (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
14413 (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
14414 (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
14415 (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
14416 (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
14417 (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
14418 (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
14419 (gst_baseaudiosrc_change_state):
14420 * gst-libs/gst/audio/gstbaseaudiosrc.h:
14421 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
14422 (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
14423 (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
14424 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
14425 (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
14426 (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
14427 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
14428 * gst-libs/gst/audio/gstringbuffer.h:
14429 Added audiosource base classes.
14430 Ported alsasrc, still very basic.
14432 2005-07-06 Wim Taymans <wim@fluendo.com>
14434 * ext/theora/theoradec.c: (theora_dec_src_getcaps),
14435 (theora_dec_push), (theora_handle_data_packet):
14436 Prepare for better timestamp fix later.
14438 * gst/audioconvert/gstaudioconvert.c:
14439 List most accurate caps first
14441 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
14442 Use proper pad task function.
14444 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
14445 (gst_xvimagesink_show_frame):
14446 Fix deadlock when alloc failed.
14448 2005-07-05 Andy Wingo <wingo@pobox.com>
14450 * ext/gnomevfs/gstgnomevfssrc.c:
14451 * gst/sine/gstsinesrc.c:
14452 * gst/tcp/gsttcpserversrc.c:
14453 * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
14455 * sys/v4l/: Port from 0.8.
14457 * Many files: Null if we got it....
14459 2005-07-05 Andy Wingo <wingo@pobox.com>
14461 * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read):
14462 * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
14465 2005-07-05 Wim Taymans <wim@fluendo.com>
14468 * gst/tcp/Makefile.am:
14470 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
14471 (gst_multifdsink_base_init), (gst_multifdsink_class_init),
14472 (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
14473 (is_sync_frame), (gst_multifdsink_handle_client_write),
14474 (gst_multifdsink_render), (gst_multifdsink_start),
14475 (gst_multifdsink_stop), (gst_multifdsink_change_state):
14476 * gst/tcp/gstmultifdsink.h:
14477 * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
14478 (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
14479 (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
14480 * gst/tcp/gsttcp.h:
14481 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
14482 (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
14483 (gst_tcpclientsink_render), (gst_tcpclientsink_start),
14484 (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
14485 * gst/tcp/gsttcpclientsink.h:
14486 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
14487 (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
14488 (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
14489 (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
14490 (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
14491 * gst/tcp/gsttcpclientsrc.h:
14492 * gst/tcp/gsttcpplugin.c: (plugin_init):
14493 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
14494 * gst/tcp/gsttcpserversink.h:
14495 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
14496 (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
14497 (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
14498 (gst_tcpserversrc_create), (gst_tcpserversrc_start),
14499 (gst_tcpserversrc_stop):
14500 * gst/tcp/gsttcpserversrc.h:
14501 * gst/tcp/gsttcpsink.c:
14502 * gst/tcp/gsttcpsink.h:
14503 * gst/tcp/gsttcpsrc.c:
14504 * gst/tcp/gsttcpsrc.h:
14505 Ported tcp plugins to 0.9.
14508 2005-07-05 Andy Wingo <wingo@pobox.com>
14510 * gst/playback/gstplaybasebin.c (fill_buffer):
14511 message_new_application fixen.
14513 * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
14516 2005-07-04 Wim Taymans <wim@fluendo.com>
14518 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
14519 Set caps on output buffer.
14521 2005-07-04 Andy Wingo <wingo@pobox.com>
14523 * ext/gnomevfs/gstgnomevfssrc.c
14524 (gst_gnomevfssrc_received_headers_callback)
14525 (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
14528 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
14529 No refcount leakage.
14531 * configure.ac: Enable -Werror.
14533 * ext/theora/theoradec.c (theora_dec_src_getcaps):
14534 * gst/audioconvert/bufferframesconvert.c
14535 (buffer_frames_convert_fixate):
14536 * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
14537 (gst_audio_convert_fixate):
14538 * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
14539 (gst_sinesrc_create): Fixate func changes.
14541 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
14542 (gst_ximagesink_buffer_alloc): Unused var.
14544 2005-07-01 Andy Wingo <wingo@pobox.com>
14546 * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
14547 getcaps to do explicit caps. Needs to be done in all decoders,
14548 possibly via a base class.
14550 * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
14552 * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
14553 caps on the sink pad, just rely on the pad template. Also, setting
14554 ANY caps on a pad is not valid because the caps are not fixed.
14556 * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
14557 caps on the buffer, and get the width from the desired_caps if
14559 (gst_ximagesink_renegotiate_size): Implement via setting the
14560 desired_caps on the ximagesink.
14561 (gst_ximagesink_setcaps): Only reset the width of the player if it
14562 wasn't already set. Not sure if this is right.
14563 (gst_ximagesink_show_frame): Memcpy only for normal buffers.
14565 * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
14566 that the user wants. NULL unless the window has been resized.
14568 * gst/volume/gstvolume.c (volume_transform): Adapt to
14569 basetransform refcount changes.
14571 2005-07-01 Andy Wingo <wingo@pobox.com>
14573 * gst/videoscale/gstvideoscale.c:
14574 * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
14575 from BaseTransform, implements a transform_caps. Removed dead code
14576 including some PAR stuff that was never reached -- should probably
14577 be added back somehow.
14579 2005-07-01 Andy Wingo <wingo@pobox.com>
14581 * gst/videoscale: Merge David's work from 0.8 branch. Changes to
14584 2005-06-30 Thomas Vander Stichele <thomas at apestaart dot org>
14587 * docs/libs/Makefile.am:
14588 * docs/libs/gst-plugins-libs.types:
14589 * ext/alsa/Makefile.am:
14590 * ext/alsa/gstalsamixer.h:
14591 * ext/alsa/gstalsamixeroptions.h:
14592 * ext/alsa/gstalsamixertrack.h:
14593 * gst-libs/gst/Makefile.am:
14594 * gst-libs/gst/colorbalance/.cvsignore:
14595 * gst-libs/gst/colorbalance/Makefile.am:
14596 * gst-libs/gst/colorbalance/colorbalance-marshal.list:
14597 * gst-libs/gst/colorbalance/colorbalance.c:
14598 * gst-libs/gst/colorbalance/colorbalance.h:
14599 * gst-libs/gst/colorbalance/colorbalance.vcproj:
14600 * gst-libs/gst/colorbalance/colorbalancechannel.c:
14601 * gst-libs/gst/colorbalance/colorbalancechannel.h:
14602 * gst-libs/gst/interfaces/Makefile.am:
14603 * gst-libs/gst/interfaces/colorbalance.c:
14604 (gst_color_balance_class_init):
14605 * gst-libs/gst/interfaces/colorbalance.h:
14606 * gst-libs/gst/interfaces/interfaces-marshal.list:
14607 * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
14608 * gst-libs/gst/interfaces/mixer.h:
14609 * gst-libs/gst/interfaces/mixeroptions.h:
14610 * gst-libs/gst/interfaces/navigation.c:
14611 * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
14612 * gst-libs/gst/interfaces/tuner.h:
14613 * gst/volume/Makefile.am:
14614 * gst/volume/gstvolume.c:
14615 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
14616 * sys/ximage/Makefile.am:
14617 * sys/ximage/ximagesink.c:
14618 * sys/xvimage/Makefile.am:
14619 * sys/xvimage/xvimagesink.c:
14620 fold in all interfaces into an interfaces dir, preserving CVS
14623 2005-06-30 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14625 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
14626 Fix build after riff changes.
14628 2005-06-30 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14630 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
14631 (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
14632 (gst_riff_create_video_template_caps),
14633 (gst_riff_create_audio_template_caps),
14634 (gst_riff_create_iavs_template_caps):
14635 * gst-libs/gst/riff/riff-media.h:
14636 * gst-libs/gst/riff/riff-read.h:
14637 * gst-libs/gst/riff/riff.c: (gst_riff_init):
14638 Add gst_riff_init() to initialize the debug category, instead
14639 of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
14641 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14643 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
14644 Oops, I shouldn't apply hacks.
14646 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14648 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
14649 Remove pad_loop function which doesn't work.
14651 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14653 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
14654 Send EOS when deactivating.
14655 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
14656 (check_queue), (queue_threshold_reached), (queue_out_of_data),
14657 (gen_preroll_element), (probe_triggered), (mute_stream),
14658 (silence_stream), (new_decoded_pad), (setup_substreams),
14659 (set_active_source):
14660 * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
14661 (remove_sinks), (add_sink):
14662 * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
14663 Change for new probe API.
14665 2005-06-29 Wim Taymans <wim@fluendo.com>
14667 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
14668 * gst-libs/gst/audio/gstbaseaudiosink.c:
14669 (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
14670 (gst_baseaudiosink_change_state):
14671 * gst-libs/gst/audio/gstbaseaudiosink.h:
14672 * gst-libs/gst/audio/gstringbuffer.c:
14673 (gst_ringbuffer_set_callback):
14674 Fix compilation error.
14675 Ringbuffer starts out as not running.
14676 Free our clock in dispose.
14677 When releasing the ringbuffer we need to renegotiate so
14678 clear the pad caps.
14680 2005-06-29 Thomas Vander Stichele <thomas at apestaart dot org>
14684 * docs/Makefile.am:
14685 * docs/libs/Makefile.am:
14686 * docs/libs/gst-plugins-libs-docs.sgml:
14687 * docs/libs/gst-plugins-libs-sections.txt:
14688 * docs/libs/gst-plugins-libs.types:
14689 * docs/libs/tmpl/gstaudio.sgml:
14690 * docs/libs/tmpl/gstcolorbalance.sgml:
14691 * docs/libs/tmpl/gstringbuffer.sgml:
14692 * gst-libs/gst/audio/gstringbuffer.c:
14693 (gst_ringbuffer_set_callback):
14694 reinstate gtk-doc docs for plugin libs
14696 2005-06-28 Wim Taymans <wim@fluendo.com>
14698 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14699 (gst_ogg_demux_init):
14700 Removed pad loop function.
14702 2005-06-28 Wim Taymans <wim@fluendo.com>
14704 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14705 If we're building a chain we are not in an error case
14706 when we queue a buffer.
14708 2005-06-28 Andy Wingo <wingo@pobox.com>
14710 * *.c: Don't cast to GstObject before reffing/unreffing.
14712 2005-06-27 Andy Wingo <wingo@pobox.com>
14714 * gst/videotestsrc/gstvideotestsrc.c
14715 (gst_videotestsrc_activate_push): Activation API changes.
14717 * gst/playback/gstdecodebin.c (gst_decode_bin_change_state)
14718 (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
14719 they have refs on the decodebin.
14721 * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
14723 (gst_ogg_pad_typefind): Don't leak a pad ref.
14724 (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
14725 (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push)
14726 (gst_ogg_demux_sink_activate_pull): Changes for activation API.
14728 2005-06-27 Edward Hervey <edward@fluendo.com>
14730 * ext/theora/theoradec.c: (theora_dec_change_state):
14731 re-arranged call to parent's state change in order to avoid locks (or
14734 2005-06-26 Edward Hervey <edward@fluendo.com>
14736 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
14737 2nd argument of 'unknow-type' signal is a GstCaps and not a
14740 2005-06-25 Jan Schmidt <thaytan@mad.scientist.com>
14741 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
14742 Set the worker thread's running flag to TRUE before starting the
14744 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
14745 Catch a failure to add typefind to the bin.
14747 2005-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
14749 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
14750 (gst_sinesrc_init), (gst_sinesrc_create),
14751 (gst_sinesrc_set_property), (gst_sinesrc_get_property),
14752 (gst_sinesrc_start):
14753 * gst/sine/gstsinesrc.h:
14754 add num-buffers and timestamp-offset properties
14755 * gst/videotestsrc/gstvideotestsrc.c:
14756 (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
14757 (gst_videotestsrc_get_property):
14758 add timestamp-offset property
14760 2005-06-23 Christian Schaller <uraeus@gnome.org>
14762 * configure.ac: add videorate
14763 * gst-plugins-base.spec.in: add videorate
14765 2005-06-23 Wim Taymans <wim@fluendo.com>
14767 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14768 (gst_videorate_getcaps), (gst_videorate_setcaps),
14769 (gst_videorate_event), (gst_videorate_chain):
14770 Fixed videorate, fixating an already fixated caps is not
14773 2005-06-23 Wim Taymans <wim@fluendo.com>
14776 * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
14777 Buffer on caps is not boxed anymore.
14779 2005-06-22 Wim Taymans <wim@fluendo.com>
14781 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
14782 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
14783 Set buffers on caps as miniobjects and not as boxed.
14785 2005-06-19 Thomas Vander Stichele <thomas at apestaart dot org>
14790 === release 0.9.1 ===
14792 2005-06-19 Thomas Vander Stichele <thomas at apestaart dot org>
14813 updates for release
14815 2005-06-09 Andy Wingo <wingo@pobox.com>
14817 * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
14819 2005-06-09 Andy Wingo <wingo@pobox.com>
14822 * gst-libs/gst/Makefile.am:
14823 * gst-libs/gst/net/Makefile.am:
14824 Add gstnet to build.
14826 2005-06-09 Andy Wingo <wingo@pobox.com>
14828 * gst-libs/gst/gconf/gconf.c:
14829 * gst/playback/test.c:
14830 * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
14833 * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
14835 * ext/theora/theoraenc.c (theora_enc_chain):
14836 * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
14838 * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
14841 2005-06-02 Wim Taymans <wim@fluendo.com>
14843 * gst-libs/gst/net/Makefile.am:
14844 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
14845 * pkgconfig/gstreamer-libs.pc.in:
14846 Added net stuff, version net lib.
14848 2005-06-02 Wim Taymans <wim@fluendo.com>
14850 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
14851 (query_rates), (query_positions_elems), (query_positions_pads),
14853 Updated seek example.
14855 2005-06-02 Andy Wingo <wingo@pobox.com>
14857 * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
14858 * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
14861 * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
14862 remove the typefind, the bin dispose will do it for us. When it's
14863 removed and unreffed, the signal handler will be disconnected,
14865 (unlinked): It's too difficult to disconnect from unlinked
14866 handlers, as they are on pads not elements. Just punt if the pads
14867 aren't grandkids of the bin.
14869 2005-06-02 Wim Taymans <wim@fluendo.com>
14872 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14873 (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
14874 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
14875 * ext/theora/theoradec.c: (theora_dec_src_query),
14876 (theora_handle_data_packet):
14877 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
14878 (theora_enc_chain):
14879 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14880 (vorbis_handle_data_packet):
14881 * gst/audioconvert/bufferframesconvert.c:
14882 (buffer_frames_convert_chain):
14883 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14884 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14885 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14886 (gst_ffmpegcsp_chain):
14887 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14888 (gst_videorate_getcaps), (gst_videorate_setcaps),
14889 (gst_videorate_event), (gst_videorate_chain):
14890 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
14891 (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
14892 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14893 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
14894 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
14895 (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
14896 (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
14897 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
14898 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
14899 Cleanups and buffer alloc.
14901 2005-05-31 Wim Taymans <wim@fluendo.com>
14903 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
14904 Don't try to call the delay method when the device is not
14907 2005-05-31 Wim Taymans <wim@fluendo.com>
14909 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
14910 Get actual segment size and buffer size after opening
14913 2005-05-30 Wim Taymans <wim@fluendo.com>
14915 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
14916 (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
14917 Also FLUSH upstream, makes the loop function exit faster.
14919 * ext/theora/theoradec.c: (theora_dec_src_query):
14920 Some more debug info in the query.
14922 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14923 (gst_ximagesink_setcaps):
14924 Release lock on par error, better error reporting.
14926 2005-05-26 Wim Taymans <wim@fluendo.com>
14928 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14929 (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
14930 (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
14931 Clear chains in READY
14932 Queue packets until the chain is activated.
14934 2005-05-25 Wim Taymans <wim@fluendo.com>
14936 * gst-libs/gst/audio/gstaudiosink.c:
14937 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14938 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
14939 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14940 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
14941 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
14942 (gst_audiosink_create_ringbuffer):
14943 * gst-libs/gst/audio/gstbaseaudiosink.c:
14944 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
14945 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
14946 (gst_baseaudiosink_set_property), (build_linear_format),
14947 (debug_spec_caps), (debug_spec_buffer),
14948 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
14949 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
14950 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
14951 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
14952 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
14953 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
14954 (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
14955 (gst_ringbuffer_play), (gst_ringbuffer_pause),
14956 (gst_ringbuffer_stop), (gst_ringbuffer_delay),
14957 (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
14958 (wait_segment), (gst_ringbuffer_commit),
14959 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
14960 (gst_ringbuffer_clear):
14961 Various small cleanups.
14963 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
14964 (gst_audio_convert_change_state):
14965 * gst/subparse/gstsubparse.c: (gst_subparse_chain):
14966 No need to take the locks anymore.
14968 2005-05-25 Wim Taymans <wim@fluendo.com>
14970 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
14971 (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
14972 (remove_element_chain), (no_more_pads), (unlinked), (close_link),
14974 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
14975 (group_destroy), (group_commit), (queue_overrun),
14976 (gen_preroll_element), (no_more_pads), (preroll_unlinked),
14977 (mute_stream), (new_decoded_pad), (setup_substreams),
14978 (setup_source), (mute_group_type), (set_active_source),
14979 (gst_play_base_bin_change_state):
14980 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
14981 (gen_video_element), (gen_text_element), (gen_audio_element),
14982 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
14983 * gst/playback/gststreaminfo.c: (gst_stream_info_new),
14984 (gst_stream_info_dispose), (gst_stream_info_set_mute):
14985 * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
14986 Some playbin cleanups mostly refcounting sloppyness.
14988 2005-05-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14990 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14991 Work with streaming input.
14993 2005-05-25 Wim Taymans <wim@fluendo.com>
14995 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14996 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14997 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14998 (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
14999 No need to take the STREAM lock anymore.
15001 2005-05-25 Wim Taymans <wim@fluendo.com>
15003 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
15004 (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
15005 (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
15006 (gst_ogg_demux_chain), (gst_ogg_demux_loop),
15007 (gst_ogg_demux_sink_activate):
15008 * ext/theora/theoradec.c: (theora_dec_src_event),
15009 (theora_handle_comment_packet), (theora_dec_chain),
15010 (theora_dec_change_state):
15011 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
15012 (vorbis_handle_data_packet), (vorbis_dec_chain),
15013 (vorbis_dec_change_state):
15014 Remove STREAM locks as they are taken in core now.
15015 Never set bogus granulepos on vorbis/theora.
15016 Fix leaks in theoradec tag parsing.
15018 2005-05-25 Wim Taymans <wim@fluendo.com>
15020 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
15021 Fix memleaks, GST_BUFFER_DATA() is not freed.
15023 2005-05-25 Wim Taymans <wim@fluendo.com>
15025 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
15026 Open non-blocking, set to blocking mode afterwards to avoid
15027 lockups when audio device is busy.
15029 2005-05-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15031 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
15032 This can't be good.
15034 2005-05-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15036 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
15037 (gst_audio_convert_chain), (gst_audio_convert_link_src),
15038 (gst_audio_convert_setcaps):
15039 Implement instant setup switching.
15041 2005-05-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15043 * gst/playback/gstplaybasebin.c: (probe_triggered):
15044 Fix missing unlock.
15045 * gst/playback/gstplaybin.c: (add_sink):
15046 First add, then link (otherwise pad link fails).
15048 2005-05-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15050 * examples/Makefile.am:
15051 fix buildbot (make distcheck)
15053 2005-05-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15055 * gst/playback/gstplaybin.c: (gen_vis_element):
15056 Remove some wrong code. Doesn't work yet.
15058 2005-05-19 Wim Taymans <wim@fluendo.com>
15060 * gst-libs/gst/net/Makefile.am:
15061 * gst-libs/gst/net/README:
15062 * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
15063 (gst_netbuffer_class_init), (gst_netbuffer_init),
15064 (gst_netbuffer_finalize), (gst_netbuffer_copy),
15065 (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
15066 (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
15067 (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
15068 * gst-libs/gst/net/gstnetbuffer.h:
15069 Added buffer subclass to store extra to/from addresses for
15070 network sources/sinks.
15072 2005-05-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15074 * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
15075 Don't lock an unassigned variable.
15077 2005-05-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15079 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
15080 Increase buffer for video, decrease buffer for other media types.
15081 * gst/playback/gstplaybin.c: (gen_video_element),
15082 (gen_audio_element):
15083 Change names for debugging purposes.
15085 2005-05-18 Wim Taymans <wim@fluendo.com>
15087 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15088 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15089 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
15090 (gst_ffmpegcsp_chain):
15091 Enable buffer alloc passthrough if the source and dest
15092 formats are the same.
15094 2005-05-17 Wim Taymans <wim@fluendo.com>
15096 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
15097 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
15098 (gst_ogg_demux_chain_unlocked):
15099 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15100 (gst_audio_convert_caps_remove_format_info),
15101 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15102 (gst_audio_convert_fixate), (gst_audio_convert_change_state):
15103 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15104 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15105 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
15106 (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
15107 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
15108 (gst_ffmpegcsp_get_property):
15109 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
15110 (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
15111 (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
15112 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
15113 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
15114 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
15115 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
15116 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
15117 Leak fixes in oggdemux.
15118 Some cleanups in audioconvert.
15119 Make passthrough work along with buffer_alloc etc.
15120 Make buffer_alloc and buffer recycling actually work in
15123 2005-05-17 Thomas Vander Stichele <thomas at apestaart dot org>
15125 * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
15126 make the compiler happy
15128 2005-05-17 Wim Taymans <wim@fluendo.com>
15130 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
15131 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
15132 (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
15133 (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
15134 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
15135 (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
15136 (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
15137 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
15138 (gst_xvimagesink_set_xwindow_id):
15139 * sys/xvimage/xvimagesink.h:
15140 Port xvimagesink to new MiniObject.
15142 2005-05-17 Wim Taymans <wim@fluendo.com>
15144 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
15145 (gst_audiofilter_chain):
15146 * gst-libs/gst/audio/gstaudiosink.c:
15147 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15148 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15149 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15150 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15151 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15152 (gst_audiosink_create_ringbuffer):
15153 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15154 (gst_audio_convert_caps_remove_format_info),
15155 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15156 (gst_audio_convert_fixate), (gst_audio_convert_channels):
15157 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15158 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15159 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15160 Fix passthrough in ffmpegcolorspace.
15161 Fix memset in audiosink on wrong memory.
15163 2005-05-16 David Schleef <ds@schleef.org>
15165 * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
15168 2005-05-16 David Schleef <ds@schleef.org>
15170 Port from GstData to GstMiniObject.
15171 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
15172 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
15173 (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
15174 (gst_ogg_mux_collected):
15175 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
15176 * ext/theora/theoradec.c: (theora_handle_comment_packet),
15177 (theora_handle_data_packet):
15178 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
15179 (theora_set_header_on_caps), (theora_enc_chain):
15180 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
15181 (vorbis_handle_comment_packet):
15182 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
15183 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
15184 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
15185 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
15186 * gst/audioconvert/gstaudioconvert.c:
15187 (gst_audio_convert_get_buffer):
15188 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
15189 * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
15190 (mute_stream), (silence_stream):
15191 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
15192 * gst/volume/gstvolume.c: (volume_transform):
15193 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
15194 (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
15195 (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
15196 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
15197 (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
15198 (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
15199 (gst_ximagesink_buffer_alloc):
15200 * sys/ximage/ximagesink.h:
15202 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15204 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15205 (fill_buffer), (check_queue), (queue_threshold_reached),
15206 (queue_out_of_data):
15207 * gst/playback/gstplaybasebin.h:
15208 Post buffer-fullness on the bus.
15210 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15212 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
15214 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15215 (group_commit), (probe_triggered), (setup_source),
15216 (gst_play_base_bin_change_state):
15217 * gst/playback/gstplaybasebin.h:
15218 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15219 (gst_play_bin_init), (remove_sinks), (setup_sinks),
15220 (gst_play_bin_change_state):
15221 Move setup_output_pads into a virtual function, remove
15222 group-switch (no longer needed) and redirect (handled by bus
15225 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15227 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
15228 (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
15229 (get_active_group), (get_building_group), (group_destroy),
15230 (group_commit), (check_queue), (queue_overrun),
15231 (queue_threshold_reached), (queue_out_of_data),
15232 (gen_preroll_element), (remove_groups), (unknown_type),
15233 (add_element_stream), (no_more_pads), (probe_triggered),
15234 (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
15235 (setup_substreams), (setup_source), (finish_source),
15236 (prepare_output), (muted_group_change_state),
15237 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
15238 (gst_play_base_bin_change_state):
15239 * gst/playback/gstplaybasebin.h:
15240 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15241 (gst_play_bin_init), (gst_play_bin_set_property),
15242 (gen_video_element), (gen_text_element), (gen_audio_element),
15243 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
15244 (gst_play_bin_change_state):
15245 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
15246 (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
15247 (stream_info_change_state), (gst_stream_info_set_mute),
15248 (gst_stream_info_get_property):
15249 * gst/playback/gststreaminfo.h:
15250 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
15251 (gst_stream_selector_get_linked_pad),
15252 (gst_stream_selector_getcaps),
15253 (gst_stream_selector_get_linked_pads),
15254 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
15255 * gst/playback/gststreamselector.h:
15256 Rough port of playbin. Needs some more work, but is mostly done,
15257 and uses a few locks in important places, which should make stuff
15258 like chain-switches clean. Still uses GST_STATE() in a few places,
15259 which isn't all that good an idea, subtitles/elements disabled
15260 because no elements to test with and thus probably broken, query
15261 and event handling moved to GstBin, internal thread removed
15262 alltogether because the pipeline does that for us now. Can play
15263 Ogg/Vorbis files. Haven't tested anything else yet.
15265 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15267 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
15268 Do no-more-pads (needed for autoplugging).
15270 2005-05-10 Andy Wingo <wingo@pobox.com>
15272 * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
15273 message to the bus with the tags. Still not sent downstream tho.
15275 * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
15277 (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
15278 avoid refcounting hassles.
15280 2005-05-09 Andy Wingo <wingo@pobox.com>
15282 * gst/volume/Makefile.am:
15283 * gst/volume/demo.c
15284 * gst/volume/gstvolume.h
15285 * gst/volume/gstvolume.c: Port to 0.9 API, derive from
15286 basetransform. Probably need an audio filter base class.
15288 2005-05-09 Wim Taymans <wim@fluendo.com>
15290 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
15291 (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
15292 (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
15293 (gst_vorbisenc_chain):
15294 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15295 (gst_audio_convert_caps_remove_format_info),
15296 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15297 (gst_audio_convert_fixate), (gst_audio_convert_channels):
15298 Make caps writable before writing to it.
15299 Fix negotiation in audioconvert some more.
15301 2005-05-09 Wim Taymans <wim@fluendo.com>
15303 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
15304 (gst_videorate_getcaps), (gst_videorate_setcaps),
15305 (gst_videorate_event), (gst_videorate_chain):
15306 Better negotiation.
15308 2005-05-09 Wim Taymans <wim@fluendo.com>
15310 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
15311 (gst_videorate_getcaps), (gst_videorate_setcaps),
15312 (gst_videorate_blank_data), (gst_videorate_init),
15313 (gst_videorate_event), (gst_videorate_chain),
15314 (gst_videorate_change_state):
15315 Port videorate, do a better job at negotiation while we're at
15318 2005-05-09 Jan Schmidt <thaytan@mad.scientist.com>
15323 * examples/Makefile.am:
15324 * gst-libs/gst/audio/Makefile.am:
15325 * gst-libs/gst/riff/Makefile.am:
15326 * gst-libs/gst/tag/Makefile.am:
15327 * gst-libs/gst/video/Makefile.am:
15328 Fixups for missing variables.
15330 2005-05-09 Wim Taymans <wim@fluendo.com>
15332 * examples/seeking/seek.c: (make_theora_pipeline),
15333 (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
15334 (query_rates), (query_positions_elems), (query_positions_pads),
15335 (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
15336 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
15337 (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
15338 (gst_ogg_pad_typefind), (gst_ogg_demux_init),
15339 (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
15340 (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
15341 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15342 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
15343 (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
15344 (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
15345 (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
15346 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
15347 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
15348 (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
15349 * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
15350 (theora_dec_src_convert), (theora_dec_sink_convert),
15351 (theora_dec_src_query), (theora_dec_sink_query),
15352 (theora_dec_src_event), (theora_dec_sink_event),
15353 (theora_handle_comment_packet), (theora_handle_type_packet),
15354 (theora_handle_header_packet), (theora_handle_data_packet),
15355 (theora_dec_chain):
15356 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
15357 (vorbis_dec_convert), (vorbis_dec_src_query),
15358 (vorbis_dec_sink_query), (vorbis_dec_src_event),
15359 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15360 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15361 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
15362 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
15363 (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
15364 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
15365 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15366 (gst_play_bin_query):
15367 * gst/playback/test3.c: (update_scale):
15368 * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
15369 (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
15370 * gst/subparse/gstsubparse.c: (gst_subparse_init):
15371 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
15372 (gst_videotestsrc_src_query):
15373 * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
15374 (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
15375 (paint_hline_YUV9):
15376 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
15377 Port to new query API.
15379 Cleanups in x[v]imagesink
15381 2005-05-09 Andy Wingo <wingo@pobox.com>
15383 * ext/alsa/gstalsasink.h:
15384 * ext/gnomevfs/gstgnomevfssrc.c:
15385 (gst_gnomevfssrc_get_icy_metadata):
15386 * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
15387 (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
15388 * ext/theora/theoradec.c (theora_dec_src_query)
15389 (theora_dec_src_event, theora_dec_sink_event)
15390 (theora_handle_comment_packet, theora_handle_data_packet):
15391 * ext/theora/theoraenc.c (theora_enc_chain):
15392 * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
15393 (vorbis_dec_sink_event, vorbis_handle_comment_packet):
15394 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
15395 * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
15397 * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
15398 (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
15399 (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
15400 (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
15401 (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
15402 (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
15403 (paint_setup_xBGR8888, paint_setup_RGBx8888)
15404 (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
15405 (paint_setup_RGB565, paint_setup_xRGB1555):
15406 * gst/videotestsrc/videotestsrc.h:
15407 * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
15408 * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
15409 (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
15412 * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
15413 gst_pad_query_position. Fixes oggdemux.
15415 2005-05-08 David Schleef <ds@schleef.org>
15417 * configure.ac: Require liboil.
15418 * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
15420 * gst/videotestsrc/videotestsrc.c:
15421 * gst/videotestsrc/videotestsrc.h:
15423 2005-05-06 Wim Taymans <wim@fluendo.com>
15425 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15426 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15427 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15428 Well, unreffing a buffer right before pushing it is asking
15431 2005-05-06 Christian Schaller <uraeus@gnome.org>
15433 * pkgconfig/gstreamer-libs.pc.in: add missing library calls
15435 2005-05-06 Wim Taymans <wim@fluendo.com>
15437 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15438 (gst_audio_convert_caps_remove_format_info),
15439 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15440 (gst_audio_convert_fixate), (gst_audio_convert_channels):
15441 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15442 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15443 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15444 * gst/sine/Makefile.am:
15445 * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
15446 (gst_sinesrc_class_init), (gst_sinesrc_init),
15447 (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
15448 (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
15449 (gst_sinesrc_update_freq):
15450 * gst/sine/gstsinesrc.h:
15451 * gst/tcp/gstmultifdsink.c:
15452 * sys/xvimage/xvimagesink.c:
15453 Fixed negotiation wrt _peer_get_caps()
15457 2005-05-06 Wim Taymans <wim@fluendo.com>
15459 * gst-libs/gst/audio/gstaudiosink.c:
15460 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15461 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15462 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15463 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15464 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15465 (gst_audiosink_create_ringbuffer):
15466 * gst-libs/gst/audio/gstbaseaudiosink.c:
15467 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15468 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15469 (gst_baseaudiosink_set_property), (build_linear_format),
15470 (debug_spec_caps), (debug_spec_buffer),
15471 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15472 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15473 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15474 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15475 * gst-libs/gst/audio/gstbaseaudiosink.h:
15476 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15477 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15478 (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
15479 (gst_ringbuffer_play), (gst_ringbuffer_pause),
15480 (gst_ringbuffer_stop), (gst_ringbuffer_delay),
15481 (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
15482 (wait_segment), (gst_ringbuffer_commit),
15483 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
15484 (gst_ringbuffer_clear):
15485 * gst-libs/gst/audio/gstringbuffer.h:
15486 Make the base audiosink return an error when there is no
15487 audiobuffer negotiated.
15489 2005-05-06 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15492 Disable cdparanoia until someone ports it!
15494 2005-05-06 Wim Taymans <wim@fluendo.com>
15496 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15497 (gst_ogg_demux_sink_activate):
15498 And revert after wingo's revert.. sigh..
15500 2005-05-05 Andy Wingo <wingo@pobox.com>
15502 * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
15504 * configure.ac: Return audiorate and subparse from the ghetto.
15505 Re-enable -Wall -Werror.
15506 * gst/subparse/gstsubparse.c:
15507 * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
15508 or chain-based. Cleaned up a bit. Not tested.
15510 2005-05-05 Christian Schaller <christian@fluendo.com>
15512 * Makefile.am: remove stuff that is not building
15513 * configure.ac: remove stuff that is not building
15514 * examples/Makefile.am: remove stuff that is not building
15515 * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
15516 * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
15517 * sys/Makefile.am: remove stuff that is not building
15518 * testsuite/Makefile.am: remove stuff that is not building
15520 2005-05-05 Andy Wingo <wingo@pobox.com>
15522 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
15523 * gst-libs/gst/tag/gstvorbistag.c:
15524 (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
15525 * gst/adder/gstadder.h:
15526 * gst/audioconvert/gstchannelmix.c:
15527 (gst_audio_convert_fill_one_other):
15528 * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
15529 (gst_audiorate_init), (gst_audiorate_chain):
15530 * gst/playback/gstplaybasebin.c: (setup_source):
15531 * gst/playback/test3.c: (update_scale):
15549 2005-05-05 Wim Taymans <wim@fluendo.com>
15551 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15552 (gst_audio_convert_caps_remove_format_info),
15553 (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
15554 (gst_audio_convert_change_state), (gst_audio_convert_channels):
15555 * gst/videotestsrc/gstvideotestsrc.c:
15556 (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
15557 (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
15558 (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
15559 (gst_videotestsrc_init), (gst_videotestsrc_loop):
15560 Don't ignore _push() return values.
15561 Make sure no processing is done when shutting down.
15562 Videotestsrc pad activation fix.
15564 2005-05-05 Wim Taymans <wim@fluendo.com>
15566 * gst/adder/Makefile.am:
15567 * gst/adder/gstadder.c: (gst_adder_setcaps),
15568 (gst_adder_class_init), (gst_adder_init),
15569 (gst_adder_request_new_pad), (gst_adder_collected),
15570 (gst_adder_change_state):
15571 * gst/adder/gstadder.h:
15572 Ported adder as an example of a mixer element using
15573 collect pads. Needs more negotiation work.
15575 2005-05-05 Wim Taymans <wim@fluendo.com>
15577 * ext/theora/theoradec.c: (_inc_granulepos),
15578 (theora_dec_src_event), (theora_dec_sink_event),
15579 (theora_handle_comment_packet), (theora_handle_type_packet),
15580 (theora_handle_header_packet), (theora_handle_data_packet),
15581 (theora_dec_chain):
15582 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
15583 (gst_theora_enc_init), (theora_enc_sink_setcaps),
15584 (theora_push_buffer), (theora_push_packet),
15585 (theora_enc_sink_event), (theora_enc_chain),
15586 (theora_enc_change_state), (theora_enc_set_property),
15587 (theora_enc_get_property):
15588 Added stream lock to decoder so that we can serialize
15590 More theoraenc porting, recover from errors, do clean
15593 2005-05-05 Wim Taymans <wim@fluendo.com>
15595 * ext/ogg/Makefile.am:
15597 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15598 (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
15600 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15601 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
15602 (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
15603 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
15604 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
15605 (gst_ogg_mux_change_state):
15608 2005-05-05 Wim Taymans <wim@fluendo.com>
15610 * docs/design-audiosinks.txt:
15611 * gst-libs/gst/audio/TODO:
15612 * gst-libs/gst/audio/gstaudiosink.c:
15613 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15614 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15615 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15616 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15617 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15618 (gst_audiosink_create_ringbuffer):
15619 * gst-libs/gst/audio/gstbaseaudiosink.c:
15620 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15621 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15622 (gst_baseaudiosink_set_property), (build_linear_format),
15623 (debug_spec_caps), (debug_spec_buffer),
15624 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15625 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15626 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15627 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15628 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15629 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15630 (gst_ringbuffer_release), (gst_ringbuffer_play),
15631 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15632 (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15633 (gst_ringbuffer_set_sample), (wait_segment),
15634 (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15635 (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15636 More work on the audiosink, mostly debugging and a race in
15639 2005-04-28 Wim Taymans <wim@fluendo.com>
15641 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15642 (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
15643 * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
15644 (vorbis_dec_src_query), (vorbis_dec_src_event),
15645 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15646 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15647 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
15648 Don't crap out when seeking back to position 0.
15650 2005-04-28 Wim Taymans <wim@fluendo.com>
15652 * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
15653 (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
15654 (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
15655 (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
15656 (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
15657 Make audio sink configurable, use alsasink as default.
15659 2005-04-28 Wim Taymans <wim@fluendo.com>
15661 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15662 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15663 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15664 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
15665 (vorbis_dec_change_state):
15666 * ext/vorbis/vorbisdec.h:
15667 Refactor, use STREAM_LOCK.
15669 2005-04-28 Wim Taymans <wim@fluendo.com>
15671 * ext/theora/theoradec.c: (_inc_granulepos),
15672 (theora_dec_sink_event), (theora_handle_comment_packet),
15673 (theora_handle_type_packet), (theora_handle_header_packet),
15674 (theora_handle_data_packet), (theora_dec_chain),
15675 (theora_dec_change_state):
15676 Refactor a bit, use STREAM_LOCK.
15678 2005-04-28 Wim Taymans <wim@fluendo.com>
15680 * ext/alsa/Makefile.am:
15681 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
15682 (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
15683 (gst_alsa_link), (gst_alsa_close_audio):
15684 * ext/alsa/gstalsaplugin.c: (plugin_init):
15685 * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
15686 (gst_alsasink_dispose), (gst_alsasink_base_init),
15687 (gst_alsasink_class_init), (gst_alsasink_init),
15688 (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
15689 (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
15690 (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
15691 (gst_alsasink_reset):
15692 * ext/alsa/gstalsasink.h:
15693 Implement alsasink with simple open/write/close API.
15694 Make alsa dir build by disabling compilation of code.
15696 2005-04-28 Wim Taymans <wim@fluendo.com>
15698 * gst-libs/gst/audio/Makefile.am:
15699 * gst-libs/gst/audio/audio.h:
15700 * gst-libs/gst/audio/audioclock.c:
15701 * gst-libs/gst/audio/audioclock.h:
15702 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
15703 (gst_audio_clock_class_init), (gst_audio_clock_init),
15704 (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
15705 * gst-libs/gst/audio/gstaudioclock.h:
15706 * gst-libs/gst/audio/gstaudiosink.c:
15707 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15708 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15709 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15710 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15711 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15712 (gst_audiosink_create_ringbuffer):
15713 * gst-libs/gst/audio/gstbaseaudiosink.c:
15714 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15715 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15716 (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
15717 (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
15718 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15719 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15720 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15721 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15722 * gst-libs/gst/audio/gstbaseaudiosink.h:
15723 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15724 (gst_ringbuffer_init), (gst_ringbuffer_finalize),
15725 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15726 (gst_ringbuffer_release), (gst_ringbuffer_play),
15727 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15728 (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15729 (gst_ringbuffer_set_sample), (wait_segment),
15730 (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15731 (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15732 * gst-libs/gst/audio/gstringbuffer.h:
15733 Make ringbuffer faster and more simple by removing the locks
15734 in the playback thread.
15735 Add sample accurate playback based on buffer sample offsets.
15736 Make the baseaudiosink provide a clock.
15737 Parse caps in the base class.
15738 Correctly handle seeking, flushing and state changes.
15740 2005-04-25 Thomas Vander Stichele <thomas at apestaart dot org>
15743 * gst/audioconvert/Makefile.am:
15744 * gst/audioscale/Makefile.am:
15745 Fix part of the build. Come on guys, autogen didn't even work :)
15747 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15750 * gst-libs/gst/Makefile.am:
15751 * gst-libs/gst/media-info/.cvsignore:
15752 * gst-libs/gst/media-info/Makefile.am:
15753 * gst-libs/gst/media-info/README:
15754 * gst-libs/gst/media-info/media-info-priv.c:
15755 * gst-libs/gst/media-info/media-info-priv.h:
15756 * gst-libs/gst/media-info/media-info-test.c:
15757 * gst-libs/gst/media-info/media-info.c:
15758 * gst-libs/gst/media-info/media-info.h:
15759 * gst-libs/gst/media-info/media-info.vcproj:
15760 * pkgconfig/Makefile.am:
15761 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
15762 * pkgconfig/gstreamer-media-info.pc.in:
15763 Remove media-info, which is also successed by playbin (see Totem
15766 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15769 * examples/Makefile.am:
15770 * examples/gstplay/.cvsignore:
15771 * examples/gstplay/Makefile.am:
15772 * examples/gstplay/player.c:
15773 * gst-libs/gst/Makefile.am:
15774 * gst-libs/gst/play/.cvsignore:
15775 * gst-libs/gst/play/Makefile.am:
15776 * gst-libs/gst/play/play.c:
15777 * gst-libs/gst/play/play.h:
15778 * gst-libs/gst/play/play.vcproj:
15779 * pkgconfig/Makefile.am:
15780 * pkgconfig/gstreamer-play-uninstalled.pc.in:
15781 * pkgconfig/gstreamer-play.pc.in:
15782 Remove libgstplay, playbin is now the official successor.
15784 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15787 * gst-libs/gst/Makefile.am:
15788 * gst-libs/gst/xwindowlistener/Makefile.am:
15789 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
15790 * gst-libs/gst/xwindowlistener/xwindowlistener.h:
15791 Remove deprecated xwindowlistener (I've moved xwindowlistening
15792 in the v4l/v4l2 plugins over to serverside).
15794 2005-04-25 David Schleef <ds@schleef.org>
15796 * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
15797 to examples/dynparams. Examples do not belong interspersed with
15799 * examples/dynparams/demo-dparams.c:
15800 * gst/sine/Makefile.am:
15801 * gst/sine/demo-dparams.c:
15803 2005-04-25 David Schleef <ds@schleef.org>
15805 Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
15806 * gst-libs/gst/audio/Makefile.am:
15807 * gst-libs/gst/riff/Makefile.am:
15808 * gst-libs/gst/tag/Makefile.am:
15809 * gst-libs/gst/video/Makefile.am:
15810 * gst-libs/gst/xwindowlistener/Makefile.am:
15812 Convert to 0.9 API, seems to work:
15813 * sys/ximage/Makefile.am:
15814 * sys/ximage/ximagesink.c:
15816 2005-04-24 David Schleef <ds@schleef.org>
15818 Link plugins against libraries:
15819 * ext/alsa/Makefile.am:
15820 * gst/tcp/Makefile.am:
15822 Remove asm code that should be in liboil
15823 * gst/videoscale/Makefile.am:
15824 * gst/videoscale/videoscale_x86_asm.s:
15826 gettext wants these checked in:
15842 2005-04-24 David Schleef <ds@schleef.org>
15844 Convert gst_main() to g_main_loop_run()
15845 * gst/playback/decodetest.c: (main):
15846 * gst/playback/test2.c: (main):
15847 * gst/playback/test3.c: (main):
15848 * gst/playback/test4.c: (main):
15850 Link plugins against libraries:
15851 * ext/libvisual/Makefile.am:
15852 * sys/xvimage/Makefile.am:
15854 2005-04-24 David Schleef <ds@schleef.org>
15856 * configure.ac: Remove idct and resample libs
15857 * gst-libs/gst/Makefile.am: same
15859 Remove usage of gst_library_load():
15860 * ext/alsa/gstalsaplugin.c: (plugin_init):
15861 * ext/libvisual/visual.c: (plugin_init):
15862 * ext/ogg/gstogg.c: (plugin_init):
15863 * ext/theora/theora.c: (plugin_init):
15864 * ext/vorbis/vorbis.c: (plugin_init):
15865 * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
15866 * gst/audioscale/gstaudioscale.c:
15867 * gst/adder/gstadder.c: (plugin_init):
15868 * gst/audioconvert/plugin.c: (plugin_init):
15869 * sys/ximage/ximagesink.c: (plugin_init):
15870 * sys/xvimage/xvimagesink.c: (plugin_init):
15871 * gst/tcp/gsttcpplugin.c: (plugin_init):
15873 Link plugins against libraries:
15874 * ext/ogg/Makefile.am:
15875 * ext/theora/Makefile.am:
15876 * ext/vorbis/Makefile.am:
15877 * gst/audioconvert/Makefile.am:
15879 Create proper libraries:
15880 * gst-libs/gst/riff/Makefile.am:
15881 * gst-libs/gst/audio/Makefile.am:
15882 * gst-libs/gst/video/Makefile.am:
15884 Move resample library to audioscale plugin directory:
15885 * gst-libs/gst/resample/Makefile.am:
15886 * gst-libs/gst/resample/README:
15887 * gst-libs/gst/resample/dtof.c:
15888 * gst-libs/gst/resample/dtos.c:
15889 * gst-libs/gst/resample/functable.c:
15890 * gst-libs/gst/resample/private.h:
15891 * gst-libs/gst/resample/resample.c:
15892 * gst-libs/gst/resample/resample.h:
15893 * gst-libs/gst/resample/resample.vcproj:
15894 * gst-libs/gst/resample/test.c:
15895 * gst/audioscale/Makefile.am:
15896 * gst/audioscale/README:
15897 * gst/audioscale/dtof.c:
15898 * gst/audioscale/dtos.c:
15899 * gst/audioscale/functable.c:
15900 * gst/audioscale/private.h:
15901 * gst/audioscale/resample.c:
15902 * gst/audioscale/resample.h:
15903 * gst/audioscale/test.c:
15905 Move tagedit library to gst-libs:
15906 * gst-libs/gst/tag/Makefile.am:
15907 * gst-libs/gst/tag/gstid3tag.c:
15908 * gst-libs/gst/tag/gsttagediting.c:
15909 * gst-libs/gst/tag/gsttageditingprivate.h:
15910 * gst-libs/gst/tag/gstvorbistag.c:
15911 * gst/tags/Makefile.am:
15912 * gst/tags/gstid3tag.c:
15913 * gst/tags/gstvorbistag.c:
15915 Fix for core changes:
15916 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
15917 (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
15918 (gst_sinesrc_getrange):
15920 2005-04-23 David Schleef <ds@schleef.org>
15922 * gst-libs/gst/Makefile.am: Remove idct. It hasn't been used
15923 in gst-plugins in a long time, and properly belongs in liboil.
15924 * gst-libs/gst/idct/Makefile.am:
15925 * gst-libs/gst/idct/README:
15926 * gst-libs/gst/idct/dct.h:
15927 * gst-libs/gst/idct/doieee:
15928 * gst-libs/gst/idct/fastintidct.c:
15929 * gst-libs/gst/idct/floatidct.c:
15930 * gst-libs/gst/idct/idct.c:
15931 * gst-libs/gst/idct/idct.h:
15932 * gst-libs/gst/idct/idtc.vcproj:
15933 * gst-libs/gst/idct/ieeetest.c:
15934 * gst-libs/gst/idct/intidct.c:
15936 2005-04-20 Wim Taymans <wim@fluendo.com>
15938 * docs/design-audiosinks.txt:
15939 * gst-libs/gst/audio/Makefile.am:
15940 * gst-libs/gst/audio/TODO:
15941 * gst-libs/gst/audio/gstaudiosink.c:
15942 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15943 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15944 (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
15945 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15946 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15947 (gst_audioringbuffer_delay), (gst_audiosink_base_init),
15948 (gst_audiosink_class_init), (gst_audiosink_init),
15949 (gst_audiosink_create_ringbuffer):
15950 * gst-libs/gst/audio/gstaudiosink.h:
15951 * gst-libs/gst/audio/gstbaseaudiosink.c:
15952 (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
15953 (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
15954 (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
15955 (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
15956 (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
15957 (gst_baseaudiosink_create_ringbuffer),
15958 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15959 * gst-libs/gst/audio/gstbaseaudiosink.h:
15960 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15961 (gst_ringbuffer_class_init), (gst_ringbuffer_init),
15962 (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
15963 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15964 (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
15965 (gst_ringbuffer_play), (gst_ringbuffer_pause),
15966 (gst_ringbuffer_resume), (gst_ringbuffer_stop),
15967 (gst_ringbuffer_callback), (gst_ringbuffer_delay),
15968 (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
15969 (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
15970 * gst-libs/gst/audio/gstringbuffer.h:
15971 An attempt at a set of audio base classes together with some
15974 2005-04-20 Wim Taymans <wim@fluendo.com>
15976 * gst/audioconvert/Makefile.am:
15977 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15978 (gst_audio_convert_caps_remove_format_info),
15979 (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
15980 (gst_audio_convert_channels):
15981 Link against audio libs.
15982 Fix audio convert plugin.
15984 2005-04-20 Wim Taymans <wim@fluendo.com>
15986 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
15987 (gst_ogg_demux_sink_activate):
15988 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
15989 (theora_set_header_on_caps), (theora_enc_sink_event),
15990 (theora_enc_chain):
15991 Fix theora encoder.
15993 2005-04-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15995 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
15996 * gst/playback/gstdecodebin.c: (find_compatibles):
15997 Work with staticpadtemplates in elementfactories.
15999 2005-04-12 Wim Taymans <wim@fluendo.com>
16001 * gst/playback/README:
16002 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
16003 (compare_ranks), (print_feature), (gst_decode_bin_init),
16004 (dynamic_create), (dynamic_free), (find_compatibles),
16005 (mimetype_is_raw), (close_pad_link), (got_redirect),
16006 (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
16007 (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
16008 (gst_decode_bin_change_state):
16009 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
16010 (gst_play_base_bin_init), (group_destroy), (group_commit),
16011 (check_queue), (queue_overrun), (queue_threshold_reached),
16012 (queue_out_of_data), (gen_preroll_element), (unknown_type),
16013 (new_decoded_pad), (setup_subtitle), (gen_source_element),
16014 (got_redirect), (setup_source), (play_base_eos),
16015 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
16016 (gst_play_base_bin_remove_element):
16017 * gst/playback/gstplaybasebin.h:
16018 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
16019 (gst_play_bin_init), (gst_play_bin_dispose),
16020 (gst_play_bin_set_property), (gen_video_element),
16021 (gen_text_element), (gen_audio_element), (remove_sinks),
16022 (gst_play_bin_send_event):
16023 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
16024 (stream_info_change_state), (gst_stream_info_set_mute):
16025 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
16026 (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
16027 (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
16028 (gst_stream_selector_chain):
16029 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
16031 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
16032 (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
16033 (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
16034 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
16035 Raw and crude port of decodebin.
16036 Make playbin compile.
16038 2005-04-06 Wim Taymans <wim@fluendo.com>
16040 * ext/gnomevfs/Makefile.am:
16041 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
16042 (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
16043 (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
16044 (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
16045 (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
16046 (gst_gnomevfssrc_stop):
16047 * ext/ogg/Makefile.am:
16048 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
16049 (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
16050 * ext/theora/Makefile.am:
16051 * ext/theora/theoradec.c: (_inc_granulepos),
16052 (theora_dec_sink_event), (theora_dec_chain):
16053 * ext/vorbis/Makefile.am:
16054 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
16055 (vorbis_dec_sink_event), (vorbis_dec_chain):
16056 * gst-libs/gst/audio/Makefile.am:
16057 * sys/xvimage/Makefile.am:
16058 Make gnomevfssrc extend the source base class.
16059 Fix linking against libs in various plugins.
16061 2005-04-06 Andy Wingo <wingo@pobox.com>
16063 * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
16066 * configure.ac: Add check and AC_SUBST for libgstbase.
16068 2005-03-31 Wim Taymans <wim@fluendo.com>
16070 * examples/seeking/Makefile.am:
16071 * examples/seeking/cdparanoia.c: (main):
16072 * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
16073 (play_cb), (pause_cb), (stop_cb), (main):
16074 * examples/seeking/playbin.c:
16075 * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
16076 (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
16077 (make_sid_pipeline), (make_vorbis_pipeline),
16078 (make_theora_pipeline), (make_vorbis_theora_pipeline),
16079 (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
16080 (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
16081 (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
16082 (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
16084 * examples/seeking/spider_seek.c:
16085 * examples/seeking/vorbisfile.c:
16086 * ext/gnomevfs/Makefile.am:
16087 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
16088 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
16089 (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
16090 (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
16091 (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
16092 (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
16093 (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
16094 (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
16096 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
16097 (gst_ogg_pad_class_init), (gst_ogg_pad_init),
16098 (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
16099 (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
16100 (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
16101 (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
16102 (gst_ogg_pad_event), (gst_ogg_pad_reset),
16103 (gst_ogg_demux_factory_filter), (compare_ranks),
16104 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
16105 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
16106 (gst_ogg_chain_new), (gst_ogg_chain_free),
16107 (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
16108 (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
16109 (gst_ogg_demux_class_init), (gst_ogg_demux_init),
16110 (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
16111 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
16112 (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
16113 (gst_ogg_demux_get_prev_page),
16114 (gst_ogg_demux_deactivate_current_chain),
16115 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
16116 (gst_ogg_demux_bisect_forward_serialno),
16117 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
16118 (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
16119 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
16120 (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
16121 (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
16122 (gst_ogg_demux_change_state), (gst_ogg_print):
16123 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
16124 (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
16125 (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
16126 (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
16127 (gst_ogg_mux_loop):
16128 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
16129 * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
16130 (theora_dec_src_convert), (theora_dec_sink_convert),
16131 (theora_dec_src_query), (theora_dec_src_event),
16132 (theora_dec_sink_event), (theora_dec_chain),
16133 (theora_dec_change_state):
16134 * ext/theora/theoraenc.c: (gst_theora_enc_init),
16135 (theora_enc_sink_setcaps), (theora_buffer_from_packet),
16136 (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
16137 (theora_enc_change_state):
16138 * ext/vorbis/Makefile.am:
16139 * ext/vorbis/oggvorbisenc.c:
16140 * ext/vorbis/oggvorbisenc.h:
16141 * ext/vorbis/vorbis.c: (plugin_init):
16142 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
16143 (vorbis_dec_src_query), (vorbis_dec_src_event),
16144 (vorbis_dec_sink_event), (vorbis_dec_chain),
16145 (vorbis_dec_change_state):
16146 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
16147 (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
16148 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
16149 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
16150 (gst_vorbisenc_change_state):
16151 * ext/vorbis/vorbisenc.h:
16152 * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
16153 * gst-libs/gst/audio/audioclock.c:
16154 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
16155 (gst_audiofilter_init), (gst_audiofilter_chain):
16156 * gst-libs/gst/audio/testchannels.c: (main):
16157 * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
16158 * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
16159 (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
16160 (gmip_find_track_streaminfo), (gmip_find_track_format):
16161 * gst-libs/gst/media-info/media-info.c:
16162 (gst_media_info_read_idler):
16163 * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
16164 (gst_play_get_all_by_interface):
16165 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
16166 (gst_riff_parse_chunk), (gst_riff_parse_file_header),
16167 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
16168 (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
16169 (gst_riff_parse_info):
16170 * gst-libs/gst/riff/riff-read.h:
16171 * gst-libs/gst/riff/riff.c: (plugin_init):
16172 * gst-libs/gst/video/Makefile.am:
16173 * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
16174 (gst_videosink_class_init), (gst_videosink_get_type):
16175 * gst-libs/gst/video/videosink.h:
16176 * gst/audioconvert/bufferframesconvert.c:
16177 (buffer_frames_convert_init), (buffer_frames_convert_fixate),
16178 (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
16179 * gst/audioconvert/channelmixtest.c: (main):
16180 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
16181 (gst_audio_convert_chain),
16182 (gst_audio_convert_caps_remove_format_info),
16183 (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
16184 (gst_audio_convert_setcaps), (_fixate_caps_to_int),
16185 (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
16186 (gst_audio_convert_buffer_to_default_format),
16187 (gst_audio_convert_buffer_from_default_format),
16188 (gst_audio_convert_channels):
16189 * gst/audioconvert/gstchannelmix.h:
16190 * gst/ffmpegcolorspace/avcodec.h:
16191 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16192 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
16193 (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
16194 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
16195 * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
16196 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
16197 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
16198 (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
16199 (mpeg_video_type_find), (mpeg_video_stream_type_find),
16201 * gst/videotestsrc/gstvideotestsrc.c:
16202 (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
16203 (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
16204 (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
16205 (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
16206 (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
16207 (gst_videotestsrc_init), (gst_videotestsrc_src_query),
16208 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
16209 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
16210 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
16211 (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
16212 (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
16213 (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
16214 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
16215 (gst_xvimagesink_navigation_send_event),
16216 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
16217 (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
16218 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
16219 * sys/xvimage/xvimagesink.h:
16220 Plugin port to 0.9, ogg/theora playback should work in the seek
16222 Removed old examples.
16223 Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
16224 explained in 0.9 TODO doc.
16227 2005-02-23 Thomas Vander Stichele <thomas at apestaart dot org>
16249 * testsuite/Makefile.am:
16250 remove a whole bunch of plugins. This module now contains a set
16251 of free reference plugins/elements as agreed.
16253 2005-02-22 Thomas Vander Stichele <thomas at apestaart dot org>
16256 hunting season on 0.9 is now OPEN
16258 2005-02-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16260 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
16261 Kick the hell out of gcc for not warning me about a symbol conflict.
16263 2005-02-22 Luca Ognibene <luogni@tin.it>
16265 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
16267 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
16268 Don't leak caps string (fixes #168134)
16270 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
16271 (gst_jpegenc_init), (gst_jpegenc_finalize),
16272 (gst_jpegenc_change_state):
16273 Don't leak line buffers and context struct (fixes #168133).
16275 2005-02-21 Tim-Philipp Müller <tim at centricular dot net>
16278 * ext/dirac/gstdiracdec.cc:
16279 (gst_diracdec_chain):
16280 Since dirac 0.5.0 the framerate in dirac is expressed as a
16281 rational number. Fix build and up requirement to 0.5.0, and
16282 also pass parameters to gst_diracdec_link in the right order
16285 2005-02-21 Maciej Katafiasz <mathrick@freedesktop.org>
16287 * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
16288 * ext/faad/gstfaad.h:
16289 TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with
16290 certain invalid muxed streams, where some packets will contain
16291 junk after decoder data. Partially fixes #149158.
16293 2005-02-21 Jan Schmidt <thaytan@mad.scientist.com>
16294 * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
16295 Make sure we only write to writable buffers
16297 2005-02-20 Tim-Philipp Müller <tim at centricular dot net>
16299 * gst-libs/gst/riff/riff-media.c:
16300 (gst_riff_create_audio_caps_with_data):
16301 Do actually fix invalid RIFF fmt header values for alaw
16302 and mulaw audio instead of just saying so.
16304 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
16305 Give gst_riff_create_audio_caps_with_data() a chance to
16306 fix up broken format header fields before extracting any
16307 parameters from the header. (fixes #167633)
16309 2005-02-19 Martin Holters <martin.holters@gmx.de>
16311 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
16313 * gst/audioconvert/bufferframesconvert.c:
16314 (buffer_frames_convert_link):
16315 Don't leak othercaps. (fixes #167878)
16317 2005-02-19 Arwed v. Merkatz <v.merkatz@gmx.net>
16320 * ext/libvisual/visual.c: (gst_visual_srclink),
16321 (gst_visual_change_state):
16322 Support libvisual 0.2.0.
16324 2005-02-18 Tim-Philipp Müller <tim at centricular dot net>
16326 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
16327 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
16328 Use same rowstrides for I420 as used everywhere else.
16330 2005-02-17 Tim-Philipp Müller <tim at centricular dot net>
16332 * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
16333 Declare variables at beginning of block and make gcc-2.95 happy
16334 (fixes # 167482, patch by Gergely Nagy).
16336 * gst/tcp/gsttcpclientsrc.c:
16337 * gst/tcp/gsttcpclientsrc.h:
16338 Move some includes into the header, so that struct sockaddr_in is
16339 defined when it should be defined on FreeBSD as well (fixes
16342 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
16343 Don't pass uninitialised values to setsockopt() here either.
16345 2005-02-17 Luca Ognibene <luogni at tin dot it>
16347 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
16349 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
16350 Don't pass uninitialised values to setsockopt(). (fixes #167704)
16352 2005-02-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16354 * gst/playback/gstplaybin.c: (add_sink):
16355 Invert bin_add/link order to workaround deadlock in opt.
16357 2005-02-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16359 * gst/modplug/gstmodplug.cc:
16360 Add missing break causing position queries to fail.
16362 2005-02-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16364 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
16365 Granpos can apparently be -1, which screws up calculations...
16367 2005-02-16 Jan Schmidt <thaytan@mad.scientist.com>
16369 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
16370 (gst_ximagesink_send_pending_navigation),
16371 (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
16372 (gst_ximagesink_init):
16373 * sys/ximage/ximagesink.h:
16374 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
16375 (gst_xvimagesink_send_pending_navigation),
16376 (gst_xvimagesink_navigation_send_event),
16377 (gst_xvimagesink_finalize), (gst_xvimagesink_init):
16378 * sys/xvimage/xvimagesink.h:
16379 Use a mutex protected list to marshal navigation
16380 events into the stream thread from whichever thread
16383 2005-02-15 Tim-Philipp Müller <tim at centricular dot net>
16385 * gst/speed/demo-mp3.c: (time_tick_cb), (main):
16386 Display current position and track length; misc. clean-ups.
16388 * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
16389 (speed_init), (speed_chain):
16390 Add query function, so that the stream length and current position
16391 get adjusted when queried (note that current position queries may
16392 still be wrong if the audio sink returns values based on buffer
16393 timestamps instead of passing on the query).
16395 2005-02-13 Benjamin Otte <otte@gnome.org>
16397 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
16398 (gst_audio_convert_channels):
16399 create channel conversion matrix when linking
16400 * gst/audioconvert/.cvsignore:
16401 * gst/audioconvert/Makefile.am:
16402 * gst/audioconvert/channelmixtest.c: (main):
16403 add (ugly) test that ensures stereo <=> mono conversion works
16406 2005-02-13 Benjamin Otte <otte@gnome.org>
16408 * gst/audioconvert/gstchannelmix.h:
16409 include missing header file
16410 * gst/audioconvert/gstchannelmix.c:
16411 (gst_audio_convert_fill_compatible):
16412 use same sign for both channels when converting to/from compatible
16413 channel. Previously used different signs made the signals cancel
16414 each other out and appear like silence. (fixes #167269)
16416 2005-02-12 Tim-Philipp Müller <tim at centricular dot net>
16418 * gst/ffmpegcolorspace/avcodec.h:
16419 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16420 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
16421 (gst_ffmpegcsp_avpicture_fill):
16422 * gst/ffmpegcolorspace/imgconvert.c:
16423 Convert to and from YV12 (fixes #156379).
16425 2005-02-12 Julien MOUTTE <julien@moutte.net>
16427 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
16428 (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
16429 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
16430 (gst_ximagesink_expose), (gst_ximagesink_set_property),
16431 (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
16432 methods from chain and negotiation and vice versa (Fixes #166142).
16433 * sys/ximage/ximagesink.h: Add stream_lock.
16434 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
16435 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16436 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
16437 (gst_xvimagesink_expose): Check for xcontext before trying to link.
16439 2005-02-12 Tim-Philipp Müller <tim at centricular dot net>
16441 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
16442 Don't send "Hey! You gave me a NULL pointer you naughty person" as
16443 error message when we can't open the DVD device (when dvdnav_open()
16444 fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
16445 the above). Send something more useful instead (fixes #167117).
16447 2005-02-11 Julien MOUTTE <julien@moutte.net>
16449 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
16450 (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
16451 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16452 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
16453 (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
16454 (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
16455 methods from chain and negotiation and vice versa (Fixes #166142).
16456 Fix a possible bug of images in the buffer pool being discarded because
16457 we are looking at the wrong geometry.
16458 * sys/xvimage/xvimagesink.h: Add stream_lock.
16460 2005-02-11 David Schleef <ds@schleef.org>
16462 * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
16463 unsigned int. (fixes #167128)
16465 2005-02-11 David Schleef <ds@schleef.org>
16467 * gst/librfb/Makefile.am: Testing stuff before committing is
16468 for wimps... and people with fast machines. Fix stupid
16471 2005-02-11 David Schleef <ds@schleef.org>
16473 * configure.ac: Pull in librfb from my CVS tree, because it is
16474 too small and annoying to be separate. Move rfbsrc plugin
16477 * ext/librfb/Makefile.am:
16478 * ext/librfb/gstrfbsrc.c:
16479 * gst/librfb/Makefile.am:
16480 * gst/librfb/gstrfbsrc.c:
16481 * gst/librfb/rfb.c:
16482 * gst/librfb/rfb.h:
16483 * gst/librfb/rfbbuffer.c:
16484 * gst/librfb/rfbbuffer.h:
16485 * gst/librfb/rfbbytestream.c:
16486 * gst/librfb/rfbbytestream.h:
16487 * gst/librfb/rfbcontext.h:
16488 * gst/librfb/rfbdecoder.c:
16489 * gst/librfb/rfbdecoder.h:
16490 * gst/librfb/rfbutil.h:
16492 2005-02-10 Tim-Philipp Müller <tim at centricular dot net>
16494 * gst/speed/Makefile.am:
16495 * gst/speed/demo-mp3.c: (main):
16496 * gst/speed/filter.func:
16497 * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
16498 (speed_class_init), (speed_init), (speed_chain_int16),
16499 (speed_chain_float32), (speed_chain), (speed_set_property),
16500 (speed_get_property), (speed_change_state):
16501 * gst/speed/gstspeed.h:
16502 Fix speed element and make it chain-based (fixes #156467),
16503 and make it handle more than one channel.
16505 2005-02-10 Jan Schmidt <thaytan@mad.scientist.com>
16507 * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
16508 (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
16509 (gst_dtsdec_chain), (gst_dtsdec_change_state):
16510 * ext/dts/gstdtsdec.h:
16511 Don't clobber the stack constructing the channels array.
16512 Make the element chain-based. DTS tracks can now be played.
16514 2005-02-09 Tim-Philipp Müller <tim at centricular dot net>
16516 * gst-libs/gst/audio/multichannel.h:
16517 * gst-libs/gst/gconf/gconf.h:
16518 * gst-libs/gst/idct/idct.h:
16519 * gst-libs/gst/media-info/media-info-priv.h:
16520 * gst-libs/gst/play/play.h:
16521 * gst-libs/gst/resample/private.h:
16522 * gst-libs/gst/resample/resample.h:
16523 * gst-libs/gst/riff/riff-ids.h:
16524 * gst-libs/gst/video/video.h:
16525 * gst-libs/gst/video/videosink.h:
16526 Add G_BEGIN_DECLS and G_END_DECLS around headers where
16527 missing, so that they work when included from C++ code.
16529 2005-02-09 David Schleef <ds@schleef.org>
16531 * testsuite/gst-lint: Check for non-statically scoped
16532 parent_class variables. This won't be a problem once
16533 plugins are loaded with RTLD_LOCAL.
16535 2005-02-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16537 * ext/mplex/gstmplexibitstream.cc:
16540 2005-02-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16542 * ext/ogg/gstogmparse.c:
16543 * gst/debug/gstnavigationtest.c:
16544 Die, thou faulty symbol pollutors (non-static parent_class).
16546 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16548 * ext/mplex/gstmplexibitstream.cc:
16549 Fix event handling (#165525).
16551 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16553 * ext/mikmod/gstmikmod.c:
16554 * gst/modplug/gstmodplug.cc:
16555 Add missing endianness to template (fixes #165509).
16557 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16559 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
16560 Fix wrong order of reading of optional bytes (#165290).
16562 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16564 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
16565 Implement FILLER event awareness.
16567 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16569 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
16570 Fix track calculations (#166208).
16572 2005-02-08 Gergely Nagy <algernon@bonehunter.rulez.org>
16574 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16576 * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
16577 * ext/libpng/gstpngenc.c:
16578 Fix byte-order, use proper fixed caps. Fixes #164197.
16580 2005-02-08 Jan Schmidt <thaytan@mad.scientist.com>
16585 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
16586 (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
16587 Don't push buffers if the src pad isn't negotiated yet.
16589 * gst/audioconvert/gstaudioconvert.c:
16590 (gst_audio_convert_buffer_to_default_format),
16591 (gst_audio_convert_buffer_from_default_format):
16592 Add support for 24-bit width.
16594 * gst/dvdlpcmdec/.cvsignore:
16595 * gst/dvdlpcmdec/Makefile.am:
16596 * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
16597 (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
16598 (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
16599 (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
16601 * gst/dvdlpcmdec/gstdvdlpcmdec.h:
16602 New decoder for rearranging DVD LPCM into our audio/x-raw-int
16603 format. Needs support for the channels maps if someone can find
16604 a DVD LPCM track with > 2 channels.
16606 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
16607 (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
16608 (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
16609 * gst/mpegstream/gstdvddemux.h:
16610 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
16611 (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
16612 (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
16613 * gst/mpegstream/gstmpegdemux.h:
16614 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
16615 (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
16616 (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
16617 (gst_mpeg_parse_handle_src_query),
16618 (gst_mpeg_parse_handle_src_event):
16619 Use audio/x-dvd-lpcm for LPCM output.
16622 2005-02-08 Gergely Nagy <algernon@bonehunter.rulez.org>
16624 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16626 * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
16627 (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
16628 Add BGRA handling (#165736).
16630 2005-02-08 Francis Labonte <francis_labonte@hotmail.com>
16632 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16634 * gst/law/alaw-decode.c: (alawdec_link):
16635 * gst/law/alaw-encode.c: (alawenc_link):
16636 * gst/law/mulaw-decode.c: (mulawdec_link):
16637 * gst/law/mulaw-encode.c: (mulawenc_link):
16638 Fix caps memleaks (#166600).
16640 2005-02-08 Tim-Philipp Müller <tim at centricular dot net>
16642 * ext/tarkin/mem.h:
16643 * ext/tarkin/wavelet.h:
16644 * ext/tarkin/yuv.h:
16645 * gst/ffmpegcolorspace/avcodec.h:
16646 Include "_stdint.h" instead of <stdint.h>. Fixes build on
16647 systems that don't have stdint.h, like Solaris9 (fixes #166631).
16649 2005-02-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16651 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
16652 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
16653 (gst_xvimagesink_change_state):
16654 Clear window on PAUSED->READY instead of READY->PAUSED. Stop
16655 Xv video (and thereby regenerate Xv colourkey) in clear() so
16656 that PLAY -> READY -> PLAY works (fixes #162504).
16658 2005-02-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16660 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
16661 Switch to list instead of range, since MJPEG-devices really just
16662 support decimations, not any size.
16664 2005-02-05 Jan Schmidt <thaytan@mad.scientist.com>
16665 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
16666 (gst_mpeg2dec_reset), (free_all_buffers),
16667 (gst_mpeg2dec_alloc_buffer), (handle_sequence):
16668 * ext/mpeg2dec/gstmpeg2dec.h:
16669 The libmpeg2 user-allocated buffer management is awkward,
16670 to say the least. Hopefully this fixes things.
16672 2005-02-04 Andy Wingo <wingo@pobox.com>
16674 * gst/audioconvert/bufferframesconvert.c
16675 (buffer_frames_convert_fixate): New function, fixates to 256
16676 frames per buffer by default. (Much better than 1.)
16677 (buffer_frames_convert_init): Set the fixate function for both src
16679 (buffer_frames_convert_link): After success setting nonfixed caps,
16680 get the negotiated caps so we can know how many buffer-frames it
16681 will be. No idea how this worked at all before.
16683 2005-02-05 Jan Schmidt <thaytan@mad.scientist.com>
16685 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
16686 (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
16687 (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
16688 (handle_sequence), (handle_picture):
16689 * ext/mpeg2dec/gstmpeg2dec.h:
16690 Rearrange buffer tracking and refcounting and refactor
16691 a little for readability.
16693 2005-02-04 Jan Schmidt <thaytan@mad.scientist.com>
16694 * sys/v4l/gstv4l.c: (plugin_init):
16695 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
16696 (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
16697 (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
16698 (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
16699 * sys/v4l/gstv4ljpegsrc.h:
16700 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
16701 * sys/v4l/v4l_calls.h:
16702 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
16703 (gst_v4lsrc_get_fps):
16704 * sys/v4l/v4lsrc_calls.h:
16705 Add new v4ljpegsrc for handling the ov51x hacky "I'll give
16706 you jpeg inside rgb frames" driver.
16707 Don't error in the v4lsrc link function, just return
16710 2005-02-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16712 * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
16713 (gst_qcamsrc_open):
16714 Use GST_ELEMENT_ERROR, not g_warning, if open failed.
16716 2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16718 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16719 Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
16721 2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16723 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
16724 Reset negotiated state on PAUSED->READY.
16726 2005-02-02 David Schleef <ds@schleef.org>
16728 * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
16729 whereever possible. (Fixes #165997)
16730 * examples/capsfilter/capsfilter1.c: (main):
16731 * examples/dynparams/filter.c: (create_ui):
16732 * examples/seeking/cdparanoia.c: (get_track_info), (main):
16733 * examples/seeking/chained.c: (main):
16734 * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
16735 (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
16736 (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
16737 (make_mpeg_pipeline), (make_mpegnt_pipeline):
16738 * examples/seeking/spider_seek.c: (make_spider_pipeline):
16739 * examples/switch/switcher.c: (main):
16740 * ext/dv/demo-play.c: (main):
16741 * ext/faad/gstfaad.c: (gst_faad_change_state):
16742 * ext/mad/gstmad.c: (gst_mad_chain):
16743 * ext/smoothwave/demo-osssrc.c: (main):
16744 * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
16745 (gst_gconf_render_bin_from_description),
16746 (gst_gconf_get_default_audio_sink),
16747 (gst_gconf_get_default_video_sink),
16748 (gst_gconf_get_default_audio_src),
16749 (gst_gconf_get_default_video_src),
16750 (gst_gconf_get_default_visualization_element):
16751 * gst/level/demo.c: (main):
16752 * gst/level/plot.c: (main):
16753 * gst/playback/gstplaybin.c: (gen_video_element),
16754 (gen_audio_element):
16755 * gst/playback/test.c: (gen_video_element), (gen_audio_element):
16756 * gst/playondemand/demo-mp3.c: (setup_pipeline):
16757 * gst/sine/demo-dparams.c: (main):
16758 * gst/spectrum/demo-osssrc.c: (main):
16759 * gst/speed/demo-mp3.c: (main):
16760 * gst/volume/demo.c: (main):
16761 * testsuite/embed/embed.c: (main):
16763 2005-02-02 Jan Schmidt <thaytan@mad.scientist.com>
16765 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
16766 (gst_tcpclientsink_finalize):
16767 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
16768 (gst_tcpclientsrc_finalize):
16769 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
16770 (gst_tcpserversink_init), (gst_tcpserversink_finalize):
16771 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
16772 (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
16773 Don't leak the hostname when shutting down.
16774 In tcpserversrc, take a copy of the default hostname.
16776 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16778 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
16779 Set caps to systemstream=TRUE.
16781 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16783 * testsuite/Makefile.am:
16784 Fix more OSX buildbots.
16786 2005-02-02 Jan Schmidt <thaytan@mad.scientist.com>
16788 * ext/mpeg2dec/gstmpeg2dec.c:
16789 Don't send things to NULL PAD_PEERs
16791 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
16792 Copy-on-write the incoming buffer.
16794 * gst/mpegstream/gstdvddemux.h:
16795 * gst/mpegstream/gstmpegclock.h:
16796 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
16797 (normal_seek), (gst_mpeg_demux_handle_src_event):
16798 * gst/mpegstream/gstmpegdemux.h:
16799 * gst/mpegstream/gstmpegpacketize.h:
16800 * gst/mpegstream/gstmpegparse.c:
16801 (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
16802 (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
16803 (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
16804 (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
16805 (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
16806 * gst/mpegstream/gstmpegparse.h:
16807 * gst/mpegstream/gstrfc2250enc.h:
16808 Various changes to the way time is computed that make seeking and
16809 total time estimation much better here.
16810 Use G_BEGIN/END_DECLS instead of __cplusplus
16812 * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
16813 Use gst_buffer_stamp instead of only copying the TIMESTAMP
16815 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16817 * gst/subparse/gstsubparse.c:
16820 2005-01-31 Tim-Philipp Müller <tim at centricular dot net>
16822 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
16823 (theora_enc_chain), (theora_enc_change_state):
16824 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
16825 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
16826 (gst_vorbisenc_change_state):
16827 * ext/vorbis/vorbisenc.h:
16828 Set granulepos and timestamp correctly for streams not
16829 starting at 0, taking into account the initial delay.
16831 2005-01-31 Tim-Philipp Müller <tim at centricular dot net>
16833 * gst/mpegstream/gstdvddemux.c:
16834 Add audio/x-dts to audio pad template caps
16836 2005-01-30 David Schleef <ds@schleef.org>
16838 * ext/polyp/polypsink.c: (gst_polypsink_base_init),
16839 (create_context), (gst_polypsink_link): Fix silly endianness
16840 bug. Add some debugging. Remove float from caps; it doesn't
16841 work. Attempt to get remote audio working.
16843 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16845 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16848 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16850 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
16851 (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
16852 (gst_avi_demux_stream_data):
16853 * gst/avi/gstavidemux.h:
16854 Invert DIB images. Fixes #132341.
16856 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16858 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16859 (gst_ffmpegcsp_chain):
16860 D'oh, reference the palette data, not the palette structure.
16861 Fixes color distortion in #132341.
16863 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16865 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
16866 PAR can be non-fixed when not provided as argument (#162626).
16868 2005-01-29 David Moore <dcm@acm.org>
16870 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16872 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16873 (gst_qtdemux_loop_header):
16874 Re-apply patch from #142272 that allows non-seekable sources,
16875 re-proposed by Daniel Drake <dsd@gentoo.org>.
16877 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16879 * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
16880 Use the src template for creating the src pad (#162330).
16882 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16885 * ext/musepack/Makefile.am:
16886 * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
16887 (gst_musepackdec_init), (gst_musepackdec_dispose),
16888 (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
16889 (gst_musepack_stream_init), (gst_musepackdec_loop),
16890 (gst_musepackdec_change_state):
16891 * ext/musepack/gstmusepackdec.cpp:
16892 * ext/musepack/gstmusepackdec.h:
16893 * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
16894 (gst_musepack_reader_read), (gst_musepack_reader_seek),
16895 (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
16896 (gst_musepack_reader_canseek), (gst_musepack_init_reader):
16897 * ext/musepack/gstmusepackreader.cpp:
16898 * ext/musepack/gstmusepackreader.h:
16899 Update to 1.1 API (#165446).
16901 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16906 2005-01-28 Andy Wingo <wingo@pobox.com>
16908 * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
16909 to reflect a different dubious internet source. Add a reference
16910 and some commentary.
16912 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16914 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
16915 (gst_stream_selector_get_caps), (gst_stream_selector_chain):
16916 * gst/playback/gststreamselector.h:
16917 Be more selective when we're redoing caps negotiation from
16918 within the chain function on a stream change.
16920 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16924 * ext/amrnb/Makefile.am:
16925 * ext/amrnb/amrnb.c: (plugin_init):
16926 * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
16927 (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
16928 (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
16929 (gst_amrnbdec_state_change):
16930 * ext/amrnb/amrnbdec.h:
16931 * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
16932 (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
16933 (gst_amrnbparse_init), (gst_amrnbparse_formats),
16934 (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
16935 (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
16936 (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
16937 * ext/amrnb/amrnbparse.h:
16938 Add support for AMR-NB (mobile phone audio format; #155163, #163286).
16939 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16940 Add AMR-NB/-WB raw formats.
16941 * ext/alsa/gstalsa.c: (gst_alsa_link):
16942 Keep valid time when changing format.
16943 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
16944 (qtdemux_parse_trak):
16945 Add some more format-specific options (#140141, #143555, #155163).
16947 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16949 * gst/matroska/matroska-demux.c:
16950 (gst_matroska_demux_parse_blockgroup):
16951 Fix logic error in timing of subtitle stream synchronization.
16952 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
16953 Add skip-chunk, which is found in kodak-camera streams.
16955 2005-01-27 Thomas Vander Stichele <thomas at apestaart dot org>
16959 Adding Vietnamese translation (submitted by Clytie Siddall)
16961 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16963 * gst/playback/gstdecodebin.c: (try_to_link_1):
16964 Use realpad for signal.
16966 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16968 * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
16969 Fix category so decodebin picks it up.
16971 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16973 * ext/mad/Makefile.am:
16974 * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
16975 (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
16976 (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
16977 (found_type), (gst_id3demux_bin_change_state):
16978 * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
16979 (gst_id3_tag_init), (gst_id3_tag_handle_event),
16980 (gst_id3_tag_src_link), (gst_id3_tag_chain),
16981 (gst_id3_tag_change_state), (plugin_init):
16982 * ext/mad/gstmad.h:
16983 Add id3demuxbin (which is a simple bin consisting of id3demux
16984 and typefind), take over rank from id3demux, remove typefind
16985 code from id3demux. Makes all broken mp3s that I know of work,
16986 and thereby fixes #152688.
16988 2005-01-27 Edward Hervey <bilboed@bilboed.com>
16990 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16992 * ext/mad/gstmad.c: (gst_mad_src_event):
16993 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
16994 Allow seeks on audio pad, make mad forward those (#164826).
16995 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
16996 Set duration (#165335).
16998 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17000 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
17001 (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
17002 (gst_asf_demux_process_ext_content_desc),
17003 (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
17004 (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
17005 * gst/asfdemux/gstasfdemux.h:
17006 Improve metadata display, e.g. if the metadata comes before the
17007 streams are loaded (which is perfectly valid).
17009 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17011 * tools/gst-launch-ext-m.m:
17012 Fix AVI/ASF pipelines (#165340).
17014 2005-01-26 Amaury Jacquot <sxpert@esitcom.org>
17015 * ext/cairo/gsttextoverlay.c: include string.h and strings.h to fix
17016 build failure on amd64
17018 2005-01-26 Tim-Philipp Müller <tim at centricular dot net>
17020 * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
17021 (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
17022 Check environment variables GST_ID3V2_TAG_ENCODING,
17023 GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
17024 list of character encodings to force interpretation of non-unicode
17025 strings stored in an ID3v2 tag to a particular encoding. If none
17026 is specified, try to use current locale's encoding, then fall back
17027 to ISO-8859-1 (which will always succeed). (Resolves #149274)
17028 * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
17029 (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
17030 Check environment variables GST_ID3V1_TAG_ENCODING,
17031 GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
17032 list of character encodings to use in case a string encountered
17033 in an ID3v1 tag is not valid UTF-8 already. If no encoding is
17034 specified, try to use the current locale's encoding, then fall
17035 back to ISO-8859-1 (which will always succeed).
17037 2005-01-25 Benjamin Otte <otte@gnome.org>
17039 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
17040 - on half framerate, compute the rate in advance so the comparisons
17041 don't compare wrong values
17042 - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
17044 - don't use mad_header_decode anymore, mad_frame_decode does that
17046 - when getting rid of consumed bytes, reset the stream's skiplen
17049 2005-01-26 Jan Schmidt <thaytan@mad.scientist.com>
17051 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
17052 Use 1/2 a second for default max_discont, as PES streams from DVB
17053 seem to have larger spacings in the SCR.
17056 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17058 * gst/playback/gstplaybasebin.c: (group_commit):
17059 Notify delayed stream-info availability.
17061 2005-01-26 Jan Schmidt <thaytan@mad.scientist.com>
17062 * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
17063 (gst_a52dec_handle_event), (gst_a52dec_chain):
17064 Add some debug output. Check that a discont has a valid
17066 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
17067 (gst_alsa_sink_loop):
17068 Ignore TAG events. A little extra debug for broken timestamps.
17069 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
17070 (dvdnavsrc_change_state):
17071 Ensure we send a discont to engage the link before we send any
17073 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
17074 (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
17075 (_seek_chapter), (seek_sector), (dvdreadsrc_get),
17076 (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
17077 Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
17078 dvd://title works in totem because typefinding sends a seek that ends
17079 up going back to chapter 1 regardless.
17080 * ext/mpeg2dec/gstmpeg2dec.c:
17081 * ext/mpeg2dec/gstmpeg2dec.h:
17082 Output correct timestamps and handle disconts.
17083 * ext/ogg/gstoggdemux.c: (get_relative):
17084 Small guard against a null dereference.
17085 * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
17086 (gst_textoverlay_set_property):
17087 Free memory when done. Don't call gst_event_filler_get_duration on
17088 EOS events. Use GST_LOG and GST_WARNING instead of g_message and
17090 * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
17091 (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
17092 (gst_sw_srclink), (gst_smoothwave_chain):
17093 Draw solid lines, prettier colours.
17094 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
17095 Add a default palette that'll work for some movies.
17096 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
17097 (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
17098 (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
17099 * gst/mpegstream/gstdvddemux.h:
17100 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
17101 (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
17102 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
17103 (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
17104 * gst/mpegstream/gstmpegparse.h:
17105 Use PTM/NAV events when for timestamp adjustment when connected to
17106 dvdnavsrc. Don't use many discont events where one suffices.
17107 * gst/playback/gstplaybasebin.c: (group_destroy),
17108 (gen_preroll_element), (gst_play_base_bin_add_element):
17109 * gst/playback/gstplaybasebin.h:
17110 Make sure we remove subtitles from the same bin we put them in.
17111 * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
17112 (gst_subparse_buffer_format_autodetect),
17113 (gst_subparse_change_state):
17114 Fix some memleaks and invalid accesses.
17115 * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
17116 (oggskel_type_find), (cmml_type_find), (plugin_init):
17117 Some typefind functions for Annodex v3.0 files
17118 * gst/wavparse/gstwavparse.h:
17119 GstRiffReadClass is the correct parent class.
17121 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17123 * gst-libs/gst/riff/riff-media.c:
17124 (gst_riff_create_video_caps_with_data):
17125 Add extradata to huffyuv (fixes #165013).
17126 * gst-libs/gst/riff/riff-read.c:
17127 (gst_riff_read_strf_vids_with_data):
17128 Fix extradata extraction if it is in the chunk size.
17130 2005-01-25 Edward Hervey <bilboed@bilboed.com>
17132 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17134 * gst/effectv/gstquark.c: (gst_quarktv_class_init),
17135 (gst_quarktv_change_state), (gst_quarktv_dispose):
17136 Memory free'ing location fix (#164708).
17138 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17140 * gst/playback/gstplaybasebin.c: (group_commit),
17141 (gen_preroll_element), (probe_triggered), (gen_source_element),
17142 (setup_source), (gst_play_base_bin_change_state),
17143 (gst_play_base_bin_add_element):
17144 Don't block for streams.
17145 * gst/playback/gststreaminfo.c: (stream_info_change_state),
17146 (gst_stream_info_set_mute):
17147 Use gst_pad_set_active_recursive.
17149 2005-01-25 Andy Wingo <wingo@pobox.com>
17151 * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
17152 for #ifndef HAVE_XVIDEO.
17154 2005-01-24 Jeffrey C. Ollie
17156 reviewed by: Maciej Katafiasz <mathrick@freedesktop.org>
17158 * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
17159 * ext/gsm/gstgsmdec.h:
17160 * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
17161 * ext/gsm/gstgsmenc.h:
17162 Fix rate to 8kHz as per spec, removes obscure errors when no rate
17163 was given by property. Add proper buffer timestamps and offsets.
17165 2005-01-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17167 * gst-libs/gst/riff/riff-media.c:
17168 (gst_riff_create_audio_caps_with_data):
17169 Audio can be <8000Hz.
17171 2005-01-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17173 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
17174 Explicit state change to workaround refcount bugs.
17176 2005-01-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17178 * gst/avi/gstavimux.c: (gst_avimux_write_tag),
17179 (gst_avimux_riff_get_avi_header):
17182 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17184 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
17185 (gst_riff_read_element_data):
17186 * gst-libs/gst/riff/riff-read.h:
17187 Add _peek version (req'ed in CDXA).
17188 * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
17189 (gst_cdxaparse_loop):
17190 Fix parsing in playbin.
17191 * gst/playback/gstdecodebin.c: (close_pad_link):
17192 Ignore current_ pads, they cause major annoyance.
17194 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17196 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
17199 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17201 * gst/avi/gstavimux.c: (gst_avimux_write_tag):
17204 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17206 * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
17207 Allow for 0-sized buffers. Fixes length query problems in
17208 starwars.mkv from the testsuite.
17210 2005-01-19 Tim-Philipp Müller <tim at centricular dot net>
17212 * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
17213 (gst_video_box_i420), (gst_video_box_chain):
17214 Fix row strides for I420 (fixes #163159)
17216 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17218 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
17219 MPEG2 has a useful rate property, so we can actually use that.
17220 For MPEG-1, continue using the bytes/time properties.
17222 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17224 * gst-libs/gst/riff/riff-media.c:
17225 (gst_riff_create_video_caps_with_data),
17226 (gst_riff_create_video_template_caps):
17229 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17231 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
17232 Fail if caps negotiation fails. Should fix #162184, and should
17233 definately be in there regardless of it fixing the actual bug.
17234 * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
17235 (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
17236 (gst_avimux_riff_get_avix_header),
17237 (gst_avimux_riff_get_video_header),
17238 (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
17239 (gst_avimux_start_file), (gst_avimux_handle_event),
17240 (gst_avimux_change_state):
17241 * gst/avi/gstavimux.h:
17242 Refactor structure writing to use GST_WRITE_UINT macros, add
17243 metadata writing support.
17245 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17247 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
17248 Elements may already be destroyed when this function is called.
17250 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17252 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
17253 (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
17254 More memory leak fixes (#149162).
17256 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17258 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
17259 (gst_qtdemux_add_stream):
17262 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17264 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
17267 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17269 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
17270 Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
17271 when fixating to six channels in Totem.
17273 2005-01-17 Tim-Philipp Müller <tim at centricular dot net>
17275 * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
17276 Fix compile warnings on Solaris 10 buildbot
17278 2005-01-17 Tim-Philipp Müller <tim at centricular dot net>
17280 * ext/dvdread/dvdreadsrc.c: (_read):
17281 Don't read beyond the last cell in a chapter (fixes
17282 invalid memory access)
17284 2005-01-17 Tim-Philipp Müller <tim at centricular dot net>
17286 * ext/dvdread/stream_labels.c:
17287 (dvdreadsrc_get_audio_stream_labels):
17288 Use NULL for an empty GList instead of g_list_alloc(); fix
17289 memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead
17290 of GString (easier to bulk free later)
17292 2005-01-17 Gergely Nagy <algernon@bonehunter.rulez.org>
17294 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17296 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17297 (gst_ffmpeg_pixfmt_to_caps):
17298 Fix BGRA32 caps (#164209).
17300 2005-01-17 Gergely Nagy <algernon@bonehunter.rulez.org>
17302 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17304 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17305 (gst_ffmpeg_caps_to_pixfmt):
17306 alpha_mask can be RGBA/ABGR. Fixes #164265.
17308 2005-01-17 Francis Labonte <francis_labonte@hotmail.com>
17310 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17312 * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
17313 (gst_mpeg2dec_alloc_buffer):
17314 * ext/mpeg2dec/gstmpeg2dec.h:
17315 Crop if decoding size is not the actual image size (#163676).
17317 2005-01-17 Steve Baker <steve@stevebaker.org>
17319 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17321 * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
17322 (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
17323 Add libsndfile typefind functions (#163309).
17325 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17327 * tools/gst-launch-ext-m.m:
17328 Add .aac, fix .m1v/.m2v (#163891).
17330 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17332 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
17333 Sanity check, don't wait endlessly since the clock might not
17334 actually run at this point (which is a deadlock). Fixes #164069.
17336 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17338 * gst/playback/gstplaybasebin.c: (probe_triggered):
17339 Of course, only pause if group is done...
17341 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17343 * gst/playback/gstplaybasebin.c: (probe_triggered):
17346 2005-01-16 Jan Schmidt <thaytan@mad.scientist.com>
17348 * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
17349 Don't return state change success when the parent
17352 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17354 * gst/avi/gstavimux.c: (gst_avimux_handle_event):
17355 Free events (fix memleak in #162905).
17357 2005-01-15 Gergely Nagy <algernon@bonehunter.rulez.org>
17359 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17361 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17362 (gst_ffmpeg_caps_to_pixfmt):
17363 Fix for depth = 15. Fixes #161675.
17365 2005-01-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17367 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
17368 Set FPS correctly, even for webcams and the like.
17369 * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
17370 Don error on setting while capturing.
17372 2005-01-14 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17374 * ext/dv/gstdvdec.c:
17375 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
17376 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
17377 I'm a bad boy. using /1001. to force C to do float division
17378 and not integer division (as it did in my last commit)
17379 Thanks to David I. Lehn for pointing this mistake.
17381 2005-01-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17383 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
17384 Revert Johan's 1.35->1.36 since it breaks compat.
17386 2005-01-14 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17388 * ext/dv/gstdvdec.c:
17389 * ext/libfame/gstlibfame.c:
17390 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
17391 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
17392 replace framerate aproximations by their real value
17393 (24000/1001, 30000/1001, 60000/1001)
17394 Finish fixing bug #164049
17396 2005-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
17398 * ext/ogg/gstoggmux.c:
17400 * gst/tcp/gstmultifdsink.c:
17401 * gst/tcp/gstmultifdsink.h:
17402 * gst/tcp/gsttcp.c:
17403 * gst/tcp/gsttcp.h:
17404 * gst/tcp/gsttcpclientsink.c:
17405 * gst/tcp/gsttcpclientsrc.c:
17406 * gst/tcp/gsttcpserversink.c:
17407 * gst/tcp/gsttcpserversrc.c:
17408 improve reusability of elements after state changes and errors
17409 make multifdsink throw away streamheaders when receiving new ones
17411 2005-01-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17413 * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
17414 Fix for if items are already in list...
17416 2005-01-12 Benjamin Otte <otte@gnome.org>
17418 * gst/adder/gstadder.c: (gst_adder_loop):
17419 fix adder a bit so it doesn't screw up with events as much anymore
17421 2005-01-12 Jan Schmidt <thaytan@mad.scientist.com>
17423 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
17424 (pixbufscale_scale), (gst_pixbufscale_chain):
17425 * ext/gdk_pixbuf/pixbufscale.h:
17426 Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
17427 to ensure rowstrides are calculated the same way as
17429 Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
17430 that we pick up duration and offset also.
17432 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17434 * gst/avi/gstavimux.c: (gst_avimux_class_init),
17435 (gst_avimux_pad_unlink), (gst_avimux_release_pad):
17438 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17440 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
17441 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
17442 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
17443 (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
17444 Update flags when requested.
17446 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17448 * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
17451 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17453 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17454 (gst_play_base_bin_init), (gst_play_base_bin_dispose),
17455 (probe_triggered), (new_decoded_pad), (gen_source_element),
17456 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
17457 * gst/playback/gstplaybasebin.h:
17458 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
17459 (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
17460 (gst_play_bin_change_state):
17461 Implement group-switch signal for use in apps to clear metadata
17462 cache, clean up subtitle, add suburi property instead of # hack,
17463 some error-out fixes.
17465 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17467 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
17469 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
17470 If we got a state change in the _get handler, don't return success.
17472 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17474 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
17475 (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
17476 Make jpegdec quiet on MJPEG decoding
17477 * gst/asfdemux/README:
17478 Fix mimetypes for MJPEG and H263
17480 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17482 * ext/theora/theoradec.c: (theora_dec_chain):
17483 Fix broken code generation by gcc by swapping arguments.
17484 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17487 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17490 delete this file, it is by far outdated
17491 * ext/alsa/gstalsa.1: remove
17492 * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
17493 (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
17494 (gst_alsa_get_caps):
17495 Add HW probing for supported sample rates. Fixes #161704
17497 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17499 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17500 Don't crash, biatch! :).
17502 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17504 * ext/musepack/gstmusepackreader.cpp:
17505 * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
17506 Some work on tags - still doesn't work in playbin...
17507 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17510 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17512 * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
17513 Also shove tags on kid pads.
17515 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17517 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
17518 Don't bail on unknown events.
17519 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17520 Don't crash on events before negotiation.
17521 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
17522 Send tags on pads, too.
17523 * gst/playback/gststreamselector.c:
17524 (gst_stream_selector_request_new_pad):
17525 Forward events on first pad if no input was selected yet.
17527 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17529 * gst/playback/gstplaybasebin.c: (setup_substreams):
17530 Don't disable streamtype if the stream doesn't exist, since
17531 then playing a video after audio will disable both and nothing
17532 will happen. Fixes the testsuite.
17534 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17536 * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
17537 (gst_v4l_xoverlay_set_xwindow_id):
17538 * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
17539 (gst_v4l2_xoverlay_set_xwindow_id):
17540 Add debug categories, fix overlay disabling.
17542 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17544 * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
17545 * ext/alsa/gstalsa.h:
17546 Add HW probing for period_count/size and buffer_size MIX/MAX
17547 Adjust default/user defined value if out of bounds
17548 Should fix bug #162024
17550 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17552 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
17553 Fix warning (#161191).
17555 2005-01-09 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17557 * ext/dvdread/stream_labels.c:
17558 (dvdreadsrc_get_audio_stream_labels):
17559 Fix warning (init the good variable in switch default)
17561 2005-01-09 Koop Mast <kwm@rainbow-runner.nl>
17563 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17565 * gst/tta/gstttaparse.c: (gst_tta_src_event):
17566 Fix gcc-2.95 compile (#163485).
17568 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17571 * ext/flac/gstflacenc.c: (gst_flacenc_init),
17572 (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
17573 (gst_flacenc_tell_callback), (gst_flacenc_chain),
17574 (gst_flacenc_change_state):
17575 * ext/flac/gstflacenc.h:
17576 Update for API change in flac-1.1.1. Update requirement in
17577 configure.ac. Fixes #162974.
17579 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17581 * gst/playback/gstplaybasebin.c: (group_destroy):
17582 Remove hack to get rid of assert and get rid of unlinked
17585 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17587 * gst/playback/gstplaybasebin.c: (setup_source):
17588 Set source to NULL so that resources are free'ed. Fixes issues
17589 with playback of CDDA and similar device-accessing things.
17591 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17593 * testsuite/embed/Makefile.am:
17594 test->noinst, fix make test in buildbot.
17596 2005-01-09 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17598 * ext/dvdread/stream_labels.c: new file
17599 * ext/dvdread/stream_labels.h: new file
17600 * ext/dvdread/Makefile.am:
17601 * ext/dvdread/dvdreadsrc.c: (_seek_title):
17602 Extract audio stream label from DVD IFO files.
17603 It only dump them on the console for now, still have to
17604 make playbin aware of them.
17606 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17608 * gst/playback/gstplaybasebin.c: (setup_source):
17611 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17613 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
17614 (gen_preroll_element), (remove_groups), (setup_subtitle),
17615 (gen_source_element), (setup_source):
17616 * gst/playback/gstplaybasebin.h:
17617 Multiple .sub files is just a stupid idea... Fix some threading
17618 mistakes. Interestingly, external .sub files cause playbin to
17619 hang, I don't know why... Parsing fixes contributed by Fran??ois
17620 Kooman <fkooman@tuxed.net>.
17622 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17624 * testsuite/embed/Makefile.am:
17627 2005-01-09 Gergely Nagy <algernon@bonehunter.rulez.org>
17629 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17631 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
17632 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
17633 (gst_pngenc_set_property):
17634 * ext/libpng/gstpngenc.h:
17635 Add compression level property (#163323).
17637 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17640 * examples/capsfilter/capsfilter1.c: (main):
17641 * examples/seeking/spider_seek.c: (make_spider_pipeline):
17642 * ext/dvdread/Makefile.am:
17643 * ext/dvdread/demo-play:
17644 * ext/dvdread/demo-play.c:
17645 * gconf/gstreamer.schemas.in:
17646 * gst-libs/gst/gconf/gconf.c:
17648 * testsuite/Makefile.am:
17649 * testsuite/embed/Makefile.am:
17650 * testsuite/embed/embed.c: (cb_expose), (main):
17651 Remove all references to xvideosink, fix examples (#140845).
17652 * gst/playback/gstplaybasebin.c: (group_destroy):
17653 Apparently, disposal does not unlink - so do explicitely.
17654 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
17657 2005-01-09 Maciej Katafiasz <mathrick@freedesktop.org>
17659 * README: fix PKG_CONFIG_PATH instructions, what was there
17660 previously was breaking default search path, not nice.
17663 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17665 * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
17666 (gst_audioscale_chain):
17667 %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
17668 when resampling - how the ^@$^!@^! is this possible?!?
17670 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17672 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
17673 Reset variables on READY.
17674 * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
17675 (gst_matroska_mux_loop):
17676 Require data before writing header.
17678 2005-01-09 Francis Labonte <francis_labonte@hotmail.com>
17680 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17682 * ext/mad/gstmad.c: (gst_mad_chain):
17683 Don't call mad_stream_sync() directly after recovering sync.
17686 2005-01-09 Martin Eikermann <meiker@upb.de>
17688 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17690 * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
17691 (snapshot_handler), (gst_snapshot_sinkconnect),
17692 (gst_snapshot_chain):
17693 Allocate resources when required, fix recursive signal emission
17694 and fix caps. Fixes #161667.
17696 2005-01-09 Gergely Nagy <algernon@bonehunter.rulez.org>
17698 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17700 * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
17701 (gst_pngdec_chain):
17702 Handle only 8-bppc (bits-per-pixel-component) images, better
17703 error handling and correct strides. Fixes #163177.
17704 * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
17705 (gst_pngenc_chain):
17706 Better error handling. Fixes #163348.
17708 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17710 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
17711 (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
17712 (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
17713 (dvdnavsrc_uri_handler_init):
17714 Add DVD-nav URI (dvdnav://) for Totem testing purposes.
17715 * gst/playback/gstplaybasebin.c: (gen_source_element):
17716 Add MMS to streaming URIs.
17718 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17720 * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
17721 * sys/xvimage/xvimagesink.c:
17722 (gst_xvimagesink_navigation_send_event):
17723 Check for pad availability before sending event.
17725 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17727 * gst-plugins.spec.in:
17730 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17733 Since we use functions from CVS, up requirement.
17735 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17737 * gst/playback/Makefile.am:
17738 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17739 (group_destroy), (group_commit), (group_is_muted),
17740 (gen_preroll_element), (add_stream), (unknown_type),
17741 (probe_triggered), (preroll_unlinked), (mute_stream),
17742 (silence_stream), (new_decoded_pad), (setup_substreams),
17743 (setup_source), (get_active_source), (mute_group_type),
17744 (muted_group_change_state), (set_active_source),
17745 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
17746 (play_base_eos), (gst_play_base_bin_change_state):
17747 * gst/playback/gstplaybasebin.h:
17748 * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
17749 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
17750 (gst_stream_info_dispose), (stream_info_mute_pad),
17751 (stream_info_change_state), (gst_stream_info_set_mute):
17752 * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
17753 (gst_stream_selector_base_init), (gst_stream_selector_class_init),
17754 (gst_stream_selector_init), (gst_stream_selector_dispose),
17755 (gst_stream_selector_get_linked_pad),
17756 (gst_stream_selector_get_caps), (gst_stream_selector_link),
17757 (gst_stream_selector_get_linked_pads),
17758 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
17759 * gst/playback/gststreamselector.h:
17760 Adding stream selection support plus required properties for
17761 applications to use this. Fully fixes #100931.
17763 2005-01-08 Benjamin Otte <otte@gnome.org>
17765 * gst/games/gstpuzzle.c: (nav_event_handler):
17766 - handle nav events differently: forward every event no matter if it
17767 was handled or not.
17769 You can now cheat by using navigationtest ! puzzle and moving the
17770 mouse close to the edge of a tile. ;)
17772 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17775 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
17776 * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
17777 (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
17778 (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
17779 (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
17780 (gst_ogm_parse_plugin_init):
17781 * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
17782 (gst_textoverlay_link), (gst_textoverlay_getcaps),
17783 (gst_textoverlay_event), (gst_textoverlay_video_chain),
17784 (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
17785 * ext/pango/gsttextoverlay.h:
17786 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17787 (gst_matroska_demux_handle_seek_event),
17788 (gst_matroska_demux_sync_streams),
17789 (gst_matroska_demux_parse_blockgroup),
17790 (gst_matroska_demux_subtitle_caps),
17791 (gst_matroska_demux_plugin_init):
17792 * gst/matroska/matroska-ids.h:
17793 * gst/playback/gstdecodebin.c: (close_pad_link):
17794 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
17795 (gen_preroll_element), (remove_groups), (add_stream),
17796 (new_decoded_pad), (setup_subtitles), (gen_source_element),
17798 * gst/playback/gstplaybasebin.h:
17799 * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
17800 * gst/subparse/Makefile.am:
17801 * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
17802 (gst_subparse_base_init), (gst_subparse_class_init),
17803 (gst_subparse_init), (gst_subparse_formats),
17804 (gst_subparse_eventmask), (gst_subparse_event),
17805 (gst_subparse_handle_event), (convert_encoding), (get_next_line),
17806 (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
17807 (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
17808 (parse_mpsub_deinit), (parse_mpsub_init),
17809 (gst_subparse_buffer_format_autodetect),
17810 (gst_subparse_format_autodetect), (gst_subparse_loop),
17811 (gst_subparse_change_state), (gst_subparse_type_find),
17813 * gst/subparse/gstsubparse.h:
17814 * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
17816 Add subtitle support, .sub parser (supports SRT and MPsub),
17817 OGM text support, Matroska UTF-8 text support, deadlock fixes
17818 all over the place, subtitle awareness in decodebin/playbin
17819 and some fixes to textoverlay to handle subtitles in a stream
17820 correctly. Fixes #100931.
17822 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17824 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17825 Check for pad availability before doing a query on it.
17827 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17829 * ext/dv/gstdvdec.c:
17830 really fix bpp24/32 dvdec caps (classic rgba indeed)
17831 * gst/asfdemux/gstasfdemux.c:
17832 (gst_asf_demux_process_ext_content_desc):
17833 don't send text tags if they are empty (bis repetita)
17835 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17837 * ext/dv/gstdvdec.c:
17838 remove unneeded comment from dvdec
17839 (related to DV 4CC codes in AVI files)
17840 moved them in gstreamer/docs/random/mimetypes
17841 * gst/asfdemux/gstasfdemux.c:
17842 (gst_asf_demux_process_ext_content_desc):
17843 don't send text tags if they are empty
17844 fix mem leak on error path
17845 * gst/ffmpegcolorspace/avcodec.h:
17846 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17847 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
17848 (gst_ffmpegcsp_avpicture_fill):
17849 * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
17850 * gst/ffmpegcolorspace/imgconvert_template.h:
17851 adds BGR32 and BGRA32 to ffmpegcolorspace
17852 (still bad colors, fixing it on next commit)
17853 helps with dvdec outputing BGR32
17855 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17857 * ext/dv/gstdvdec.c:
17858 Fix audio caps i just broke (missing ',')
17859 * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
17860 (gst_matroska_mux_reset):
17861 Fix typo + add FIXME about old "x-gst-metadata" crap
17863 2005-01-07 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17865 * ext/dv/demo-play.c: (main):
17866 xvideosink -> xvimagesink
17867 * ext/dv/gstdvdec.c:
17868 change rgb 32/32 caps to 24/32 (no alpha)
17869 change nb of channels to be a list (2 or 4, not 2)
17870 change sample rate to be a list (32, 44.1, 48 kHz) not a range
17871 * gst/asfdemux/gstasfdemux.c:
17872 (gst_asf_demux_process_ext_content_desc):
17873 Add 'date/year' to extracted metadata list
17875 2005-01-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17877 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
17878 The return value of fixate_to does not imply that the requested
17879 value was set, so don't assume.
17881 2005-01-07 Gergely Nagy <algernon@bonehunter.rulez.org>
17883 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17885 * ext/libpng/gstpngdec.c:
17886 * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
17887 (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
17888 * ext/libpng/gstpngenc.h:
17889 Alpha support (encoder; #163161), mime fixage.
17891 2005-01-07 Sebastien Cote <sc5@hermes.usherb.ca>
17893 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17895 * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
17896 (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
17897 (gst_faac_set_property), (gst_faac_get_property):
17898 * ext/faac/gstfaac.h:
17899 Allow for ADTS output (#153434).
17901 2005-01-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17903 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
17904 Fix against template (#150576).
17906 2005-01-06 Benjamin Otte <otte@gnome.org>
17908 * gst/games/gstpuzzle.c: (draw_puzzle):
17909 don't draw a puzzle if either width or height of tiles would be 0.
17911 2005-01-06 Benjamin Otte <otte@gnome.org>
17913 * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
17914 (gst_puzzle_class_init), (gst_puzzle_finalize):
17915 no memleaks, please
17916 (gst_puzzle_create), (gst_puzzle_init),
17917 (gst_puzzle_set_property), (gst_puzzle_setup):
17918 change initialization code around so we don't reshuffle on resize
17920 fix another stupid typo
17922 2005-01-06 Benjamin Otte <otte@gnome.org>
17924 * gst/games/gstvideoimage.c: (copy_hline_YUY2):
17925 fix stupid typo that borked copying on YUY2
17927 2005-01-06 Benjamin Otte <otte@gnome.org>
17929 * gst/games/gstpuzzle.c: (draw_puzzle):
17930 fix edges when image sizes aren't multiples of tile sizes
17932 2005-01-06 Benjamin Otte <otte@gnome.org>
17934 * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
17935 make RGB endianness work correctly
17936 (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
17937 refactor and fix race with initial shuffling
17938 (nav_event_handler):
17939 allow using the mouse to puzzle
17941 insist on tiles having width and height as multiples of 4 to get
17942 clean YUV image handling
17943 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
17944 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
17945 s/DEBUG/LOG/ for common messages
17946 (gst_xvimagesink_navigation_send_event):
17947 fix mouse event translation to not include screen PAR
17948 * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
17949 fix mouse event translation to actually work
17951 2005-01-06 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17953 * gst/asfdemux/gstasfdemux.c:
17954 (gst_asf_demux_process_ext_content_desc):
17955 Extract TrackNumber metadata + clean up code
17956 * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
17957 Hope this is the good fix (var used unitialised)
17959 2005-01-06 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17961 * ext/faad/gstfaad.c: (gst_faad_chain):
17962 Only increment timestamp if it's valid. Fixes raw AAC streams.
17964 2005-01-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
17967 * gst/games/Makefile.am:
17968 * gst/games/gstpuzzle.c:
17969 add a puzzle game with...
17970 * gst/games/gstvideoimage.c:
17971 * gst/games/gstvideoimage.h:
17972 ... full colorspace support (that includes YUV9 and RGB16)) stolen
17973 from videotestsrc and made into something that would be a nice
17974 library for a lot of other plugins.
17976 2005-01-06 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17979 don't compile faad plugin if a RC of 2.0 is found
17980 Fixes #155346 (and FC1 buildbot)
17981 * gst/asfdemux/gstasfdemux.c:
17982 (gst_asf_demux_process_ext_content_desc):
17983 try to make Solaris compiler happier
17985 2005-01-06 Paul Jack <pjack@sfaf.org>
17987 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17989 * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
17990 Fix segfault (#161667).
17992 2005-01-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17994 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
17995 Fix framerate reporting.
17997 2005-01-05 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17999 * gst-libs/gst/riff/riff-ids.h:
18000 * gst/wavenc/riff.h:
18001 Add AMR (VBR and CBR) ids to riff.h audio codec list
18002 * gst/asfdemux/gstasfdemux.c:
18003 (gst_asf_demux_process_ext_content_desc),
18004 (gst_asf_demux_process_object):
18005 Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
18007 2005-01-05 Martin Eikermann <meiker@upb.de>
18009 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18011 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
18012 (gst_dvd_demux_handle_discont):
18013 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
18014 (gst_mpeg_demux_handle_discont):
18015 Recreate pads on new-media (#160730).
18016 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
18017 Send discont even if manager changes timestamps (#161929).
18019 2005-01-05 Sebastien Cote <sc5@hermes.usherb.ca>
18021 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18023 * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
18024 Fix invalid memory access (#159211).
18026 2005-01-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18028 * examples/gstplay/player.c: (main):
18030 * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
18031 Add visualizations.
18032 * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
18033 (gst_a52dec_handle_frame):
18035 * ext/dvdnav/gst-dvd:
18036 Add audioconvert. Fixes #161325.
18037 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
18038 Explicitely case to gint64. Possible valgrind error.
18039 * gst-libs/gst/play/play.c: (caps_set), (setup_size),
18040 (gst_play_tick_callback), (gst_play_change_state),
18041 (gst_play_dispose), (gst_play_init), (gst_play_class_init),
18042 (gst_play_set_location), (gst_play_get_location),
18043 (gst_play_seek_to_time), (gst_play_set_data_src),
18044 (gst_play_set_video_sink), (gst_play_set_audio_sink),
18045 (gst_play_set_visualization), (gst_play_connect_visualization),
18046 (gst_play_get_framerate), (gst_play_get_all_by_interface),
18048 Use playbin. Fixes #139749 and #147744.
18049 * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
18051 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
18052 (audioscale_get_type), (gst_audioscale_base_init),
18053 (gst_audioscale_class_init), (gst_audioscale_expand_caps),
18054 (gst_audioscale_getcaps), (gst_audioscale_fixate),
18055 (gst_audioscale_link), (gst_audioscale_get_buffer),
18056 (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
18057 (gst_audioscale_init), (gst_audioscale_dispose),
18058 (gst_audioscale_chain), (gst_audioscale_set_property),
18059 (gst_audioscale_get_property), (plugin_init):
18061 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
18063 * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
18064 (qtdemux_tag_add_str), (qtdemux_tag_add_num),
18065 (qtdemux_tag_add_gnre), (qtdemux_video_caps):
18066 Add more metadata (fixes #162656).
18068 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
18073 === release 0.8.7 ===
18075 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
18080 releasing 0.8.7, "Hyperspace"
18082 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
18084 patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
18086 * gst/playback/gstplaybasebin.c:
18087 Fix for #162924 - free caps after use, not before
18089 2005-01-04 Thomas Vander Stichele <thomas at apestaart dot org>
18091 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18093 * gst/playback/gstplaybasebin.c:
18094 * gst/wavparse/gstwavparse.c:
18095 Fix for #154773 - fixes playback of small .wav files
18097 2005-01-03 Thomas Vander Stichele <thomas at apestaart dot org>
18099 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18101 * gst/audioscale/gstaudioscale.c:
18102 Fix for #162819 - make audioscale reusable
18103 Fixes playback of more than one file with playbin/totem
18105 2004-12-29 Thomas Vander Stichele <thomas at apestaart dot org>
18107 * gst/ffmpegcolorspace/avcodec.h:
18108 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18109 * gst/ffmpegcolorspace/imgconvert.c:
18110 clean up the mess that made me cry and avoid needless duplication
18112 2004-12-29 Thomas Vander Stichele <thomas at apestaart dot org>
18114 * gst/ffmpegcolorspace/imgconvert.c:
18115 give some indication of why we're segfaulting
18117 2004-12-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18120 Fix indentation, fix v4l2 plugin detection.
18122 Fix libmms location (Maciej, use diff -u!).
18123 * ext/alsa/gstalsa.c: (gst_alsa_init):
18124 Initialize caps cache to NULL.
18125 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
18126 Only change state on audiosink if it exists.
18128 2004-12-28 Maciej Katafiasz <mathrick@mathrick.org>
18130 * gst/matroska/matroska-demux.c:
18131 * gst/matroska/matroska-ids.h:
18132 * gst/matroska/matroska-demux.h:
18133 Fix Vorbis streams failing to decode in some files, where cluster_time
18134 isn't 0, because then it doesn't send codec_priv before actual data.
18135 Remove time-based test and replace it with marker set on beginning of
18138 2004-12-28 David Schleef <ds@schleef.org>
18140 Merge patch from Ronald fixing problems with streaming
18142 * ext/cairo/gstcairo.c: (plugin_init):
18143 * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
18144 (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
18145 (gst_textoverlay_video_chain), (gst_textoverlay_loop),
18146 (gst_textoverlay_font_init), (gst_textoverlay_init),
18147 (gst_textoverlay_set_property):
18148 * ext/cairo/gsttextoverlay.h:
18150 2004-12-27 David Schleef <ds@schleef.org>
18152 * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
18153 (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
18154 (gst_textoverlay_video_chain), (gst_textoverlay_loop),
18155 (gst_textoverlay_font_init), (gst_textoverlay_init),
18156 (gst_textoverlay_set_property): Improvements to actually
18157 render text as white on black outline on video, including
18158 font selection and horizontal/vertical alignment. (Ronald's
18160 * ext/cairo/gsttextoverlay.h:
18162 2004-12-26 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18164 * ext/ogg/gstogg.c:
18165 * ext/ogg/gstogmparse.c:
18166 fix ogm[audio/video]parse plugin registration
18167 (riff won't load if bytestream is already loaded)
18169 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
18171 * gst/audioconvert/gstchannelmix.c:
18174 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
18178 disable docs again until it actually passes make distcheck.
18180 2004-12-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18182 * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
18183 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
18185 Add 3GP (variables name Q3GP because they can't start with a
18186 number). Add samr audio fourcc (used in .3gp files), decoder
18187 is work in progress. Also do a GST_WARNING instead of ERROR
18188 in case of unknown nodes, to decrease output.
18190 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
18195 2004-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
18198 * ext/speex/gstspeexdec.h:
18199 * ext/speex/gstspeexenc.h:
18200 Fixes #158382. Make speex plugin compatible with both 1.0 and 1.1.
18201 Fix detection code in configure.ac
18203 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18205 * gst/matroska/matroska-demux.c:
18206 (gst_matroska_demux_parse_blockgroup):
18207 Save position, so that queries give proper return values. Don't
18208 know how this could ever have worked before...
18210 2004-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
18213 Put additional LAME check inside the conditional. Fixes #152339
18215 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18217 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18218 (gst_avi_demux_stream_scan):
18219 Add some more debug. Fix logic error when setting movi offset
18220 while reading index.
18222 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18224 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18225 (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
18226 (gst_avi_demux_process_next_entry):
18227 Add some debugging. Better detection of broken indexes and the
18228 accompanying index recovery. No infinite loops on state changes
18229 when we're still in our loopfunction.
18231 2004-12-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18236 2004-12-22 Archana Shah <archana.shah@wipro.com>
18238 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18240 * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
18241 Normalizing the value before setting
18242 (gst_sunaudiomixer_get_volume):
18243 Normalizing the value after getting. Fixes bug# 161980
18245 2004-12-22 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18247 * Makefile.am: Make sure docs gets disted
18248 * docs/Makefile.am: Make sure all needed files get disted
18249 * gst-plugins.spec.in: latest updates
18251 2004-12-22 Wim Taymans <wim@fluendo.com>
18253 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
18254 Revert patch 1.38 as clock distribution over schedulers does
18255 not work correcly in the core yet.
18257 2004-12-21 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18259 * sys/oss/README: remove this file, which predates my birth
18260 (and which content is by far outdated)
18262 2004-12-20 Stefan Kost <ensonic@users.sf.net>
18266 * docs/Makefile.am:
18267 * docs/libs/Makefile.am:
18268 * docs/libs/gst-plugins-libs-docs.sgml:
18269 * docs/libs/gst-plugins-libs-sections.txt:
18270 * docs/libs/tmpl/gstgconf.sgml:
18272 * docs/version.entities.in:
18273 Added boilerplate gtk-doc files for plugin-libs documentation.
18275 2004-12-19 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18277 * gst/auparse/gstauparse.c: fix int and float audio caps
18279 2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18281 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
18282 * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
18283 g_assert() can be a macro, don't use #ifdef inside it.
18285 2004-12-19 Edward Hervey <bilboed@bilboed.com>
18287 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18289 * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
18290 (gst_videorate_init), (gst_videorate_chain),
18291 (gst_videorate_change_state):
18292 Event handling (fixes #159986).
18294 2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18296 * gst-libs/gst/riff/riff-media.c:
18297 (gst_riff_create_video_caps_with_data):
18298 Add BLZ0 (Blizzard's version of DivX) fourcc.
18300 2004-12-18 David Schleef <ds@schleef.org>
18302 * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
18305 2004-12-18 David Schleef <ds@schleef.org>
18307 * gst/tta/ttadec.h: Disable some header code that isn't used
18308 and clearly isn't portable.
18310 2004-12-18 David Schleef <ds@schleef.org>
18312 * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
18313 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
18314 (avcodec_get_pix_fmt), (avpicture_layout),
18315 (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
18316 (get_convert_table_entry), (img_convert), (img_get_alpha_info):
18317 Fix code to not use GCC extensions (and c99 extensions that
18318 Forte does not like.)
18320 2004-12-19 Tim-Philipp Müller <t.i.m@zen.co.uk>
18322 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18324 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
18325 (gst_deinterlace_chain):
18326 Rowstride fixes. Fixes #161039.
18327 * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
18328 (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
18329 (gst_video_crop_getcaps), (gst_video_crop_link),
18330 (gst_video_crop_i420), (gst_video_crop_chain),
18331 (gst_video_crop_change_state):
18332 Rework of negotiation. Actually works now. Fixes #158650.
18334 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18336 * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
18337 That was very stupid.
18339 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18341 * gst/matroska/matroska-demux.c:
18342 (gst_matroska_demux_parse_blockgroup):
18343 Fix possible crasher.
18345 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18347 * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
18348 (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
18349 Lace sizes can be zero.
18351 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18353 * ext/musepack/gstmusepackdec.cpp:
18354 Fetch error return values. Fixes #161624.
18355 * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
18358 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18360 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
18361 Work for truncated (unfinished download etc.) files. Fixes #160514.
18363 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18365 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18366 Fix for integer overflow. Makes #156001 not crash. Probably masks
18369 2004-12-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18371 * gst/ac3parse/gstac3parse.c: (plugin_init):
18372 Parsers never have ranks. Fixes #159651.
18374 2004-12-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
18376 * gst/playback/gstdecodebin.c: (compare_ranks):
18377 make sure the facotries are ordered the same every time even if they
18378 have the same rank by using the name
18379 * gst/playback/gstdecodebin.c: (find_compatibles):
18380 make sure we don't add factories to the list twice
18382 2004-12-16 David Schleef <ds@schleef.org>
18384 * configure.ac: look for musepack headers as musepack/*.h
18386 * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
18387 * ext/musepack/gstmusepackreader.h: same
18389 2004-12-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18391 * gst-libs/gst/riff/riff-read.c:
18392 (gst_riff_read_strf_auds_with_data):
18393 Read extradata correctly (fixes #155879).
18395 2004-12-16 David Schleef <ds@schleef.org>
18397 * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
18398 audio. does _not_ attempt or allow conversion unless channels
18401 2004-12-16 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18403 * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
18405 2004-12-16 David Schleef <ds@schleef.org>
18407 * gst/audioscale/gstaudioscale.c: the resample library only
18408 handles 1 or 2 channels. Change caps to compensate.
18410 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18412 * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
18413 (gst_matroska_demux_audio_caps):
18414 Some MPEG-AAC hacks, because else it doesn't work...
18416 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18418 * gst-libs/gst/riff/riff-media.c:
18419 (gst_riff_create_video_caps_with_data),
18420 (gst_riff_create_video_template_caps):
18423 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18425 * gst-libs/gst/audio/Makefile.am:
18426 Try to fix buildbot.
18428 2004-12-16 Thomas Vander Stichele <thomas at apestaart dot org>
18430 * gst/tcp/gstmultifdsink.c:
18431 Clean up and uniformize debugging.
18433 2004-12-16 Edward Hervey <bilboed@bilboed.com>
18435 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18437 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
18438 (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
18439 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
18440 (gst_mpeg_demux_change_state):
18441 Reset on ready. Fixes 160276.
18443 2004-12-16 Sebastien Cote <sc5@hermes.usherb.ca>
18445 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18447 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18448 (gst_ffmpegcsp_pad_link):
18449 Fix memleak (#154815).
18451 2004-12-16 James Bowes <bowes@cs.dal.ca>
18453 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18455 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
18456 (gst_musicbrainz_init), (gst_musicbrainz_chain),
18457 (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
18458 * ext/musicbrainz/gsttrm.h:
18459 Add support for using a proxy server when getting a trm id from
18460 the MusicBrainz database (#149613).
18462 2004-12-16 Christophe Fergeau <teuf@gnome.org>
18464 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18466 * gst/playback/gstdecodebin.c: (new_pad), (close_link):
18467 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
18468 Fix memleaks (#157233).
18470 2004-12-16 Sebastien Cote <sc5@hermes.usherb.ca>
18472 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18474 * gst-libs/gst/resample/resample.c: (gst_resample_close):
18475 * gst-libs/gst/resample/resample.h:
18476 * gst/audioscale/gstaudioscale.c:
18477 Fix memleak (#159215).
18479 2004-12-16 Toni Willberg <toniw@iki.fi>
18481 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18483 * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
18484 * sys/oss/oss_probe.c: (main):
18485 Check for mono/stereo support (similar to samplerate probing),
18486 fixes #159433. Also add missing copyright header to oss_probe.c.
18488 2004-12-15 David Schleef <ds@schleef.org>
18490 * configure.ac: add audioresample and cairo plugins. Remove
18491 HAVE_MMX stuff, because it's not used.
18492 * ext/Makefile.am: same
18493 * ext/audioresample/Makefile.am: You are not ready for an
18494 audio resampling element based on audioresample.
18495 * ext/audioresample/gstaudioresample.c:
18496 * ext/audioresample/gstaudioresample.h:
18497 * ext/cairo/Makefile.am: You are not ready for overlay elements
18498 based on cairo. Don't look too closely, these elements kinda
18500 * ext/cairo/gstcairo.c: new
18501 * ext/cairo/gsttextoverlay.c: new
18502 * ext/cairo/gsttextoverlay.h: new
18503 * ext/cairo/gsttimeoverlay.c: new
18504 * ext/cairo/gsttimeoverlay.h: new
18505 * gst-libs/gst/media-info/media-info-priv.h: fix compile
18506 problem with compilers that don't support variadic macros.
18508 2004-12-15 Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
18510 Reviewed by: David Schleef <ds@schleef.org>
18512 * sys/sunaudio/gstsunaudio.c: (plugin_init): Apply patch from
18513 Bala, registering sunaudiosrc (oops!), and cleaning up code a
18514 bit. Also ran indent-gst.
18515 * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
18516 (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
18517 (gst_sunaudiosrc_setparams):
18519 2004-12-14 David Schleef <ds@schleef.org>
18521 * gst/festival/gstfestival.c: (gst_festival_chain): Set the
18522 output rate to 16000. Should fix #160235.
18524 2004-12-14 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18526 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
18527 Add typefinding for mpeg2 pes streams
18529 2004-12-13 David Schleef <ds@schleef.org>
18531 * configure.ac: Applied patch from bug #143659, making default
18532 sources and sinks OS-dependent (for Solaris), and added code
18534 * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
18536 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18538 * gst-libs/gst/riff/riff-media.c:
18539 forgot to add h2.64 to avidemux template caps
18541 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18543 * gst/wavenc/riff.h:
18544 * gst-libs/gst/riff/riff-media.c:
18545 * gst-libs/gst/riff/riff-ids.h:
18546 * gst/avi/gstavimux.c
18547 add 4CC code for VideoSoft h264 in AVI (VSSH)
18549 remove s323 from riff, it's quicktime specific :(
18551 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18553 * gst/asfdemux/README
18554 * gst/wavenc/riff.h
18555 * gst-libs/gst/riff/riff-ids.h
18556 * gst-libs/gst/riff/riff-media.c
18557 * gst/qtdemux/qtdemux.c:
18558 add new 4CC codes for h263 related codecs
18559 fixes partially bug #155163
18561 2004-12-12 Christian Fredrik Kalager Schaller <christian at fluendo dot com>
18563 * configure.ac: Update polyaudio requirement to 0.7
18564 * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
18566 2004-12-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18568 * gst/interleave/deinterleave.c:
18569 fix my name's spelling! :)
18571 2004-12-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18573 * AUTHORS ChangeLog
18574 * gst/auparse/gstauparse.c
18575 * gst/interleave/deinterleave.c
18577 alaw-decode.c alaw-encode.c
18578 mulaw-decode.c mulaw-encode.c
18579 * gst/oneton/gstoneton.c
18581 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
18583 cocoawindow.h cocoawindow.m
18584 osxvideosink.h osxvideosink.m
18586 put the same mail address for Zaheer Abbas Merali everywhere
18588 2004-12-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18590 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
18591 Align by packetsize, and assert that we a packet available before
18592 playing. The first makes webstreams work (they often include
18593 trailing padding data in a packet), the second allows pausing a
18594 ASF stream in totem without getting demux errors afterwards.
18596 2004-12-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18598 * ext/ogg/gstoggdemux.c: (get_relative):
18599 Check for non-NULL before accessing member (end-of-chain).
18601 2004-12-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18603 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
18604 (cdparanoia_set_property), (cdparanoia_get_property):
18605 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
18606 (dvdnavsrc_set_property), (dvdnavsrc_get_property):
18607 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
18608 (dvdreadsrc_init), (dvdreadsrc_set_property),
18609 (dvdreadsrc_get_property):
18610 * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
18611 (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
18612 Synchronize property names where not yet the case. Devices are
18613 now device=X, other versions are deprecated (but still exist).
18614 Also use g_free() unconditionally.
18615 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
18616 (setup_source), (gst_play_base_bin_get_property):
18619 2004-12-09 Thomas Vander Stichele <thomas at apestaart dot org>
18621 * configure.ac: move GCONF macro outside conditional for the am
18622 conditional. Fixes #160439
18624 2004-12-08 David Schleef <ds@schleef.org>
18626 * tools/gst-visualise-m.m: Switch to elements that currently
18629 2004-12-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18631 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
18632 We love wrong commas.
18634 2004-12-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18636 * gst/matroska/matroska-demux.c:
18637 (gst_matroska_demux_handle_src_query):
18638 Don't set DEFAULT, unsupported - makes length display incorrectly
18641 2004-12-07 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18643 * gst/monoscope/README: remove blurb about files being GPL
18644 * gst/monoscope/gstmonoscope.c: Change license field to LGPL
18645 * gst/monoscope/monoscope.c: Change license to BSD with explanation
18646 monoscope is now effectively LGPL licensed
18648 2004-12-07 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18650 * gst/monoscope/README: Update information to be more correct
18651 * gst/monoscope/convolve.c: Relicense to LGPL
18652 * gst/monoscope/convolve.h: Relicense to LGPL
18654 2004-12-06 Arwed v. Merkatz <v.merkatz@gmx.net>
18656 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
18657 set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
18658 * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
18659 set default_duration for mpeg1 audio
18661 2004-12-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
18663 * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
18664 * ext/alsa/gstalsa.h:
18665 refactor big chunks of the core caps negotiation code to make it
18666 a lot faster, because people claim it's really slow
18667 (actually, just cache the getcaps when the device is opened)
18669 2004-12-06 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18671 * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
18672 (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
18673 (gst_a52dec_handle_frame), (gst_a52dec_chain),
18674 (gst_a52dec_change_state), (plugin_init):
18675 * ext/a52dec/gsta52dec.h:
18676 Do something useful with timestamps. Make chain-based (since
18677 there's really no reason to be loopbased).
18678 * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18679 Update current_byte/frame correctly.
18681 2004-12-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18683 * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
18684 (gst_ape_demux_stream_init):
18687 2004-12-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18689 * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
18690 Let's make sure we're done typefinding when detecting tags.
18692 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18694 * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
18695 (gst_ebml_read_init), (gst_ebml_read_use_event),
18696 (gst_ebml_read_element_id), (gst_ebml_peek_id),
18697 (gst_ebml_read_seek), (gst_ebml_read_skip),
18698 (gst_ebml_read_reserve), (gst_ebml_read_buffer),
18699 (gst_ebml_read_master):
18700 * gst/matroska/ebml-read.h:
18701 * gst/matroska/matroska-demux.c:
18702 (gst_matroska_demux_parse_contents),
18703 (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
18704 Disgustingly evil hack for working around INTERRUPT events and
18705 their extremely annoying habit of being a pain in the ass. We
18706 simply peek a cluster before reading any of it.
18708 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18710 * ext/musepack/gstmusepackdec.cpp:
18711 There's also floating point libmusepacks.
18713 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18715 * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
18716 (gst_faad_chanpos_to_gst), (gst_faad_chain):
18717 Set DURATION even if source buffer didn't. Also use increasing
18719 * gst-libs/gst/riff/riff-media.c:
18720 (gst_riff_create_audio_caps_with_data):
18721 Block_align can have larger values than 8192.
18723 2004-12-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18725 * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
18726 * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
18727 * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
18728 * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
18731 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18733 * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
18736 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18738 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
18741 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18743 * ext/esd/esdsink.c: (gst_esdsink_chain):
18744 Make error actually say something useful (fixes #156798).
18745 * gst-libs/gst/riff/riff-media.c:
18746 (gst_riff_create_video_caps_with_data),
18747 (gst_riff_create_video_template_caps):
18748 Add Intel Video 5.0 fourcc (IV50).
18750 2004-12-01 Christophe Fergeau <teuf@gnome.org>
18752 * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
18753 detection on mono and stereo mp3 files.
18755 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18757 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
18758 Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
18759 the contained stream).
18761 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18763 * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
18764 Oops, remove debug.
18766 2004-12-01 Sebastien Cote <sc5@hermes.usherb.ca>
18768 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18770 * gst/law/alaw-decode.c: (alawdec_getcaps):
18771 * gst/law/mulaw-decode.c: (mulawdec_getcaps):
18772 Prevent warnings when negotiating caps (fixes #159338).
18774 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18776 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18777 (gst_ffmpegcsp_chain):
18778 Remove old leftover that shouldn't be there...
18780 2004-12-01 Sebastien Cote <sc5@hermes.usherb.ca>
18782 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18784 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
18785 Don't forward DISCONT events (fixes #159684).
18787 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18789 * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
18790 Unlink manually since sometimes bin disposal (and therefore
18791 pad unlinking) is delayed, which will cause a new media file
18792 to not be able to start playing instantly.
18794 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18796 * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
18797 On mute of an unlinked stream, check for pad availability so
18798 we don't crash on unlinked pad.
18800 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18802 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18803 (gst_avi_demux_massage_index):
18804 Fix quite humiliating bug in omitting 0-sized index chunks but
18805 forgetting to count them for timestamps.
18807 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18809 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18810 Actually leave the loop if we failed to sync. Don't crash.
18812 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18814 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
18815 (gst_dvd_demux_process_private):
18816 * gst/mpegstream/gstdvddemux.h:
18817 Fix crash (#159759). Doesn't work, though. :-(.
18819 2004-11-28 Benjamin Otte <otte@gnome.org>
18821 * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18822 more overwriting protection due to modifying channels one by one
18823 instead of all at once
18825 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18827 * gst/audioconvert/gstchannelmix.c:
18828 (gst_audio_convert_fill_normalize):
18829 Normalize using absolute values.
18831 2004-11-28 Julien MOUTTE <julien@moutte.net>
18835 * ext/directfb/Makefile.am:
18836 * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
18837 (gst_directfbvideosink_get_pixel_format),
18838 (gst_directfbvideosink_get_format_from_fourcc),
18839 (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
18840 (gst_directfbvideosink_sink_link),
18841 (gst_directfbvideosink_change_state),
18842 (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
18843 (gst_directfbvideosink_buffer_alloc),
18844 (gst_directfbvideosink_interface_supported),
18845 (gst_directfbvideosink_interface_init),
18846 (gst_directfbvideosink_navigation_send_event),
18847 (gst_directfbvideosink_navigation_init),
18848 (gst_directfbvideosink_set_property),
18849 (gst_directfbvideosink_get_property),
18850 (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
18851 (gst_directfbvideosink_base_init),
18852 (gst_directfbvideosink_class_init),
18853 (gst_directfbvideosink_get_type), (plugin_init):
18854 * ext/directfb/directfbvideosink.h: Adding a first version of
18856 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
18859 2004-11-28 Benjamin Otte <otte@gnome.org>
18861 * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18862 walk the samples backwards if out_channels > in_channels so we don't
18865 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18867 * gst/audioconvert/Makefile.am:
18868 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
18869 (gst_audio_convert_link), (gst_audio_convert_change_state),
18870 (gst_audio_convert_channels):
18871 * gst/audioconvert/gstchannelmix.c:
18872 (gst_audio_convert_unset_matrix),
18873 (gst_audio_convert_fill_identical),
18874 (gst_audio_convert_fill_compatible),
18875 (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
18876 (gst_audio_convert_fill_others),
18877 (gst_audio_convert_fill_normalize),
18878 (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
18879 (gst_audio_convert_passthrough), (gst_audio_convert_mix):
18880 * gst/audioconvert/gstchannelmix.h:
18881 Implement a channel mixer.
18883 2004-11-28 Martin Soto <martinsoto@users.sourceforge.net>
18885 * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
18886 * ext/alsa/gstalsa.h:
18887 * ext/alsa/gstalsa.c (gst_alsa_set_clock):
18888 Make alsasink actually honor gst_element_set_clock and use that
18889 clock instead of its internal one.
18891 2004-11-27 Christophe Fergeau <teuf@gnome.org>
18893 * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
18894 (gst_play_base_bin_change_state): nullify source and decoder when
18895 going from READY to NULL so that we don't try to do weird stuff with
18896 them when going from NULL to READY
18897 * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
18898 instead of g_object_unref
18899 (gen_video_element), (gen_audio_element): more refcounting fixes, now
18900 it should be correct
18901 (gst_play_bin_change_state): don't call remove_sinks if we are
18902 currently disposing the object
18904 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18906 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18907 Don't forget bass if it's there. Else left channel is silent...
18909 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18911 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
18912 (gst_a52dec_change_state):
18913 Don't do sample adjusting anymore, we use float audio now.
18914 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
18915 Don't fixate to non-existing properties.
18917 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18919 * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
18920 (gst_a52dec_change_state):
18921 Advertise that we can do surround sound.
18923 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18925 * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
18926 Add buffer-frames=0.
18927 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
18928 (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
18929 (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
18930 (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
18931 (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
18932 (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
18933 (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
18934 (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
18935 (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
18936 * ext/dvdread/dvdreadsrc.h:
18937 Add seeking, querying for bytes, sectors, title, angle and
18938 chapter. Handle multiple chapters. Relicense to LGPL because
18939 Billy agreed on that (thanks Billy!).
18941 2004-11-27 Christophe Fergeau <teuf@gnome.org>
18943 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
18944 call parent dispose method
18946 2004-11-27 Martin Soto <martinsoto@users.sourceforge.net>
18948 * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
18949 (gst_audio_clock_get_internal_time):
18950 Fix active <-> inactive transitions: ensure time value always
18951 grows and avoid abrupt value changes.
18953 2004-11-27 Arwed v. Merkatz <v.merkatz@gmx.net>
18956 * gst/tta/Makefile.am:
18958 * gst/tta/filters.h:
18959 * gst/tta/gsttta.c:
18960 * gst/tta/gstttadec.c:
18961 * gst/tta/gstttadec.h:
18962 * gst/tta/gstttaparse.c:
18963 * gst/tta/gstttaparse.h:
18964 * gst/tta/ttadec.h:
18965 added TTA parser and decoder
18967 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18969 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
18970 (probe_triggered), (check_queue), (buffer_underrun),
18971 (buffer_running), (buffer_overrun), (gen_source_element),
18973 * gst/playback/gstplaybasebin.h:
18974 Implement buffering. Needs some more work.
18976 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18978 * ext/theora/theoradec.c: (theora_dec_chain):
18979 Fix ilog mask range overflow.
18981 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18983 * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
18984 Don't omit the last (which in case of dmix is the only :) )
18985 channel count. Don't set channels if <= 2.
18987 2004-11-26 Christophe Fergeau <teuf@gnome.org>
18989 * gst/playback/gstplaybin.c: (gen_video_element),
18990 (gen_audio_element): Removed 2 obsolete comments
18992 2004-11-26 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18994 * ext/vorbis/oggvorbisenc.c
18995 * ext/vorbis/vorbisenc.c :
18996 change description fields of those plugins to differentiate them
18997 (pitivi show Encoders by description, they had the same one)
18999 2004-11-25 Christophe Fergeau <teuf@gnome.org>
19001 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19003 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
19004 (gst_play_bin_set_property), (gen_video_element),
19005 (gen_audio_element):
19006 Refcounting fixes for provided audio-/videosinks.
19008 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19010 * gst/playback/gstplaybin.c: (gen_video_element),
19011 (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
19012 Don't reference all sinks, but only the video- and audiosinks.
19013 The vis. element should be disposed when we're done with it.
19014 We don't have any reason to keep it around. This fixes warnings
19015 when reusing playbin for playing multiple audio files with
19016 vis. enabled. Also release audio device on pause - idea stolen
19019 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19021 * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
19022 (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
19023 * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
19024 * ext/alsa/gstalsaplugin.c: (plugin_init):
19025 * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
19026 (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
19027 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
19028 (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
19029 (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
19030 (gst_faad_change_state), (plugin_init):
19031 * ext/faad/gstfaad.h:
19032 * ext/vorbis/vorbis.c: (plugin_init):
19033 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
19034 * gst-libs/gst/audio/Makefile.am:
19035 * gst-libs/gst/audio/audio.c: (plugin_init):
19036 * gst-libs/gst/audio/multichannel.c:
19037 (gst_audio_check_channel_positions),
19038 (gst_audio_get_channel_positions),
19039 (gst_audio_set_channel_positions),
19040 (gst_audio_set_structure_channel_positions_list),
19041 (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
19042 (gst_audio_fixate_channel_positions):
19043 * gst-libs/gst/audio/multichannel.h:
19044 * gst-libs/gst/audio/testchannels.c: (main):
19045 * gst/audioconvert/gstaudioconvert.c:
19046 (gst_audio_convert_class_init), (gst_audio_convert_init),
19047 (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
19048 (gst_audio_convert_parse_caps), (gst_audio_convert_link),
19049 (gst_audio_convert_fixate), (gst_audio_convert_channels):
19050 * gst/audioconvert/plugin.c: (plugin_init):
19051 Surround sound support.
19053 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19055 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
19056 Fix position for discont if we're close as well. Nitpicking, but
19057 saves a few milliseconds of extra waiting or skipping.
19059 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19061 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
19062 We sometimes need parsers for playback, so add those too.
19064 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19067 * gst/apetag/Makefile.am:
19068 * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
19069 (gst_ape_demux_base_init), (gst_ape_demux_class_init),
19070 (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
19071 (gst_ape_demux_get_src_query_types),
19072 (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
19073 (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
19074 (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
19075 (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
19076 (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
19077 (gst_ape_demux_stream_data), (gst_ape_demux_loop),
19078 (gst_ape_demux_change_state):
19079 * gst/apetag/apedemux.h:
19080 * gst/apetag/apetag.c: (plugin_init):
19081 * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
19083 APE v1/2 tag reader plus typefind function.
19085 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19088 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19089 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
19090 Remove hacks for older core. Require newer core version
19093 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19095 * gst/cdxaparse/Makefile.am:
19096 * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
19097 (gst_cdxaparse_class_init), (gst_cdxaparse_init),
19098 (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
19099 * gst/cdxaparse/gstcdxaparse.h:
19100 * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
19101 (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
19102 (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
19103 (gst_cdxastrip_get_src_query_types),
19104 (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
19105 (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
19106 (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
19107 (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
19108 * gst/cdxaparse/gstcdxastrip.h:
19109 SVCD/VCD header stripping separated from CDXA image parsing.
19110 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
19112 Add VCD/SVCD header typefinding for VCD/SVCD.
19113 * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
19114 (gst_vcdsrc_class_init), (gst_vcdsrc_init),
19115 (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
19116 (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
19117 (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
19118 (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
19119 (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
19120 (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
19121 (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
19122 (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
19123 (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
19124 * sys/vcd/vcdsrc.h:
19125 Fix up, add seeking, querying, URI interface. Works in totem now.
19127 2004-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
19132 === release 0.8.6 ===
19134 2004-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
19152 releasing 0.8.6, "IOU Love"
19154 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19156 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19158 * gst/playback/gstplaybasebin.c:
19159 Fix unplayable files error handling. Fixes #158365
19161 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19163 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19165 * gst/typefind/gsttypefindfunctions.c:
19166 Fix broken mp3 typefinding. Fixes #158375
19168 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19170 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19172 * ext/ogg/gstoggdemux.c:
19173 Fix sync on broken files. Fixes #158976
19175 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19177 patch by: Edward Hervey <bilboed@bilboed.com>
19179 * ext/libpng/gstpngenc.c:
19180 Copy over buffer properties. Fixes #158832
19182 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19184 patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
19186 * ext/dvdread/dvdreadsrc.c:
19187 Fixes invalid reads (#158462)
19189 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19191 * sys/v4l/gstv4lsrc.c:
19192 * sys/v4l/gstv4lsrc.h:
19193 * sys/v4l/v4lsrc_calls.c:
19194 Probe less and cache it. Fixes #159187.
19196 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19198 * gst/videorate/gstvideorate.c:
19199 Handle all video formats. Fixes #159186.
19201 2004-11-16 Jan Schmidt <thaytan@mad.scientist.com>
19202 * gst/synaesthesia/gstsynaesthesia.c:
19203 (gst_synaesthesia_class_init), (gst_synaesthesia_init),
19204 (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
19205 (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
19206 (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
19207 (gst_synaesthesia_change_state), (plugin_init):
19208 Fix up synaesthesia to work under different samplerates/ buffer sizes.
19209 Force 320x200 output, as that's the only thing the underlying
19210 synaesthesia implementation supports. Still needs to be made
19213 2004-11-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19216 Fix mpeg2enc configure check (similar to mplex check below).
19218 2004-11-14 Koop Mast <kwm@rainbow-runner.nl>
19220 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19222 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19223 Fix for gcc-2.95 (fixes #158221).
19225 2004-11-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19227 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19228 Re-add clock distribution hack (until new core is released).
19231 2004-11-13 Arwed v. Merkatz <v.merkatz@gmx.net>
19233 fix mplex configure check segfaulting on some systems (bug #140994)
19235 2004-11-13 Benjamin Otte <otte@gnome.org>
19237 * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
19239 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
19240 do a wait when we enter the loop func with no data available to
19241 write instead of getting into an 100% CPU loop by just returning and
19242 being called again by the scheduler
19244 2004-11-13 Jan Schmidt <thaytan@mad.scientist.com>
19247 * ext/libvisual/visual.c: (gst_visual_get_type),
19248 (libvisual_log_handler), (gst_visual_getcaps),
19249 (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
19251 Update libvisual to 0.1.7. Link in the debug handling to gstreamer
19252 * ext/smoothwave/Makefile.am:
19253 * ext/smoothwave/demo-osssrc.c: (main):
19254 * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
19255 (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
19256 (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
19258 * ext/smoothwave/gstsmoothwave.h:
19259 Make gstsmoothwave a working element in the 20th century.
19261 * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
19262 Fix incorrect link function
19264 2004-11-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19266 * gst/volume/gstvolume.c:
19267 Allow buffer-frames=0.
19269 2004-11-12 Iain <iaingnome@gmail.com>
19271 * configure.ac: Check for polypaudio
19273 * ext/Makefile.am: Build the polyp dir
19275 * ext/polyp: The polypsink sources.
19277 2004-10-30 Iain <iaingnome@gmail.com>
19279 * gst/interleave/interleave.c (interleave_unlink): Change the src pads
19280 caps to reflect the new number of channels.
19282 2004-11-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19284 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
19285 Fix for negotiation order problem. This would show when the
19286 ALSA loopfuction was called before any other function. ALSA
19287 wouldn't do anything because we're not negotiated yet, leading
19288 to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
19290 2004-11-11 Tim-Philipp Müller <t.i.m@zen.co.uk>
19292 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19294 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
19295 No warnings (#157986).
19297 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19299 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
19300 Prefer apev1/2 and id3v1 (at end of file) over musepack.
19302 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19304 * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
19305 Signal no-more-pads (so it works in playbin).
19307 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19309 * ext/musepack/gstmusepackreader.cpp:
19310 Workaround for older core.
19312 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19314 * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
19315 Actually test for odd width/height rather than testing whether
19316 a temporary variable that was 0 before we subtracted 1 is now
19317 not equal to zero (which it always is).
19319 2004-11-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19321 * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
19322 Fix compilation if HAVE_XVIDEO is not defined
19324 2004-11-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19326 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
19327 Fix compilation if HAVE_XVIDEO is not defined
19329 2004-11-11 Jan Schmidt <thaytan@mad.scientist.com>
19331 * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
19332 (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
19333 (gst_goom_change_state), (plugin_init):
19334 Use the bytestream adapter so goom doesn't depend on the input
19336 Add a debug category
19338 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19340 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
19341 Only set hardware parameters *after* negotiation. Before
19342 negotiation, it will set ANY and that seems to cause crashes
19343 (see e.g. #151288, #153227).
19345 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19347 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
19348 This seems to be antique leftover. It needs to pass error
19350 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
19351 (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
19352 (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
19353 (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
19354 Fix GstXOverlay implementation (#151059).
19356 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19358 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
19359 Don't assert (#157853).
19361 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19363 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
19364 Fix bytes/samples confustion.
19365 (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
19366 Fix for underrun (#144389).
19368 2004-11-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19370 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
19371 Disable halfway-seek for pending release (since it needs a new
19374 2004-11-09 Thomas Vander Stichele <thomas at apestaart dot org>
19376 * sys/v4l/gstv4lsrc.c:
19377 * sys/v4l/gstv4lsrc.h:
19378 * sys/v4l/v4lsrc_calls.c:
19379 add autoprobe-fps property so we can separate autoprobing parts
19381 2004-11-09 Thomas Vander Stichele <thomas at apestaart dot org>
19383 * sys/v4l/gstv4lsrc.c:
19384 * sys/v4l/v4lsrc_calls.c:
19385 initialise fourcc to catch unset fourcc's, and debug
19387 2004-11-09 Wim Taymans <wim@fluendo.com>
19389 * gst/playback/README:
19390 * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
19391 * gst/playback/gstplaybin.c: (gst_play_bin_init),
19392 (gst_play_bin_dispose), (gst_play_bin_set_property),
19393 (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
19394 (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
19395 (gst_play_bin_get_formats), (gst_play_bin_convert),
19396 (gst_play_bin_get_query_types), (gst_play_bin_query):
19397 Cleanups and some more documentation.
19399 2004-11-09 Jan Schmidt <thaytan@mad.scientist.com>
19401 * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
19402 (gst_cacasink_init), (gst_cacasink_chain):
19403 * ext/libcaca/gstcacasink.h:
19404 Cacasink inherits from VideoSink, so let that store the clock.
19406 2004-11-09 Wim Taymans <wim@fluendo.com>
19408 * gst/playback/README:
19409 * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
19410 (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
19411 (probe_triggered), (preroll_unlinked), (new_decoded_pad),
19412 (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
19413 * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
19415 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
19416 (gst_stream_info_is_mute), (gst_stream_info_set_property):
19417 * gst/playback/gststreaminfo.h:
19419 Only switch groups if all streams have muted (EOSed).
19420 Send Tags in sync with the stream playback instead of in
19421 the playback/preroll phase.
19422 Some cleanups, free the fakesrc elements.
19424 2004-11-09 Benjamin Otte <in7y118@public.uni-hamburg.de>
19426 * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
19427 buffer-frames property was missing
19428 * ext/arts/gst_arts.c:
19429 rate missing from sinkcaps
19430 * ext/audiofile/gstafparse.c:
19431 * ext/audiofile/gstafsink.c:
19432 * ext/audiofile/gstafsrc.c:
19433 * ext/swfdec/gstswfdec.c:
19434 int audio doesn't know buffer-frames
19435 * ext/cdparanoia/gstcdparanoia.c:
19436 int audio doesn't know chunksize either
19437 * ext/nas/nassink.c:
19438 it's endianness, not endianess
19439 * gst-libs/gst/audio/audio.h:
19440 make float standard pad template caps really describe float
19441 * gst/law/mulaw.c: (linear_factory):
19442 signed only, please
19443 * gst/mpegstream/gstdvddemux.c:
19444 widths of 20 are not valid
19446 2004-11-08 Thomas Vander Stichele <thomas at apestaart dot org>
19448 Submitted by: Luca Ferretti <elle.uca@infinito.it>
19454 2004-11-08 Wim Taymans <wim@fluendo.com>
19456 * gst/playback/README:
19457 * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
19458 * gst/playback/gstplaybasebin.c: (probe_triggered),
19459 (gst_play_base_bin_change_state):
19460 Updated README, added more comments for fixmes etc..
19462 2004-11-08 Wim Taymans <wim@fluendo.com>
19464 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19465 We can remove this hack now.
19467 2004-11-08 Wim Taymans <wim@fluendo.com>
19469 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
19470 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
19471 (gst_videomixer_blend_buffers), (gst_videomixer_loop):
19472 Only mix AYUV for maximum quality.
19474 2004-11-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19476 * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
19477 (gst_ogg_demux_push), (gst_ogg_pad_push):
19478 Let's act as if we're synchronized now! :).
19479 * ext/theora/theoradec.c: (theora_dec_chain):
19482 2004-11-08 Wim Taymans <wim@fluendo.com>
19484 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19485 (gst_alpha_set_property), (gst_alpha_sink_link),
19486 (gst_alpha_set_ayuv), (gst_alpha_set_i420),
19487 (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
19488 (gst_alpha_init_params), (gst_alpha_chain):
19489 Implement alpha functions for AYUV too, this increases
19490 accuracy quite a bit.
19492 2004-11-08 Wim Taymans <wim@fluendo.com>
19494 * gst/ffmpegcolorspace/avcodec.h:
19495 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19496 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
19497 (gst_ffmpegcsp_avpicture_fill):
19498 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19499 (gst_ffmpegcsp_caps_remove_format_info):
19500 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19501 (shrink12), (img_get_alpha_info), (deinterlace_line),
19502 (deinterlace_line_inplace):
19503 * gst/ffmpegcolorspace/imgconvert_template.h:
19504 Added AYUV colorspace and handle RGBA a bit more respectful.
19506 2004-11-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19508 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19509 Actually always send a discont (cornercase when resending the
19510 same serial-tagged chain twice).
19512 2004-11-08 Julien MOUTTE <julien@moutte.net>
19514 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
19515 (gst_ximagesink_finalize):
19516 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
19517 (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
19519 2004-11-08 Wim Taymans <wim@fluendo.com>
19521 * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
19522 Don't segfault on NULL data.
19524 2004-11-08 Wim Taymans <wim@fluendo.com>
19526 * gst/playback/gstdecodebin.c: (unlinked):
19527 * gst/playback/gstplay-marshal.list:
19528 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
19529 (gst_play_base_bin_init), (group_create), (get_active_group),
19530 (get_building_group), (group_destroy), (group_commit),
19531 (queue_overrun), (remove_groups), (add_stream), (unknown_type),
19532 (add_element_stream), (no_more_pads), (probe_triggered),
19533 (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
19534 (state_change), (setup_source), (gst_play_base_bin_get_property),
19535 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
19536 (gst_play_base_bin_link_stream),
19537 (gst_play_base_bin_get_streaminfo):
19538 * gst/playback/gstplaybasebin.h:
19539 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
19540 (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
19541 Add support for chained ogg files. Prepare for playlist
19542 support. This patch introduces the concept of pad groups, which
19543 together compose one playable media file.
19545 2004-11-07 David Schleef <ds@schleef.org>
19547 * testsuite/gst-lint: Check for pad templates that aren't statically
19550 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19554 * ext/musepack/Makefile.am:
19555 * ext/musepack/gstmusepackdec.cpp:
19556 * ext/musepack/gstmusepackdec.h:
19557 * ext/musepack/gstmusepackreader.cpp:
19558 * ext/musepack/gstmusepackreader.h:
19559 Add musepack decoder.
19560 * ext/faad/gstfaad.c: (gst_faad_base_init):
19561 Make pad templates static.
19562 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
19564 Add musepack typefinder, make mp3 typefinding work halfway stream,
19565 which doesn't actually work yet because id3demux doesn't implement
19568 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19570 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
19571 (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
19572 Fix interrupt event handling (#144436).
19574 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19576 * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
19579 2004-11-06 Tim-Philipp Müller <t.i.m@zen.co.uk>
19581 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19583 * ext/vorbis/vorbisenc.c: (raw_caps_factory):
19584 Fix weird caps (#157548).
19586 2004-11-06 Tim-Philipp Müller <t.i.m@zen.co.uk>
19588 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19590 * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
19591 Add missing NULL terminator (#157543).
19593 2004-11-05 Thomas Vander Stichele <thomas at apestaart dot org>
19595 * gst/tcp/gsttcp.h:
19596 * gst/tcp/gsttcpclientsink.c:
19597 * gst/tcp/gsttcpclientsrc.c:
19598 * gst/tcp/gsttcpserversink.c:
19599 * gst/tcp/gsttcpserversrc.c:
19600 ports can go up to 65535. Move common defines to gsttcp.h
19602 2004-11-05 Wim Taymans <wim@fluendo.com>
19604 * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
19605 (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
19606 Added two more colorspaces.
19608 2004-11-05 Wim Taymans <wim@fluendo.com>
19610 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19611 (gst_ffmpegcsp_avpicture_fill):
19612 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19613 (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
19614 (img_convert), (deinterlace_line), (deinterlace_line_inplace):
19617 2004-11-05 Wim Taymans <wim@fluendo.com>
19619 * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
19620 (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
19621 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19622 (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
19623 (gst_videomixer_loop):
19626 2004-11-05 Benjamin Otte <otte@gnome.org>
19628 * ext/mad/gstmad.c: (gst_mad_chain):
19629 don't overflow data buffer. Flush not needed sync data when syncing
19632 2004-11-04 Wim Taymans <wim@fluendo.com>
19634 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19635 (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
19636 (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
19637 (gst_alpha_init_params), (gst_alpha_chain),
19638 (gst_alpha_change_state):
19639 Updated the chroma keying algorithm with something more
19642 2004-11-03 Wim Taymans <wim@fluendo.com>
19644 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19645 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
19646 (gst_videomixer_blend_buffers), (gst_videomixer_loop):
19647 Fix stride issues. Does not completely work for odd
19650 2004-11-03 Wim Taymans <wim@fluendo.com>
19652 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19653 (gst_alpha_chroma_key), (gst_alpha_chain):
19654 Fix stride issues. Does not completely work for odd
19657 2004-11-03 Christophe Fergeau <teuf@gnome.org>
19659 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
19660 * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
19663 2004-11-03 Wim Taymans <wim@fluendo.com>
19665 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19666 (gst_ffmpegcsp_avpicture_fill):
19667 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19669 * gst/ffmpegcolorspace/imgconvert_template.h:
19670 Use correct _fill function to get correct strides.
19672 2004-11-02 David Schleef <ds@schleef.org>
19674 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19675 (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
19676 (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
19677 Change all g_print()s to debugging. Add a bunch of consistency
19680 2004-11-02 Wim Taymans <wim@fluendo.com>
19682 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19683 (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
19684 (unlinked), (no_more_pads), (close_link):
19685 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
19686 (unknown_type), (add_element_stream), (new_decoded_pad),
19687 (removed_decoded_pad), (setup_source):
19688 * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
19689 (gst_stream_info_class_init), (gst_stream_info_init),
19690 (gst_stream_info_new), (gst_stream_info_dispose),
19691 (stream_info_mute_pad), (gst_stream_info_set_property),
19692 (gst_stream_info_get_property):
19693 * gst/playback/gststreaminfo.h:
19694 Fix playback of multiple files.
19695 a slightly different approach to handling dynamic pad removals.
19696 This one only looks at pads that we have linked.
19698 2004-11-01 Christophe Fergeau <teuf@gnome.org>
19700 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
19701 free" warning from libc.
19703 2004-11-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19705 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19706 (get_unconnected_element), (remove_starting_from), (pad_removed),
19708 Implement support for dynamic pad changing. We listen to "live"
19709 pad removals (i.e. while playing) and re-setup autoplugging
19710 after that. Playbasebin/playbin need some more work for this
19711 to finally work, but decodebin supports (and replugs) chained
19714 2004-11-02 Jan Schmidt <thaytan@mad.scientist.com>
19716 * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
19717 (gst_alsa_finalize):
19718 * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
19719 (gst_cdaudio_finalize):
19720 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
19721 (cdparanoia_finalize):
19722 * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
19723 * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
19724 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
19725 (dvdreadsrc_finalize):
19726 * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
19727 (gst_flacdec_finalize):
19728 * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
19729 (gst_flacenc_finalize):
19730 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
19731 (gst_gnomevfssink_finalize):
19732 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
19733 (gst_gnomevfssrc_finalize):
19734 * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
19735 (gst_fameenc_finalize):
19736 * ext/nas/nassink.c: (gst_nassink_class_init),
19737 (gst_nassink_finalize):
19738 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
19739 (gst_sdlvideosink_class_init):
19740 * ext/sndfile/gstsf.c: (gst_sf_dispose):
19741 * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
19742 * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
19743 * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
19744 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
19745 (gst_x_window_listener_dispose):
19746 * gst/audioscale/gstaudioscale.c:
19747 * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
19748 (play_on_demand_finalize):
19749 * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
19750 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
19751 * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
19752 (cdplayer_finalize):
19753 * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
19754 (gst_glimagesink_class_init):
19755 * sys/oss/gstosselement.c: (gst_osselement_class_init),
19756 (gst_osselement_finalize):
19757 * sys/oss/gstosssink.c: (gst_osssink_dispose):
19758 * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
19759 * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
19760 Fixes a bunch of problems with finalize and dispose functions,
19761 either assumptions that dispose is only called once, or not calling
19762 the parent class dispose/finalize function
19764 2004-11-01 Stefan Kost <ensonic@users.sf.net>
19766 * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
19767 added two api precondition guards
19768 use g_strdup with getenv to fix crash when using ENVVAR
19770 2004-11-01 Jan Schmidt <thaytan@mad.scientist.com>
19771 * ext/esd/esdsink.c: (gst_esdsink_class_init),
19772 (gst_esdsink_finalize):
19773 Use a finalize function, not dispose, and more importantly,
19774 call the parent class finalize function too
19776 2004-11-01 Johan Dahlin <johan@gnome.org>
19778 * ext/ogg/gstoggdemux.c:
19779 * gst/tags/gstvorbistag.c:
19782 2004-10-31 Benjamin Otte <otte@gnome.org>
19784 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
19785 lotsa memleaks today. But they're all small...
19787 2004-10-31 Benjamin Otte <otte@gnome.org>
19789 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19790 another memleak crushed
19792 2004-10-31 Benjamin Otte <otte@gnome.org>
19794 * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
19797 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19799 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19800 Hack to prevent crash when going to READY inside signal handler
19801 while this function is active.
19803 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19805 * gst/ffmpegcolorspace/Makefile.am:
19806 * gst/ffmpegcolorspace/avcodec.h:
19807 * gst/ffmpegcolorspace/common.h:
19808 * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
19809 * gst/ffmpegcolorspace/dsputil.h:
19810 * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
19811 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19812 (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
19813 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
19814 (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
19815 (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
19816 (gst_ffmpegcsp_avpicture_fill):
19817 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
19818 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19819 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
19820 (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
19821 (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
19822 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
19823 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
19824 (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
19825 * gst/ffmpegcolorspace/imgconvert.c:
19826 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
19827 (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
19828 (avpicture_get_size), (avcodec_get_pix_fmt_loss),
19829 (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
19830 (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
19831 (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
19832 (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
19833 (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
19834 (img_convert_init), (img_apply_table), (shrink41), (shrink21),
19835 (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
19836 (grow21), (grow22), (grow41), (grow44), (conv411),
19837 (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
19838 (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
19839 (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
19840 (avpicture_free), (is_yuv_planar), (img_convert),
19841 (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
19842 (deinterlace_line_inplace), (deinterlace_bottom_field),
19843 (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
19844 * gst/ffmpegcolorspace/imgconvert_template.h:
19845 * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
19846 * gst/ffmpegcolorspace/mmx.h:
19847 * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
19848 (av_fast_realloc), (av_mallocz_static), (av_free_static),
19849 (av_freep), (avcodec_get_context_defaults),
19850 (avcodec_alloc_context), (avcodec_init):
19851 Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
19852 handling plus update from ffmpeg CVS. Large clean-up.
19854 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19856 * gst/playback/Makefile.am:
19857 We need the marshallers for decodebin, too.
19859 2004-10-30 David Schleef <ds@schleef.org>
19861 * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
19862 quicktime typefinding work with 64-bit offsets.
19864 2004-10-30 Jan Schmidt <thaytan@mad.scientist.com>
19866 * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
19867 Set EOS on the element when processing an EOS event.
19868 * ext/speex/gstspeexdec.h:
19869 * ext/speex/gstspeexenc.h:
19870 Only keep a const ptr to the mode
19871 * gst-libs/gst/riff/riff-media.c:
19872 (gst_riff_create_audio_caps_with_data),
19873 (gst_riff_create_audio_template_caps):
19874 Allow WMAV3, with up to 6 channels.
19875 * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
19876 Don't call gst_pad_set_event_function on a sink pad.
19877 * gst/mpegstream/gstdvddemux.c:
19878 (gst_dvd_demux_get_subpicture_stream),
19879 (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
19880 Copy the explicit caps that were set across to the cur_* pads,
19881 instead of trying to use a possibly non-existent negotiated caps.
19882 Reset the type of subpicture pads to UNKNOWN after calling
19883 init_stream, so that the caps get set.
19885 2004-10-29 Martin Pitt <martin.pitt@canonical.com>
19887 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19889 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
19890 Don't touch buffer if it is of size 0 (fixes #151064).
19892 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19894 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
19895 Synchronized discont handling.
19897 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19899 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
19900 (gst_ogg_demux_push):
19901 Make seeking sort-of exact again (fixes #156387).
19903 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19905 * gst/playback/gstplaybasebin.c: (unknown_type),
19906 (add_element_stream), (new_decoded_pad),
19907 (gst_play_base_bin_change_state):
19908 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
19909 (gst_stream_info_init), (gst_stream_info_new),
19910 (gst_stream_info_dispose), (gst_stream_info_get_property):
19911 * gst/playback/gststreaminfo.h:
19912 Make caps explicitely available. Makes testing for unsupported
19913 types possible. Improves error reporting.
19915 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19917 * gst/audioconvert/gstaudioconvert.c:
19918 (gst_audio_convert_buffer_to_default_format):
19919 Really don't touch read-only buffers (#156563).
19921 2004-10-29 Sebastien Cote <sc5@hermes.usherb.ca>
19923 Reviewd by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19925 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
19926 Fix memleak (#155223).
19928 2004-10-29 Wim Taymans <wim@fluendo.com>
19930 * gst/tcp/.cvsignore:
19931 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
19932 (gst_multifdsink_class_init), (gst_multifdsink_init),
19933 (gst_multifdsink_add), (gst_multifdsink_remove),
19934 (gst_multifdsink_remove_client_link), (is_sync_frame),
19935 (gst_multifdsink_new_client),
19936 (gst_multifdsink_handle_client_write),
19937 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
19938 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
19939 (gst_multifdsink_get_property):
19940 * gst/tcp/gstmultifdsink.h:
19941 Added burst on connect sync_method, deprecated sync_clients,
19942 streamlined the sync code some more.
19944 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19946 * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
19947 (gst_play_base_bin_change_state):
19948 Improve error reporting.
19950 2004-10-28 Wim Taymans <wim@fluendo.com>
19952 * gst/tcp/Makefile.am:
19953 * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
19954 * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
19955 (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
19956 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
19957 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
19958 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
19960 Added more locks around fdset structures. Fixed/reworked
19961 the poll array resizing code.
19962 Added stress test for fdset.
19964 2004-10-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19966 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
19969 2004-10-28 Benjamin Otte <otte@gnome.org>
19971 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
19972 fix link function to always query channels and query width for
19976 * gst/equalizer/Makefile.am:
19977 * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
19978 (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
19979 (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
19980 (arg_to_scale), (setup_filter),
19981 (gst_iir_equalizer_compute_frequencies),
19982 (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
19983 (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
19987 2004-10-27 Thomas Vander Stichele <thomas at apestaart dot org>
19989 Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
19993 Added Norwegian Bokmaal translation
19995 2004-10-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19997 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
19998 Don't break on options (fixes #156488).
20000 2004-10-27 Thomas Vander Stichele <thomas at apestaart dot org>
20003 * ext/cdaudio/Makefile.am:
20005 fix build on older automake
20007 2004-10-26 Wim Taymans <wim@fluendo.com>
20009 * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
20010 (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
20011 Allow a little margin when negotiating the framerate.
20013 2004-10-26 Stefan Kost <ensonic@users.sf.net>
20015 * gst/level/gstlevel.c:
20016 synchonised naming of pads and pad-templates
20018 2004-10-26 Wim Taymans <wim@fluendo.com>
20020 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
20021 (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
20022 (_find_streams_check), (gst_ogg_demux_push):
20023 Fix EOS again. Needs to be done in a better way. We should not
20024 remove the pad if there is no new chained stream.
20026 2004-10-26 Iain <iaingnome@gmail.com>
20028 * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
20029 * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
20031 * gst/interleave/interleave.c (interleave_class_init): Hook up release
20033 (interleave_release_pad): Remove the pad.
20034 * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
20035 * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
20037 * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
20039 (gst_xvimagesink_xcontext_clear): Free the xcontext.
20040 (gst_xvimagesink_finalize): Free the par.
20042 2004-10-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20044 * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
20045 (gst_avimux_stop_file):
20046 First calculate the rate, and only then use it. Hdr.rate is a
20047 multiple and not a derivative of hdr.scale. Scale is not the
20048 same as blockalign but is solely related to rate.
20050 2004-10-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20052 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
20053 (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
20056 2004-10-25 James Henstridge <james@jamesh.id.au>
20058 Reviewed by: David Schleef <ds@schleef.org>
20060 * examples/gstplay/player.c: (got_stream_length), (main):
20061 * examples/seeking/cdplayer.c: (update_scale):
20062 * examples/seeking/seek.c: (format_value), (update_scale):
20063 * examples/seeking/spider_seek.c: (format_value), (update_scale),
20065 Build fixes on AMD64.
20067 2004-10-25 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20069 reviewed by: Ronald Bultje <rbultje at gnome dot org>
20071 * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
20072 Fix for some v4l cards which hang in v4lsrc
20074 2004-10-25 Wim Taymans <wim@fluendo.com>
20076 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
20077 (gst_ogg_demux_push), (gst_ogg_chains_clear):
20078 Make sure to remove the pad when a new chain is
20079 encountered. Set some vars to NULL so we don't try
20080 to reference freed memory.
20082 2004-10-25 Wim Taymans <wim@fluendo.com>
20084 * examples/seeking/Makefile.am:
20085 * examples/seeking/cdplayer.c: (update_scale):
20086 * examples/seeking/chained.c: (unlinked), (new_pad), (main):
20087 * examples/seeking/playbin.c: (make_playerbin_pipeline),
20088 (format_value), (update_scale), (iterate), (start_seek),
20089 (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
20090 (print_usage), (main):
20091 Added some more examples, update others.
20093 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20095 * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
20096 * ext/speex/gstspeexdec.c: (speex_dec_chain):
20097 * ext/theora/theoradec.c: (theora_dec_chain):
20098 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
20099 Add codec-name metadata.
20101 2004-10-25 Takao Fujiwara <Takao.Fujiwara@Sun.COM>
20103 Reviewd by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20105 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
20106 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
20107 * ext/alsa/gstalsamixertrack.h:
20109 ALSA mixer track label internationalization (#154054).
20111 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20113 * ext/theora/theoradec.c: (theora_dec_chain):
20114 Export bitrate as metadata.
20116 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20118 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
20119 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
20120 * ext/alsa/gstalsamixertrack.h:
20121 Fix names, fix loop.
20123 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20125 * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
20126 (speex_dec_convert):
20127 sinkconvert function so oggdemux can get the file length (totem).
20129 2004-10-25 James Morrison <ja2morri@csclub.uwaterloo.ca>
20131 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20133 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
20134 Don't push incomplete packets.
20135 * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
20136 Fix MPEG-4 audio typefinding.
20138 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20140 * sys/v4l/Makefile.am:
20141 * sys/v4l/gstv4l.c: (plugin_init):
20142 * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
20143 (gst_v4lelement_init), (gst_v4lelement_dispose),
20144 (gst_v4lelement_change_state):
20145 * sys/v4l/gstv4lelement.h:
20146 * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
20147 (gst_v4l_xoverlay_close), (idle_refresh),
20148 (gst_v4l_xoverlay_set_xwindow_id):
20149 * sys/v4l/gstv4lxoverlay.h:
20150 * sys/v4l/v4l-overlay_calls.c:
20151 * sys/v4l/v4l_calls.h:
20152 * sys/v4l2/Makefile.am:
20153 * sys/v4l2/gstv4l2.c: (plugin_init):
20154 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
20155 (gst_v4l2element_init), (gst_v4l2element_dispose),
20156 (gst_v4l2element_change_state):
20157 * sys/v4l2/gstv4l2element.h:
20158 * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
20159 (gst_v4l2_xoverlay_close), (idle_refresh),
20160 (gst_v4l2_xoverlay_set_xwindow_id):
20161 * sys/v4l2/gstv4l2xoverlay.h:
20162 * sys/v4l2/v4l2-overlay_calls.c:
20163 * sys/v4l2/v4l2_calls.h:
20164 Remove client-side overlay handling, use the X-server v4l plugin
20165 for that. Nicer overlay, less code. Also make the plugin
20166 compileable without X (but then without overlay, obviously).
20167 Makes xwindowlistener obsolete, should we remove that?
20169 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20171 * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
20172 (gst_osssrc_src_query):
20173 * sys/oss/gstosssrc.h:
20174 OK, so people want offset in DEFAULT. This time, actually fix all
20176 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
20179 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20181 * gst/asfdemux/gstasfmux.c:
20182 * gst/avi/gstavimux.c:
20185 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20187 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
20188 Fix properties (channel, norm, frequency).
20190 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20192 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
20194 * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
20197 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20199 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
20202 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20204 * sys/v4l2/gstv4l2element.h:
20205 Yet Another Hack (tm) for kernel header borkedness.
20206 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
20207 (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
20208 (gst_v4l2src_link), (gst_v4l2src_getcaps),
20209 (gst_v4l2src_change_state):
20210 * sys/v4l2/gstv4l2src.h:
20211 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
20212 (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
20213 Fix caps, keep track of state, work.
20215 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20217 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
20220 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20222 * sys/oss/gstosssrc.c: (gst_osssrc_get):
20223 Don't mix bytes and samples.
20225 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20227 * ext/ogg/gstoggmux.c:
20228 Basic pad template which accepts OGM tracks, speex, flac, vorbis
20229 and theora. Any is incorrect.
20230 * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
20232 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
20233 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
20234 (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
20235 (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
20236 * sys/v4l/gstv4lmjpegsrc.h:
20237 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
20238 (gst_v4lsrc_change_state):
20239 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
20240 (gst_v4lmjpegsrc_capture_stop):
20241 Fix caps. Keep track of internal state. Work.
20243 2004-10-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20246 Fix the build fixes.
20248 2004-10-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20250 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20251 (gst_ogg_demux_src_event), (_find_chain_seek),
20252 (gst_ogg_pad_push):
20253 Check for pad availability before using it.
20254 * ext/ogg/gstoggdemux.c: (_find_chain_process):
20255 Fix parsing of chained ogg. Needs more work on the decoder side.
20257 2004-10-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
20259 * gst/spectrum/Makefile.am:
20260 * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
20262 Fix demo and reenable it. Yes, I'm currently playing with audio
20265 2004-10-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20267 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
20268 We love it if files that start at zero work too...
20270 2004-10-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20272 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20273 Handle files with missing EOS headers.
20275 2004-10-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20277 * gst/tcp/gsttcpserversink.c:
20278 (gst_tcpserversink_handle_server_read),
20279 (gst_tcpserversink_init_send):
20280 Zero some variables first (need for accept not to return EINVAL)
20282 2004-10-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20284 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20285 (gst_ogg_demux_src_event), (gst_ogg_pad_push):
20286 * ext/theora/theoradec.c: (theora_dec_sink_convert),
20287 (theora_dec_chain):
20288 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
20289 (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
20290 Seeking and querying finetune.
20292 2004-10-20 Thomas Vander Stichele <thomas at apestaart dot org>
20296 * ext/raw1394/Makefile.am:
20299 2004-10-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20301 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20303 * gst/playback/Makefile.am:
20304 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
20305 * gst/playback/gstplay-marshal.list:
20306 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
20309 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20311 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
20314 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20316 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20317 (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
20318 (gst_ogg_pad_push):
20319 Yay for non-lineair granulepos in theora.
20321 2004-10-18 Wim Taymans <wim@fluendo.com>
20323 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
20324 (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
20325 * ext/dv/gstdvdec.h:
20326 Make sure we renegotiate aspect ratio when the camera switches.
20328 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20330 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20331 (gst_ogg_demux_src_event), (gst_ogg_pad_push):
20333 * ext/theora/theoradec.c: (theora_dec_chain):
20334 Skip headers. Bad idea for chained ogg, but fixes seeking.
20336 2004-10-18 Wim Taymans <wim@fluendo.com>
20339 I swear, this is the last time I touch this.
20341 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20343 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20344 (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
20345 (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
20347 * ext/theora/theoradec.c: (theora_dec_sink_convert):
20348 Time-to-default conversion.
20349 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
20350 Don't error on unknown packets, just skip. We should probably
20351 read them if we want to support chained ogg.
20353 2004-10-18 Wim Taymans <wim@fluendo.com>
20356 Added cdaudio to wrong list.
20358 2004-10-18 Wim Taymans <wim@fluendo.com>
20363 2004-10-18 Wim Taymans <wim@fluendo.com>
20365 * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
20366 (gst_dvdec_video_link), (gst_dvdec_push):
20367 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
20368 (gst_smokeenc_resync), (gst_smokeenc_chain):
20369 Fix mimetype on smoke encoder.
20370 Add aspect ratio to dvdec. Not sure if these
20371 values are correct though....
20373 2004-10-18 Wim Taymans <wim@fluendo.com>
20375 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
20376 Fix vorbis property descriptions and ranges.
20378 2004-10-18 Wim Taymans <wim@fluendo.com>
20380 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20381 Really do nothing when no data is available.
20382 Go to the playing state when the stream is not seekable
20383 instead of failing.
20385 2004-10-18 Wim Taymans <wim@fluendo.com>
20387 * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
20388 (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
20389 (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
20390 (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
20391 (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
20392 Added uri handler for cd://
20395 2004-10-18 Wim Taymans <wim@fluendo.com>
20397 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20398 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20399 (try_to_link_1), (no_more_pads), (close_link), (type_found):
20400 * gst/playback/gstplaybasebin.c: (gen_preroll_element),
20401 (remove_prerolls), (unknown_type), (add_element_stream),
20402 (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
20403 (gst_play_base_bin_remove_element),
20404 (gst_play_base_bin_link_stream):
20405 * gst/playback/gstplaybin.c: (gen_video_element),
20406 (gen_vis_element), (remove_sinks), (setup_sinks):
20407 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
20408 (gst_stream_info_get_type), (gst_stream_info_class_init),
20409 (gst_stream_info_init), (gst_stream_info_new),
20410 (gst_stream_info_dispose), (stream_info_mute_pad),
20411 (gst_stream_info_set_property), (gst_stream_info_get_property):
20412 * gst/playback/gststreaminfo.h:
20413 Add sink padtemplate to decodebin.
20414 Added some more comments.
20415 Make queue size configurable in playbasebin.
20416 Added possibility to use elements as sinks (ex cdaudio).
20418 2004-10-15 Wim Taymans <wim@fluendo.com>
20420 * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
20421 (gst_speexenc_chain):
20422 Fix speex timestamps so that it gets muxed properly.
20424 2004-10-15 Wim Taymans <wim@fluendo.com>
20426 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
20427 (gst_dv1394src_base_init), (gst_dv1394src_class_init),
20428 (gst_dv1394src_init), (gst_dv1394src_dispose),
20429 (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
20430 (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
20431 (gst_dv1394src_event), (gst_dv1394src_get_formats),
20432 (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
20433 (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
20434 (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
20435 (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
20436 * ext/raw1394/gstdv1394src.h:
20437 Added conversion/query functions.
20438 Update buffer timestamps,
20440 Added uri dv:// so it might play from the firewire in playbin.
20441 Fix a possible leak.
20444 2004-10-15 Wim Taymans <wim@fluendo.com>
20446 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
20447 (gst_dv1394src_init), (gst_dv1394src_set_property),
20448 (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
20449 (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
20450 * ext/raw1394/gstdv1394src.h:
20451 Added AV/C VTR control support needed for some cameras.
20452 Added automatic port detection.
20453 Added properties for selecting the channel.
20454 The configure.ac script is not yet updated to reflect the
20455 new libavc1394 and librom1394 dependencies.
20457 2004-10-15 Wim Taymans <wim@fluendo.com>
20459 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
20460 (qtdemux_parse), (gst_qtdemux_handle_esds):
20461 An esds box is not a container.
20462 Fix parsing of mp4v boxes.
20463 Do not try to renegotiate fps for each frame. Need to
20464 find a better method. This should fix mp4 playback.
20466 2004-10-14 David Schleef <ds@schleef.org>
20468 * configure.ac: update for swfdec-0.3 and liboil-0.2
20469 * ext/swfdec/gstswfdec.c: update for swfdec-0.3
20470 * ext/swfdec/gstswfdec.h: same
20471 * gst/videofilter/gstvideobalance.c: update for liboil-0.2
20472 * gst/videotestsrc/videotestsrc.c: same
20474 2004-10-14 Wim Taymans <wim@fluendo.com>
20476 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
20477 (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
20478 (is_sync_frame), (gst_multifdsink_new_client),
20479 (gst_multifdsink_handle_client_write),
20480 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
20481 (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
20482 Turn warnings into info.
20483 Don't allow a state change in the streaming thread.
20485 2004-10-14 Thomas Vander Stichele <thomas at apestaart dot org>
20487 * ext/vorbis/oggvorbisenc.c:
20488 * ext/vorbis/vorbisdec.c:
20489 fix template sample rate
20491 2004-10-13 Wim Taymans <wim@fluendo.com>
20493 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
20494 Decoding the header first fixes some problems in resyncing
20497 2004-10-12 Wim Taymans <wim@fluendo.com>
20499 * gst/playback/gstplaybin.c: (gen_video_element),
20500 (gen_vis_element), (remove_sinks), (setup_sinks):
20501 Added vis plugin support, need to configure the vis
20502 element to activate it.
20504 2004-10-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20506 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
20507 (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
20509 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
20510 (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
20511 (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
20512 (gst_avi_demux_stream_index), (gst_avi_demux_skip),
20513 (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
20514 (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
20515 * gst/avi/gstavidemux.h:
20516 Support for openDML-2.0 indx/ix## chunks. Support for broken index
20517 recovery (where, if part of the index is broken, we will still read
20518 the rest of the index and recover the broken part by stream
20519 scanning). More broken media support. EOS workarounds. General AVI
20520 braindamage headache recovery. Aspirin included.
20522 2004-10-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20524 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
20525 (cdparanoia_event), (cdparanoia_query):
20526 Get rid of hideous lead-in.
20528 2004-10-11 Wim Taymans <wim@fluendo.com>
20530 * gst/playback/gstplaybasebin.c: (setup_source):
20531 Wrong var used to get g_list_next.
20533 2004-10-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20535 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
20536 (cdparanoia_get), (cdparanoia_open):
20537 Report discid as metadata, add duration.
20539 2004-10-11 Wim Taymans <wim@fluendo.com>
20541 * gst/playback/gstplaybasebin.c: (setup_source):
20542 Cleanup the previous pipeline a little earlier for the
20543 case that a source element provides raw data.
20545 2004-10-11 Benjamin Otte <otte@gnome.org>
20547 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
20548 reset v1 tag offset when there is no v1 tag. Fixes id3demux always
20549 consuming the last 128 bytes, even though it was valid mp3 data.
20551 2004-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20553 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
20554 (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
20555 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
20556 Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
20558 2004-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20560 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
20561 Fix for webcams that support only specific width or height
20563 2004-10-09 Tim-Philipp Müller <t.i.m@zen.co.uk>
20565 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20567 * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
20568 Fix wrong discont event setup (fixes #154967).
20570 2004-10-09 Sebastien Cote <sc5@hermes.usherb.ca>
20572 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20574 * gst/auparse/gstauparse.c: (gst_auparse_chain):
20575 Error out on invalid data (fixes #154807).
20577 2004-10-09 Tim-Philipp Müller <t.i.m@zen.co.uk>
20579 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20581 * ext/dvdread/dvdreadsrc.c: (_read):
20582 Make titles > 0 work again (fixes #154834).
20584 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20586 * gst-libs/gst/riff/riff-media.c:
20587 (gst_riff_create_video_template_caps):
20588 WMV3 missing in template caps.
20590 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20592 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20593 OK, so the original code was too strict. It makes random AVI files
20594 hang for seconds upon opening, which is unacceptable and is far
20595 beyond the original goal of getting multiple chunks for one-chunk
20596 sounc stream files. So now do just that.
20598 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20600 * gst/playback/gstplaybasebin.c: (setup_source),
20601 (gst_play_base_bin_change_state):
20602 Actually clean up streaminfo if output fails. This would trigger
20603 if, for example, there was no CD in the drive. No preroll, so
20604 a streaminfo structure is created, but the subsequent state change
20605 of the thread fails.
20606 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
20607 Don't change state if parent failed.
20609 2004-10-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20611 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
20612 (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
20613 (gen_video_element), (remove_sinks):
20614 Add small bits of code for screenshot handling.
20616 2004-10-08 Wim Taymans <wim@fluendo.com>
20618 * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
20619 (gen_video_element), (gen_audio_element), (setup_sinks):
20620 Don't assume the user provided sinks are named "sink"...
20622 2004-10-08 Wim Taymans <wim@fluendo.com>
20624 * gst/playback/gstplaybasebin.c: (gen_preroll_element),
20625 (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
20626 (gst_play_base_bin_link_stream):
20627 Do not try to autoplug sources that generate raw streams like
20629 disconnect the preroll overrun signal when we don't need it anymore.
20631 2004-10-08 Milosz Derezynski <internalerror.rez@fhtw-berlin.de>
20633 * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20634 Added reworked patch from #154903 from milosz derezynski (deadchip).
20636 2004-10-08 Wim Taymans <wim@fluendo.com>
20638 * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20639 (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
20640 (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
20641 (cdparanoia_convert), (cdparanoia_uri_get_type),
20642 (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
20643 (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
20644 * ext/cdparanoia/gstcdparanoia.h:
20645 This adds the cdda://<tracknum> uri.
20647 2004-10-08 Wim Taymans <wim@fluendo.com>
20649 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20650 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20651 (try_to_link_1), (no_more_pads), (close_link), (type_found):
20652 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
20653 (unknown_type), (gst_play_base_bin_remove_element),
20654 (gst_play_base_bin_link_stream):
20655 * gst/playback/gstplaybasebin.h:
20656 * gst/playback/gstplaybin.c: (gst_play_bin_init),
20657 (gst_play_bin_set_property), (gen_video_element),
20658 (gen_audio_element), (setup_sinks):
20659 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
20660 (gst_stream_info_get_type), (gst_stream_info_class_init),
20661 (gst_stream_info_init), (gst_stream_info_new),
20662 (gst_stream_info_dispose), (stream_info_mute_pad),
20663 (gst_stream_info_set_property), (gst_stream_info_get_property):
20664 * gst/playback/gststreaminfo.h:
20665 Reuse the audio and video bins.
20666 Some internal cleanups in the stream selection code.
20668 2004-10-08 Julien MOUTTE <julien@moutte.net>
20670 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20671 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20672 * sys/ximage/ximagesink.h:
20673 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20674 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20675 * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
20676 not coming from those elements. Moreover these elements should not keep
20677 the xid they have been given when in NULL state.
20679 2004-10-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20681 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20682 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20683 * sys/ximage/ximagesink.h:
20684 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20685 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20686 * sys/xvimage/xvimagesink.h:
20687 Actually only create a new toplevel window if we're not gonna
20688 embed it right after.
20690 2004-10-07 Wim Taymans <wim@fluendo.com>
20692 * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
20693 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
20694 * gst/playback/gstplaybin.c: (setup_sinks):
20695 Implement muting/unmuting of streams, mute streams that are not
20698 2004-10-07 Wim Taymans <wim@fluendo.com>
20700 * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
20702 Added lame audio/x-ac3 typefind function.
20704 2004-10-06 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
20709 === release 0.8.5 ===
20711 2004-10-06 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
20716 releasing 0.8.5, "Take You On"
20718 2004-10-06 Wim Taymans <wim@fluendo.com>
20720 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20721 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
20722 (no_more_pads), (close_link), (type_found):
20723 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20724 * gst/playback/gstplaybin.c: (gen_video_element):
20725 Do not signal the no_more_pads after the first pad when
20726 we are plugging a non dynamic element with multiple
20727 output pads (like swfdec, dvdec, ...).
20729 2004-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
20732 bump for prerelease
20734 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20736 * gst/wavparse/gstwavparse.c:
20737 add ATRAC3 to STATIC CAPS to fix a warning
20739 * gst/matroska/ebml-read.c:
20740 * gst-libs/gst/riff/riff-read.c:
20743 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20745 * gst-libs/gst/riff/riff-media.c:
20746 generate caps for ATRAC3 audio streams
20748 * gst/realmedia/rmdemux.c:
20749 generate caps for ATRAC3 audio streams
20751 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20753 * gst/wavparse/Makefile.am
20754 * gst/wavparse/riff.h
20755 * gst/wavparse/wavparse.vcproj
20756 riff.h removal (unused and duplication with riff-ids.h)
20758 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20760 * gst/wavparse/gstwavparse.h
20761 remove duplicated defines for audio codec codes
20763 * gst-libs/gst/riff/riff-ids.h
20764 * gst/wavenc/riff.h:
20765 add "4CC" code for ATRAC3 audio streams
20766 add "4CC" code for ITU_G721_ADPCM (unused for now)
20768 2004-10-06 Wim Taymans <wim@fluendo.com>
20770 * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
20771 Actually _do_ negotiation. Pass gdouble as arg instead
20772 of guint64 for the framerate.
20774 2004-10-06 Wim Taymans <wim@fluendo.com>
20776 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20777 (find_compatibles), (close_pad_link), (try_to_link_1),
20778 (no_more_pads), (close_link), (type_found):
20779 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20780 * gst/playback/gstplaybin.c: (gen_video_element),
20781 (gen_audio_element):
20782 Set state on newly added element to READY so that negotiation
20784 Addes some more debug info.
20785 Do not try to plug pads with multiple caps structures or ANY
20786 because it is too dangerous since we do not do dynamic
20789 2004-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
20791 written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
20795 add Oriya translation
20797 2004-10-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20799 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20800 Prevent overwrite of size member. Makes audio sound crappy.
20802 2004-10-05 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20804 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
20805 Add rmvb to the list of known RealMedia extensions
20807 2004-10-05 Wim Taymans <wim@fluendo.com>
20809 * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
20810 (mngdec_openstream), (mngdec_closestream),
20811 (mngdec_handle_sink_event), (mngdec_readdata),
20812 (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
20813 (mngdec_getcanvasline), (mngdec_refresh),
20814 (gst_mngdec_change_state):
20815 Set the framerate correctly.
20817 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20819 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20820 There was something wrong with the index massaging.
20822 2004-10-04 Wim Taymans <wim@fluendo.com>
20824 * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
20825 * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
20826 (gst_smokedec_chain):
20827 * ext/jpeg/gstsmokedec.h:
20828 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
20829 (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
20830 * ext/jpeg/gstsmokeenc.h:
20831 * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
20832 (smokecodec_decode_new), (smokecodec_info_free),
20833 (smokecodec_set_quality), (smokecodec_get_quality),
20834 (smokecodec_set_threshold), (smokecodec_get_threshold),
20835 (smokecodec_set_bitrate), (smokecodec_get_bitrate),
20836 (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
20837 (smokecodec_encode), (smokecodec_parse_id),
20838 (smokecodec_parse_header), (smokecodec_decode):
20839 * ext/jpeg/smokecodec.h:
20840 * ext/jpeg/smokeformat.h:
20841 Updated smoke, new bitstream, allows embedding in ogg.
20843 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20845 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
20846 Fix seeking in some files. All this code is no longer needed (and
20847 actually breaks stuff) because we now synchronize the full index
20848 right when reading the header.
20850 2004-10-04 Wim Taymans <wim@fluendo.com>
20853 configure update for libmng.
20855 2004-10-04 Wim Taymans <wim@fluendo.com>
20857 * ext/libmng/Makefile.am:
20858 * ext/libmng/gstmng.c: (plugin_init):
20859 * ext/libmng/gstmng.h:
20860 * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
20861 (gst_mngdec_base_init), (gst_mngdec_class_init),
20862 (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
20863 (gst_mngdec_loop), (gst_mngdec_get_property),
20864 (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
20865 (mngdec_closestream), (mngdec_handle_sink_event),
20866 (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
20867 (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
20868 (gst_mngdec_change_state):
20869 * ext/libmng/gstmngdec.h:
20870 * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
20871 (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
20872 (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
20873 (gst_mngenc_chain), (gst_mngenc_get_property),
20874 (gst_mngenc_set_property):
20875 * ext/libmng/gstmngenc.h:
20876 Added basic MNG decoder. Needs more work. The encoder does
20879 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20881 * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
20882 (gst_rmdemux_loop), (gst_rmdemux_add_stream),
20883 (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
20884 Don't hang on length=0 chunks. Some negotiation fixes. Signal
20887 2004-10-04 Thomas Vander Stichele <thomas at apestaart dot org>
20890 you need at least 1.0.4 of speex
20892 2004-10-04 Iain <iaingnome@gmail.com>
20894 * ext/speex/gstspeexdec.h: Revert the includes changes.
20896 * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
20898 2004-09-30 Iain <iaingnome@gmail.com>
20900 * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
20901 found during init or set as a property instead of hardcoding /dev/audio
20903 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20905 * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
20906 (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
20907 (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
20908 (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
20909 (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
20910 (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
20911 (gst_rmdemux_dump_data):
20912 Use debug category, fix EOS handling. filesrc ! rmdemux now
20915 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20917 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
20918 (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
20919 (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
20920 Improve allocation, cutting and sorting of the index. How takes a
20921 few seconds instead of minutes.
20923 2004-10-03 Christophe Fergeau <teuf@gnome.org>
20925 * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
20928 2004-10-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20930 * gst-libs/gst/riff/riff-media.c:
20931 (gst_riff_create_video_caps_with_data),
20932 (gst_riff_create_video_template_caps):
20933 Add wing commander format mimetype/fourccs.
20934 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20935 Don't crash if some value is 0.
20937 2004-10-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20939 * gst-libs/gst/riff/riff-media.c:
20940 (gst_riff_create_video_caps_with_data),
20941 (gst_riff_create_video_template_caps):
20942 Add DIB fourcc (raw, palettized 8-bit RGB).
20943 * gst-libs/gst/riff/riff-read.c:
20944 (gst_riff_read_strf_vids_with_data):
20945 Oops, fix strf_data reading bug.
20946 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
20947 Use a non-NULL tag.
20948 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
20949 Time for hacks. Sorry Dave. At least one quicktime movie (a
20950 trailer) that I've encountered contains multiple video tracks.
20951 One of those is the actual video track, the other are one-frame
20952 tracks (images). Unfortunately, the number of frames according
20953 to the trak header is 1 for each, so that doesn't help. So
20954 instead, I look at the duration and discard tracks with a
20955 duration shorter than 20% of the length of the stream. Better
20958 2004-10-01 Christian Schaller <christian@fluendo.com>
20960 * ext/ivorbis/vorbis.c:
20961 Patch from Phil Blundell (Bug 152341)
20963 2004-10-01 Wim Taymans <wim@fluendo.com>
20965 * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
20966 (speex_dec_get_formats), (speex_dec_convert),
20967 (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
20968 (speex_dec_chain), (gst_speexdec_get_property),
20969 (gst_speexdec_set_property):
20972 2004-10-01 Wim Taymans <wim@fluendo.com>
20974 * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
20975 (gst_wavparse_stream_init), (gst_wavparse_fmt),
20976 (gst_wavparse_other), (gst_wavparse_loop),
20977 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
20978 (gst_wavparse_srcpad_event):
20979 * gst/wavparse/gstwavparse.h:
20980 Added some more debugging info.
20981 Fix the case where the length of the file is 0.
20982 Make sure we seek to sample borders.
20984 2004-10-01 Wim Taymans <wim@fluendo.com>
20986 * gst/playback/README:
20987 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
20988 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20989 (try_to_link_1), (no_more_pads), (close_link), (type_found):
20990 Add some debug info to decodebin, update README
20992 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20994 * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
20995 Don't use g_print(); use GST_DEBUG().
20997 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20999 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21000 (gst_ogg_mux_queue_pads):
21001 Handle EOS properly.
21003 2004-10-01 Sebastien Cote <sc5@hermes.usherb.ca>
21005 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21007 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
21008 (gst_faad_chain), (gst_faad_change_state):
21009 * ext/faad/gstfaad.h:
21010 Allow playback of raw (unframed) MPEG AAC files (#148993).
21012 2004-10-01 Sebastien Cote <sc5@hermes.usherb.ca>
21014 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21016 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
21017 Throw error if we didn't recognize the stream. Fixes #152289.
21019 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21021 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
21024 2004-10-01 Francis Labonte <francis_labonte@hotmail.com>
21026 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21028 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
21031 2004-10-01 Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
21033 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21035 * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
21037 * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
21040 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21042 * gst-libs/gst/riff/riff-media.c:
21043 (gst_riff_create_video_caps_with_data),
21044 (gst_riff_create_audio_caps_with_data):
21045 Add codec_data handling (like asfdemux used to do).
21046 * gst/asfdemux/gstasf.c: (plugin_init):
21047 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
21048 (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
21049 Use riff-media for caps creation instead of our own (mostly
21050 broken) copy of its functions.
21052 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21054 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
21055 Don't actually error out if we get another return value than
21056 -EINVAL. Opposite to what I first thought, drivers have random
21057 return values for this, although -EINVAL is the expected return
21058 value. Since this is not fatal, we shouldn't use
21059 GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
21061 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21063 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
21064 (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
21065 (dvdreadsrc_get_property), (_open), (_seek), (_read),
21066 (dvdreadsrc_get), (dvdreadsrc_open_file),
21067 (dvdreadsrc_change_state):
21068 Fix. Don't do one big huge loop around the whole DVD, that will
21069 cache all data and thus eat sizeof(dvd) (several GB) before we
21071 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
21072 Actually NULL'ify event after using it.
21073 * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
21074 (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
21075 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
21076 (gst_ebml_read_seek), (gst_ebml_read_skip):
21078 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
21079 (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
21080 (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
21081 Fix timing (this will probably break if I seek using menus, but
21082 I didn't get there yet). VOBs and normal DVDs should now work.
21083 Add a mpeg2-only pad with high rank so this get autoplugged for
21085 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
21086 (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
21087 (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
21088 (gst_mpeg_demux_get_audio_stream),
21089 (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
21090 (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
21091 Use this as second rank for MPEG-1 and MPEG-2. Still use this for
21092 MPEG-1 but use dvddemux for MPEG-2.
21093 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
21094 (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
21095 (gst_mpeg_parse_parse_packhead):
21096 Timing. Only add pad template if it exists. Add sink template from
21097 class and not from ourselves. This means we will always use the
21098 correct sink template even if it is not the one defined in this
21101 2004-09-29 Wim Taymans <wim@fluendo.com>
21103 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
21104 (gst_mpeg_demux_parse_pes):
21105 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
21106 Fix playback of mpeg again, timestamps where screwed up by
21109 2004-09-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21111 * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
21112 Only return true if we actually filled something in. Prevents
21113 player applications from showing a random length for flac files.
21114 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
21115 (gst_riff_read_use_event), (gst_riff_read_handle_event),
21116 (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
21117 (gst_riff_read_strf_vids_with_data),
21118 (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
21119 OK, ok, so I implemented event handling. Apparently it's normal
21120 that we receive random events at random points without asking
21122 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
21123 (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
21124 (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
21125 (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
21126 (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
21127 (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
21128 (gst_avi_demux_stream_data), (gst_avi_demux_loop):
21129 * gst/avi/gstavidemux.h:
21130 Implement non-lineair chunk handling and subchunk processing.
21131 The first solves playback of AVI files where the audio and video
21132 data of individual buffers that we read are not synchronized.
21133 This should not happen according to the wonderful AVI specs, but
21134 of course it does happen in reality. It is also a prerequisite for
21135 the second. Subchunk processing allows us to cut chunks in small
21136 pieces and process each of these pieces separately. This is
21137 required because I've seen several AVI files with incredibly large
21138 audio chunks, even some files with only one audio chunk for the
21139 whole file. This allows for proper playback including seeking.
21140 This patch is supposed to fix all AVI A/V sync issues.
21141 * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
21142 (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
21144 * gst/modplug/gstmodplug.cc:
21145 Proper return value setting for the query() function.
21146 * gst/playback/gstplaybasebin.c: (setup_source):
21147 Being in non-playing state (after, e.g., EOS) is not necessarily
21148 a bad thing. Allow for that. This fixes playback of short files.
21149 They don't actually playback fully now, because the clock already
21150 runs. This means that small files (<500kB) with a small length
21151 (<2sec) will still not or barely play. Other files, such as mod
21152 or flx, will work correctly, however.
21154 2004-09-28 Wim Taymans <wim@fluendo.com>
21156 * ext/speex/gstspeex.c: (plugin_init):
21157 * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
21158 (gst_speex_dec_class_init), (speex_dec_get_formats),
21159 (speex_get_event_masks), (speex_get_query_types),
21160 (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
21161 (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
21162 (gst_speexdec_get_property), (gst_speexdec_set_property),
21163 (speex_dec_change_state):
21164 * ext/speex/gstspeexdec.h:
21165 * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
21166 (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
21167 (gst_speexenc_base_init), (gst_speexenc_class_init),
21168 (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
21169 (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
21170 (gst_speexenc_src_query), (gst_speexenc_init),
21171 (gst_speexenc_get_tag_value), (comment_init), (comment_add),
21172 (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
21173 (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
21174 (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
21175 (gst_speexenc_chain), (gst_speexenc_get_property),
21176 (gst_speexenc_set_property), (gst_speexenc_change_state):
21177 * ext/speex/gstspeexenc.h:
21178 Rewrote speex encoder, make sure it can be embedded in ogg.
21179 Implemented speex decoder.
21181 2004-09-28 Christian Schaller <christian@fluendo.com>
21184 Remove kioslave plugin. Markey is brewing a new working one
21185 * ext/Makefile.am: Remove kioslave plugin
21187 * gst-plugins.spec.in: remove kio plugin from spec
21189 2004-09-27 Wim Taymans <wim@fluendo.com>
21191 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21192 (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
21193 (is_sync_frame), (gst_multifdsink_client_queue_buffer),
21194 (gst_multifdsink_new_client),
21195 (gst_multifdsink_handle_client_write),
21196 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
21197 (gst_multifdsink_handle_clients):
21198 * gst/tcp/gstmultifdsink.h:
21199 Make syncing to keyframes actually work for new clients and lagging
21202 2004-09-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
21204 * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
21205 (gst_navigationtest_handle_src_event), (draw_box_planar411),
21206 (gst_navigationtest_planar411), (gst_navigationtest_change_state):
21207 * gst/debug/gstnavigationtest.h:
21208 make navigationtest display button-press and button-release events
21210 2004-09-26 Iain <iaingnome@gmail.com>
21212 * gst/interleave/interleave.c (all_channels_new_media): Checks if all
21213 the channels have received a new media event.
21214 (interleave_buffered_loop): Compresses a new media event on all
21217 2004-09-26 Iain <iaingnome@gmail.com>
21219 * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
21220 call the sinkpad's default event handler and not the srcpads. He also
21221 says this is confusing :)
21222 (gst_wavenc_stop_file): Company says that seek events only go upstream
21223 we should send a discontinuous downstream instead.
21225 2004-09-25 Christian Schaller <christian@fluendo.com>
21227 * Update SPEC file to be usable in conjunction with Fedora Core,
21228 Fedora.us and freshrpms packages
21229 * Fix typo in multifilesrc test Makefile
21231 2004-09-24 Wim Taymans <wim@fluendo.com>
21233 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
21234 Only signal the no_more_pads signal when we have
21235 added the stream to our list.
21237 2004-09-24 Wim Taymans <wim@fluendo.com>
21239 * gst/playback/gstplaybasebin.c: (remove_prerolls),
21241 * gst/playback/gstplaybasebin.h:
21242 * gst/playback/gstplaybin.c: (setup_sinks):
21243 Don't try to preroll or decode more than one audio/video
21246 2004-09-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21248 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
21249 Throw error if we failed to find a suitable output. This should
21250 throw an error if we successfully set up a pipeline (e.g. because
21251 we recognized a media file) but found no decodable streams in it
21252 (e.g. because it contains only media stream types for which we
21253 have no decoders, or because it's not a media type).
21255 2004-09-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21257 * ext/dirac/Makefile.am:
21258 * ext/dirac/gstdirac.cc:
21259 * ext/dirac/gstdiracdec.cc:
21260 * ext/dirac/gstdiracdec.h:
21261 Do something. Don't actually know if this works because I don't
21262 have a demuxer yet.
21263 * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
21264 Add channels=1 to caps returned from _getcaps().
21265 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
21266 (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
21267 (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
21268 (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
21269 (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
21270 (gst_ogm_parse_change_state):
21271 Separate between audio/video so ogmaudioparse actually uses the
21272 audio pad templates. Both audio and video work now, including
21273 autoplugging. Also use sometimes-srcpad hack.
21274 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
21275 Handle events better. Don't hang on infinite loops.
21276 * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
21277 (gst_avi_demux_init), (gst_avi_demux_reset),
21278 (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
21279 (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
21280 (gst_avi_demux_change_state):
21281 * gst/avi/gstavidemux.h:
21282 Improve A/V sync. Still not perfect.
21283 * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
21284 (gst_ebml_read_skip):
21285 Handle events better.
21286 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
21287 (gst_qtdemux_loop_header), (qtdemux_parse_trak),
21288 (qtdemux_audio_caps):
21289 Add IMA4. Improve event handling. Save offset after a seek when
21290 the headers are at the end of the file so that we don't end up in
21292 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
21293 Add low-priority typefind support for files with no length.
21295 2004-09-23 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21297 * testsuite/multifilesink/Makefile.am:
21300 2004-09-22 Julien MOUTTE <julien@moutte.net>
21302 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
21303 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
21304 mistakes from thaytan's patches.
21306 2004-09-23 Jan Schmidt <thaytan@mad.scientist.com>
21308 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
21309 For completeness, XSync in the destroy function as xvimage does.
21311 2004-09-23 Jan Schmidt <thaytan@mad.scientist.com>
21313 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
21314 Correct caps negotiation
21315 * gst/volume/gstvolume.c: (volume_chain_float),
21316 (volume_chain_int16):
21317 Modify debug output to be little more informative
21318 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
21319 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21320 (gst_xvimagesink_xvimage_destroy):
21321 Add XSync calls after detaching from the shared memory segment to
21324 2004-09-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21326 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
21327 (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
21328 * ext/vorbis/vorbis.c: (plugin_init):
21329 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
21330 (gst_vorbisenc_chain):
21331 * ext/vorbis/vorbisenc.h:
21332 remove explicit newmedia support from oggmux and vorbisenc
21333 add debug category to vorbisenc
21334 * gst/multifilesink/gstmultifilesink.c:
21335 (gst_multifilesink_class_init), (gst_multifilesink_init),
21336 (gst_multifilesink_dispose), (gst_multifilesink_set_location),
21337 (gst_multifilesink_set_property), (gst_multifilesink_next_file),
21338 (gst_multifilesink_handle_event), (gst_multifilesink_chain),
21340 * gst/multifilesink/gstmultifilesink.h:
21341 add support for streamheader in multifilesink
21343 2004-09-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21345 * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
21346 (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
21347 (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
21348 Prevent infinite loops. More correct error reporting.
21349 * gst/auparse/gstauparse.c: (gst_auparse_chain):
21350 Error out if negotiation fails.
21351 * gst/playback/gstplaybasebin.c: (setup_source),
21352 (gst_play_base_bin_change_state), (gst_play_base_bin_error),
21353 (gst_play_base_bin_found_tag):
21354 Error/tag forwarding. Pre-roll fixes for source errors on state
21355 changes (e.g. "file does not exist") to prevent hangs.
21357 2004-09-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21359 * testsuite/multifilesink/Makefile.am:
21360 * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
21361 (gst_newmedia_class_init), (gst_newmedia_init),
21362 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
21363 (newfile_signal), (test_signal), (main):
21364 * testsuite/multifilesink/multifilesrc_test.c: (main):
21365 * testsuite/multifilesink/oggtheora_test.c:
21366 (gst_newmedia_base_init), (gst_newmedia_class_init),
21367 (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
21368 (test_format), (newfile_signal), (test_signal), (main):
21369 * testsuite/multifilesink/oggvorbis_test.c:
21370 (gst_newmedia_base_init), (gst_newmedia_class_init),
21371 (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
21372 (test_format), (newfile_signal), (test_signal), (main):
21373 * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
21374 (gst_newmedia_class_init), (gst_newmedia_init),
21375 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
21376 (newfile_signal), (test_signal), (main):
21379 2004-09-20 Christian Schaller <christian@fluendo.com>
21381 * Fix mikmod license to LGPL as they have relicensed
21382 * Move Dirac and Effectv into LGPL section of README_license
21384 2004-09-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21386 * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
21387 (gst_mad_change_state):
21388 Allow for mp3 rate/channels changes. However, only very
21389 conservatively. Reason that we *have* to enable this is smiply
21390 because the mad find_sync() function is not good enough, it will
21391 regularly sync on random data as valid frames and therefore make
21392 us provide random caps as *final* caps of the stream. The best fix
21393 I could think of is to simply require several of the same stream
21394 changes in a row before we change caps.
21395 The actual testcase that works now is #
21396 * ext/ogg/Makefile.am:
21397 * ext/ogg/gstogg.c: (plugin_init):
21398 * ext/ogg/gstogmparse.c:
21399 OGM support (video only for now; I need an audio sample file).
21400 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
21401 (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
21402 (gst_asf_demux_add_video_stream):
21404 * gst/playback/gstplaybasebin.c: (unknown_type):
21405 Don't error out on single unknown-types after all. It's wrong.
21406 If we found type of video and audio but not of a subtitle stream,
21407 it will still error out (which is unwanted). Will find a better fix
21409 * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
21410 (ogmaudio_type_find), (plugin_init):
21413 2004-09-20 Johan Dahlin <johan@gnome.org>
21415 * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
21416 after setting caps.
21418 2004-09-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21420 * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
21421 * gst/wavenc/gstwavenc.h:
21422 Added newmedia support to wavenc
21424 2004-09-17 Wim Taymans <wim@fluendo.com>
21426 * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
21427 (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
21428 (gst_fdset_fd_can_write), (gst_fdset_wait):
21429 * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
21430 (gst_multifdsink_init), (gst_multifdsink_add),
21431 (gst_multifdsink_remove), (gst_multifdsink_get_stats),
21432 (gst_multifdsink_remove_client_link),
21433 (gst_multifdsink_client_queue_buffer),
21434 (gst_multifdsink_handle_client_write),
21435 (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
21436 (gst_multifdsink_close), (gst_multifdsink_change_state):
21437 * gst/tcp/gstmultifdsink.h:
21438 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
21439 (gst_tcpserversink_removed):
21440 Small cleanups in fdset.c
21441 Use a hastable to map fd to the client structure for faster
21442 lookup in _remove and get_stats.
21443 Added virtual function to close the fds.
21444 Handle clients even when the select/poll call was unblocked because
21446 Implement syncing to keyframe in the recovery procedure.
21448 2004-09-16 Iain <iaingnome@gmail.com>
21450 * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
21453 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21455 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
21456 Caps are only set if the type of the stream is unknown, but this
21457 is initialized in ->init_stream(), so set to UNKNOWN after calling
21458 ->init_stream() so that capsnego starts.
21460 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21462 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21463 (gst_avi_demux_stream_data):
21464 Just hardcode for raw audio then. AVI audio sucks.
21466 2004-09-15 Arwed v. Merkatz <v.merkatz@gmx.net>
21468 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
21469 * gst/matroska/matroska-mux.c: (audiosink_templ),
21470 (gst_matroska_mux_audio_pad_link):
21471 * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
21472 Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
21474 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21476 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21477 (gst_avi_demux_stream_data):
21478 Try to fix a/v sync issues.
21480 2004-09-15 David Schleef <ds@schleef.org>
21482 * configure.ac: remove NASM check, since we don't use it. Update
21484 * ext/dirac/gstdiracdec.cc: update to current 0.4 API
21485 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
21486 Initialized variables.
21487 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
21488 (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
21489 (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
21492 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21494 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21495 (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
21496 * gst/avi/gstavidemux.h:
21497 Fix for compressed audio (mp3) timestamp generation. How did this
21500 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21502 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
21503 Volume is a double not a float.
21505 2004-09-15 Wim Taymans <wim@fluendo.com>
21507 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
21508 (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
21509 Don't close the fd in multifdsink as we didn't open it in the
21510 first place. Some cleanups.
21512 2004-09-15 Wim Taymans <wim@fluendo.com>
21514 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
21515 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21516 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21517 Fix the case where the muxer would mark pages as delta
21518 frames when they are not (vorbis only ogg).
21520 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21522 * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
21523 (gst_play_base_bin_change_state):
21524 Handle the case where we failed to setup a clear pipeline. This
21525 will throw an error (or EOS, another nice case) and if you don't
21526 catch that, the app will wait for the signal forever (and thus
21529 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21531 * ext/gnomevfs/gstgnomevfssink.c:
21532 (gst_gnomevfssink_uri_get_protocols):
21533 * ext/gnomevfs/gstgnomevfssrc.c:
21534 (gst_gnomevfssrc_uri_get_protocols):
21535 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
21536 * ext/gnomevfs/gstgnomevfsuri.h:
21537 Use _uri_new() instead of _open(), so it doesn't take as long and
21538 Christophe's computer won't hang.
21539 * gst/playback/gstplaybasebin.c: (unknown_type):
21540 Throw error on unknown media type, so apps actually display it.
21542 2004-09-14 Brian Cameron <brian.cameron@sun.com
21544 * tools/gst-launch-ext-m.m: Changed ~ to $ENV{HOME} to allow
21545 this script to work on Solaris since bash shell handles echo
21546 differenly than bash.
21548 2004-09-17 Wim Taymans <wim@fluendo.com>
21550 * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
21551 (setup_source), (gst_play_base_bin_set_property),
21552 (gst_play_base_bin_add_element):
21553 * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
21554 Some more work on making sure seeking pauses the pipeline and
21555 that changing the uri actually does something.
21557 2004-09-17 Wim Taymans <wim@fluendo.com>
21559 * gst/tcp/gstfdset.c: (gst_fdset_wait):
21560 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
21561 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
21562 (gst_tcpserversink_close):
21563 Be a bit more paranoid when freeing memory.
21565 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21567 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
21568 (qtdemux_parse_trak):
21569 Don't crash by dividing by zero (see sample movie in #126922).
21571 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21573 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
21574 Don't touch non-existing data (fixes crash on file in #140147).
21576 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21578 * gst/playback/gstplaybasebin.c:
21579 (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
21580 Handle double disposals, and proper change of URIs.
21582 2004-09-13 Martin Eikermann <meiker@upb.de>
21584 * gst/mpegstream/gstmpegparse.c:
21585 fix synchronistation for streams recorded from digital PCR
21588 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21590 * ext/gnomevfs/Makefile.am:
21591 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
21592 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
21593 (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
21594 (gst_gnomevfssink_uri_get_type),
21595 (gst_gnomevfssink_uri_get_protocols),
21596 (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
21597 (gst_gnomevfssink_uri_handler_init),
21598 (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
21599 (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
21600 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
21601 (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
21602 (gst_gnomevfssrc_uri_get_type),
21603 (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
21604 (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
21605 (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
21606 (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
21607 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
21608 * ext/gnomevfs/gstgnomevfsuri.h:
21609 Add URI support to Gnome-VFS plugins. Tries to load a fixed list
21610 of fake URIs to see which this version of Gnome-VFS likes, and
21611 uses that for the Gst-URI interface. Makes playbin support http://
21612 streams. Also fix up some stupid behaviour in gnomevfssrc.
21614 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21616 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
21617 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
21618 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
21619 (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
21620 Update mixer (to sync with other sessions) if we try to obtain
21621 a new value. This makes alsamixer work accross applications.
21622 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
21623 Only call sync functions if we're running, else alsalib asserts.
21624 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
21625 Sometimes fails to compile. Possibly a gcc bug.
21626 * gst/playback/gstplaybin.c: (gen_video_element),
21627 (gen_audio_element):
21628 Add a reference to an application-provided object, because we lose
21629 this same reference if we add it to the bin. If we don't do this,
21630 we can only use this object once and thus crash if we go from
21631 ready to playing, back to ready and back to playing again.
21632 Also add an audioscale element because several cheap soundcards -
21633 like mine - don't support all samplerates.
21634 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
21635 (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
21636 Fix wrong order or PAR calls. Makes automatically obtained PAR
21637 from the X server atually being used.
21639 2004-09-12 David Schleef <ds@schleef.org>
21641 Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
21642 #151887, #152102, #152247.
21643 * examples/indexing/indexmpeg.c: 64-bit warning fixes.
21644 * examples/seeking/cdparanoia.c: same
21645 * examples/seeking/cdplayer.c: same
21646 * examples/seeking/seek.c: same
21647 * examples/seeking/spider_seek.c: same
21648 * examples/seeking/vorbisfile.c: same
21649 * examples/stats/mp2ogg.c: same
21650 * ext/esd/esdsink.c: (gst_esdsink_class_init),
21651 (gst_esdsink_dispose): Dispose of element properly.
21652 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
21654 * ext/nas/nassink.c: (gst_nassink_class_init),
21655 (gst_nassink_dispose): Dispose of element correctly.
21656 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
21657 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
21658 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
21659 Fix 64-bit warning.
21660 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21661 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
21662 Fix 64-bit warning.
21664 2004-09-12 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21666 * configure.ac : change speex detection as 1.1.6 now uses
21667 .pc/pkg-config and they changed their headers location.
21669 2004-09-09 Arwed v. Merkatz <v.merkatz@gmx.net>
21671 * gst/matroska/matroska-mux.h:
21672 * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
21673 (gst_matroska_mux_start), (gst_matroska_mux_finish),
21674 (gst_matroska_mux_write_data):
21675 Write multiple blocks/frames per cluster.
21676 Write meta-seek information (seek heads).
21678 2004-09-09 Scott Wheeler <wheeler@kde.org>
21680 * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
21681 (gst_play_bin_set_property), (gst_play_bin_get_property),
21682 (gen_audio_element), (gen_audio_element):
21683 Add a volume element / property to the pipeline.
21685 2004-09-07 Wim Taymans <wim@fluendo.com>
21687 * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
21688 Copy timestamps from the master pad to the output buffers.
21690 2004-09-03 Thomas Vander Stichele <thomas at apestaart dot org>
21692 * ext/raw1394/gstdv1394src.c:
21693 throw errors when applicable
21695 2004-09-01 Arwed v. Merkatz <v.merkatz@gmx.net>
21697 * gst/matroska/ebml-ids.h:
21698 * gst/matroska/ebml-read.c: (gst_ebml_read_date):
21699 * gst/matroska/ebml-write.c: (gst_ebml_write_date):
21700 * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
21701 automatically convert unix time <-> ebml time when reading/writing
21702 a date, use gst_ebml_write_uint to write CUETIME,
21703 not gst_ebml_write_date.
21704 * gst/matroska/matroska-ids.h:
21705 * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
21706 (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
21707 (gst_matroska_mux_track_header), (gst_matroska_mux_start),
21708 (gst_matroska_mux_write_data):
21709 Write track and segment UIDs, write muxing date, write
21710 TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
21711 Create cues for audio only files.
21713 2004-08-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21715 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
21716 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
21717 Re-commit ALSA switches.
21718 * gst/adder/gstadder.c: (gst_adder_loop):
21719 64-bit fix (#151416).
21720 * gst/debug/progressreport.c: (gst_progressreport_report):
21721 64-bit fix (#151419).
21722 * gst/matroska/matroska-demux.c:
21723 (gst_matroska_demux_parse_contents):
21724 64-bit fix (#151420).
21725 * gst/playback/test3.c: (update_scale):
21726 64-bit fix (#151421).
21728 2004-08-31 Thomas Vander Stichele <thomas at apestaart dot org>
21733 === release 0.8.4 ===
21735 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
21737 * configure.ac: releasing 0.8.4, "Alias"
21739 2004-08-31 Thomas Vander Stichele <thomas at apestaart dot org>
21741 * ext/theora/Makefile.am:
21742 fix makefile. Fixes #151462.
21744 2004-08-30 Wim Taymans <wim@fluendo.com>
21746 * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
21747 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21748 (gst_multifdsink_remove_client_link),
21749 (gst_multifdsink_client_queue_buffer),
21750 (gst_multifdsink_handle_client_write):
21751 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
21752 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
21753 Fix some memory leaks.
21755 2004-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
21757 Patch by: David Schleef
21761 rename our detection macro for V4L2. Fixes #151236.
21763 2004-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
21765 Patch by: David Schleef
21768 check to define LAMEPRESET. Fixes #151232.
21770 2004-08-27 David Schleef <ds@schleef.org>
21772 * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
21773 (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
21774 (gst_glimagesink_fixate): Move local variable declarations to
21775 make gcc-2.95 happy.
21777 2004-08-27 Thomas Vander Stichele <thomas at apestaart dot org>
21780 bump nano for prerelease
21782 2004-08-27 David Schleef <ds@schleef.org>
21784 * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
21785 * sys/sunaudio/gstsunaudiosrc.c:
21786 * sys/sunaudio/gstsunaudiosrc.h:
21788 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
21790 * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
21791 handle EOS correctly
21792 * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
21793 * gst/matroska/matroska-mux.h:
21794 added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
21795 VFW compatibility mode
21797 2004-08-27 Thomas Vander Stichele <thomas at apestaart dot org>
21799 patch by: Zaheer Abbas Merali
21801 * ext/ogg/gstoggmux.c:
21802 * ext/vorbis/vorbisenc.c:
21803 * ext/vorbis/vorbisenc.h:
21806 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
21808 * gst/matroska/ebml-write.c: (gst_ebml_write_float),
21809 fix byte order reversion on little endian machines.
21810 * gst/matroska/matroska-mux.c: (audiosink_templ),
21811 (gst_matroska_mux_audio_pad_link):
21812 add TTA codec to the list of supported codecs.
21813 * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
21814 (gst_matroska_mux_start), (gst_matroska_mux_finish),
21815 (gst_matroska_mux_write_data):
21816 * gst/matroska/matroska-mux.h:
21817 write segment duration correctly, write muxing app string, fixes bugs
21818 #140897 and #140898.
21819 * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
21820 wait for all pads to be negotiated before starting to mux.
21822 2004-08-26 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21824 * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
21825 * ext/lame/gstlame.h:
21826 Added new media support to lame
21828 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
21830 * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
21831 send vorbis headers at the beginning of a stream, fixes bug #141554.
21832 Interpret BLOCKDURATION and set buffer duration accordingly, fixes
21834 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
21835 (gst_matroska_demux_plugin_init):
21836 * gst/matroska/matroska-ids.h:
21837 enable demuxing of TTA audio streams, fixes bug #148951.
21838 * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
21839 enable typefinding for TTA audio files, fixes bug #148711.
21840 * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
21841 set XVID_LOWDELAY flag for decoding so xvid always returns an image,
21842 fixes playback of packed bitstream and xvid with bframes, bug #135407.
21844 2004-08-24 Sebastien Cote <sc5@hermes.usherb.ca>
21846 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
21847 (gst_riff_read_element_data), (gst_riff_read_seek),
21848 (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
21849 #144616, patch reviewed by Ronald and committed by Christophe Fergeau
21852 2004-08-23 Iain <iaingnome@gmail.com>
21854 * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
21855 tags. They appear to be handled differently to normal.
21856 (tag_list_to_id3_tag_foreach): Ditto.
21858 2004-08-22 Wim Taymans <wim@fluendo.com>
21860 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21861 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21862 Make sure we never send -1 granulepos.
21864 2004-08-20 Wim Taymans <wim@fluendo.com>
21866 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21867 (gst_ogg_mux_loop):
21868 I will accept bitchslappings with non sharp objects.
21870 2004-08-20 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21873 Clean up the test for lame presets
21875 2004-08-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21878 * ext/lame/Makefile.am:
21879 * ext/lame/gstlame.c: (gst_lame_class_init),
21880 (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
21881 Only enable lame presets if version of lame has presets in API
21883 2004-08-19 Jan Schmidt <thaytan@mad.scientist.com>
21884 * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
21885 * gst/udp/gstudpsrc.h:
21886 Don't call gst_pad_push in a get function. Fixes #150449
21888 2004-08-18 Wim Taymans <wim@fluendo.com>
21890 * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
21891 (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
21892 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
21893 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21894 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21896 * gst/tcp/gstfdset.h:
21897 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21898 (gst_multifdsink_client_queue_buffer),
21899 (gst_multifdsink_handle_client_write):
21900 * gst/tcp/gstmultifdsink.h:
21901 Some extra checks in gstfdset.
21902 Only use send() when the fd is a socket. Don't try to
21903 read from write only fds.
21905 2004-08-18 Wim Taymans <wim@fluendo.com>
21907 * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
21908 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
21909 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21910 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21912 Add more locking and bounds checking.
21914 2004-08-18 Wim Taymans <wim@fluendo.com>
21916 * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
21917 Realloc test fdset in the lock and right before starting
21918 the poll call. Bump the limit to 4096.
21920 2004-08-17 David Schleef <ds@schleef.org>
21922 * sys/sunaudio/Makefile.am:
21923 * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
21924 of rates and channels. Make debugging less obnoxious.
21926 Patch from Balamurali Viswanathan implementing a mixer for
21927 Sun audio. (bug #144091):
21928 * sys/sunaudio/gstsunelement.c:
21929 * sys/sunaudio/gstsunelement.h:
21930 * sys/sunaudio/gstsunmixer.c:
21931 * sys/sunaudio/gstsunmixer.h:
21933 2004-08-17 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21935 * gst/audioscale/gstaudioscale.c:
21936 * gst/audioscale/gstaudioscale.h:
21937 made audioscale resample from any sample rate to any sample rate
21939 2004-08-17 Thomas Vander Stichele <thomas at apestaart dot org>
21941 * ext/libpng/gstpngdec.c:
21942 error out on unsupported types
21944 2004-08-17 Iain <iaingnome@gmail.com>
21946 * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
21947 mid_side and loose_mid_side properties if its a stereo stream.
21949 2004-08-17 Wim Taymans <wim@fluendo.com>
21951 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
21952 (theora_get_formats), (theora_dec_src_convert),
21953 (theora_dec_sink_convert), (theora_dec_src_query),
21954 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
21957 2004-08-17 Wim Taymans <wim@fluendo.com>
21959 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
21960 (gst_ogg_pad_push):
21961 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
21962 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
21963 (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
21964 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21965 Mark delta units in the muxer.
21966 Try to decode the packet after an out-of-sync error from
21969 2004-08-17 Wim Taymans <wim@fluendo.com>
21971 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21972 (gst_multifdsink_init), (gst_multifdsink_add),
21973 (gst_multifdsink_client_queue_buffer),
21974 (gst_multifdsink_set_property), (gst_multifdsink_get_property):
21975 * gst/tcp/gstmultifdsink.h:
21976 Added option to send a keyframe to clients as the first buffer.
21977 Make timeout property writable.
21979 2004-08-17 Thomas Vander Stichele <thomas at apestaart dot org>
21981 patch by: Wim Taymans
21983 * gst/tcp/gstfdset.c:
21984 * gst/tcp/gstmultifdsink.c:
21985 fix index comparison, should include 0
21987 2004-08-16 Wim Taymans <wim@fluendo.com>
21989 * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
21990 (gst_fdset_add_fd), (gst_fdset_remove_fd),
21991 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21992 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21994 copy when reallocing for poll so the select arguments don't get
21995 changed during the call
21997 2004-08-16 Wim Taymans <wim@fluendo.com>
21999 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
22000 (gst_theora_enc_class_init), (theora_enc_sink_link),
22001 (theora_buffer_from_packet), (theora_enc_chain):
22002 Fix bug where buffers were not marked as keyframes
22005 2004-08-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22007 * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
22008 (gst_lame_preset_get_type), (gst_lame_class_init):
22009 describe the enum values for vbr mode and presets more verbosely
22011 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22013 * ext/lame/gstlame.c: (gst_lame_mode_get_type),
22014 (gst_lame_quality_get_type), (gst_lame_padding_get_type),
22015 (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
22016 (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
22017 * ext/lame/gstlame.h:
22018 add preset property to lame so it can use lame presets
22020 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22022 * ext/lame/gstlame.c: (gst_lame_get_property):
22023 whoops forgot break, thanks teuf
22025 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22027 * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
22028 (gst_lame_class_init), (gst_lame_src_getcaps),
22029 (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
22030 (gst_lame_get_property), (gst_lame_setup):
22031 * ext/lame/gstlame.h:
22032 fix lame's broken vbr stuff, allow it to resample if need be, and also
22033 make xing header optional
22035 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22037 * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
22038 added getcaps function so samplerate doesnt get fixated to silly values
22040 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22042 * ext/lame/gstlame.c: (gst_lame_src_link):
22043 revert previous fix
22045 2004-08-12 Johan Dahlin <johan@gnome.org>
22047 * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
22048 checks. Doesn't matter what state we are in. Interfaces are a
22049 compile time thing, not runtime. It also broke the python bindings.
22051 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22053 * ext/lame/gstlame.c: (gst_lame_src_link):
22054 made source pad link function check if sinkpad is ok..fixes the problem
22055 where core fixates the output rate of lame stupidly
22057 2004-08-12 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
22059 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
22060 * sys/v4l/v4l_calls.c:
22061 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
22062 fix fixate function to handle nonsimple caps.
22063 remove bogus check in _link
22066 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22068 * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
22069 set default compression ratio parameter to 0.0 so bitrate parameter
22072 2004-08-11 David Schleef <ds@schleef.org>
22074 * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
22076 2004-08-11 David Schleef <ds@schleef.org>
22078 * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
22081 2004-08-11 David Schleef <ds@schleef.org>
22083 * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
22085 2004-08-11 David Schleef <ds@schleef.org>
22087 * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
22089 * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
22090 * gst-libs/gst/video/gstvideosink.c: Change copyright block to
22092 * gst/auparse/gstauparse.c: Fix plugin license field.
22093 * gst/monoscope/gstmonoscope.c: Fix plugin license field.
22094 * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
22095 * gst/rtp/gstrtp.c: Fix plugin license field.
22097 2004-08-11 Wim Taymans <wim@fluendo.com>
22099 * gst/tcp/Makefile.am:
22100 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
22101 (ensure_size), (gst_fdset_new), (gst_fdset_free),
22102 (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
22103 (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
22104 (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
22105 (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
22106 (gst_fdset_fd_can_write), (gst_fdset_wait):
22107 * gst/tcp/gstfdset.h:
22108 * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
22109 (gst_multifdsink_class_init), (gst_multifdsink_init),
22110 (gst_multifdsink_add), (gst_multifdsink_remove),
22111 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
22112 (gst_multifdsink_remove_client_link),
22113 (gst_multifdsink_handle_client_read),
22114 (gst_multifdsink_client_queue_data),
22115 (gst_multifdsink_client_queue_caps),
22116 (gst_multifdsink_client_queue_buffer),
22117 (gst_multifdsink_handle_client_write),
22118 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
22119 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
22120 (gst_multifdsink_get_property), (gst_multifdsink_init_send),
22121 (gst_multifdsink_close):
22122 * gst/tcp/gstmultifdsink.h:
22123 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
22124 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
22125 (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
22126 (gst_tcpserversink_close):
22127 * gst/tcp/gsttcpserversink.h:
22128 Abstracted away the select call, implemented poll (yes we ran into
22129 the 1024 limit in production).
22131 2004-08-11 Thomas Vander Stichele <thomas at apestaart dot org>
22133 * gst/tcp/gsttcp.c:
22134 * gst/tcp/gsttcpplugin.c:
22135 improve debuggging, remove assert
22137 2004-08-10 Wim Taymans <wim@fluendo.com>
22139 * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
22140 (gst_client_status_get_type), (gst_multifdsink_class_init),
22141 (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
22142 (gst_multifdsink_handle_client_read),
22143 (gst_multifdsink_handle_client_write),
22144 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
22145 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
22146 (gst_multifdsink_get_property):
22147 * gst/tcp/gstmultifdsink.h:
22148 * gst/tcp/gsttcp-marshal.list:
22149 Starting to prepare for specifying buffer time in other units
22150 than buffers. Expose remove reason in signal.
22152 2004-08-10 Wim Taymans <wim@fluendo.com>
22154 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
22155 (gst_multifdsink_remove), (gst_multifdsink_clear),
22156 (gst_multifdsink_remove_client_link),
22157 (gst_multifdsink_handle_client_read),
22158 (gst_multifdsink_client_queue_data),
22159 (gst_multifdsink_client_queue_buffer),
22160 (gst_multifdsink_handle_client_write),
22161 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
22162 (gst_multifdsink_chain), (gst_multifdsink_close):
22163 * gst/tcp/gstmultifdsink.h:
22164 Added more debugging info. Changed the way clients are
22165 removed from the lists. Fixed a bug where a bad file descriptor
22166 could cause many clients to be removed.
22168 2004-08-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
22170 * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
22171 allow all pixel-aspect-ratios, not just 1:1
22173 2004-08-09 David Schleef <ds@schleef.org>
22175 * sys/glsink/ARB_multitexture.h: Remove old files.
22176 * sys/glsink/EXT_paletted_texture.h:
22177 * sys/glsink/NV_register_combiners.h:
22178 * sys/glsink/gstgl_nvimage.c:
22179 * sys/glsink/gstgl_pdrimage.c:
22180 * sys/glsink/gstgl_rgbimage.c:
22181 * sys/glsink/gstglsink.c:
22182 * sys/glsink/gstglsink.h:
22183 * sys/glsink/gstglxwindow.c:
22184 * sys/glsink/regcomb_yuvrgb.c:
22186 2004-08-09 David Schleef <ds@schleef.org>
22188 Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
22189 GL sink plugin. (Bug #147302)
22191 * configure.ac: Test for OpenGL
22192 * sys/Makefile.am: Use test for OpenGL
22193 * sys/glsink/Makefile.am:
22194 * sys/glsink/glimagesink.c: rewrite
22195 * sys/glsink/glimagesink.h: rewrite
22197 2004-08-09 David Schleef <ds@schleef.org>
22199 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init): Only allow
22201 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
22202 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
22203 * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
22205 2004-08-09 Wim Taymans <wim@fluendo.com>
22207 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22208 (gst_multifdsink_add), (gst_multifdsink_get_stats),
22209 (gst_multifdsink_client_remove),
22210 (gst_multifdsink_handle_client_read),
22211 (gst_multifdsink_handle_client_write),
22212 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22213 Do a bit more logging, make the client_read code more robust.
22215 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22217 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
22218 (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
22219 (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
22220 (gst_jpegdec_init), (gst_jpegdec_chain):
22221 * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
22222 (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
22223 cleanups, debugging fixes and memleak plugging
22225 2004-08-09 Wim Taymans <wim@fluendo.com>
22227 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22228 (theora_get_formats), (theora_dec_src_convert),
22229 (theora_dec_sink_convert), (theora_dec_src_query),
22230 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
22231 (theora_dec_change_state):
22232 Don't crash on missing header packets.
22234 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22238 Added Albanian translation (Laurent Dhima)
22242 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22244 * ext/lame/gstlame.c:
22247 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22249 * sys/ximage/ximagesink.c:
22250 * sys/xvimage/xvimagesink.c:
22251 assign all TOO_LAZY's to a real category. Thanks to Warthy Warthog.
22253 2004-08-06 Wim Taymans <wim@fluendo.com>
22255 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22256 (gst_multifdsink_add), (gst_multifdsink_get_stats),
22257 (gst_multifdsink_client_remove),
22258 (gst_multifdsink_handle_client_read),
22259 (gst_multifdsink_handle_client_write),
22260 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22261 Make sure we don't try to read more from a client that what
22262 ioctl says us or we deadlock.
22264 2004-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
22266 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
22267 (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
22268 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
22269 decouple running_time and n_frames so it can handle changing
22270 framerate while running
22272 2004-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
22276 updated translations
22278 2004-08-04 Benjamin Otte <otte@gnome.org>
22280 * gst/videotestsrc/gstvideotestsrc.c:
22281 (gst_videotestsrc_get_capslist), (generate_capslist),
22283 generate the list of supported caps at startup and reuse it instead
22284 of always generating it
22286 2004-07-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
22288 * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
22289 whoops, last checkin broke normal build
22291 2004-08-03 Benjamin Otte <otte@gnome.org>
22293 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
22294 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
22295 (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
22296 (gst_alsa_mixer_get_option):
22297 * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
22298 (dvdnavsrc_print_event):
22299 * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
22300 * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
22301 (gst_ogg_mux_pad_unlink):
22302 * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
22303 (gst_multipart_mux_pad_unlink):
22304 * gst/videofilter/gstvideobalance.c:
22305 (gst_videobalance_colorbalance_set_value):
22306 * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
22307 (gst_videomixer_pad_unlink):
22309 * sys/oss/gstossmixer.c:
22310 * sys/v4l/gstv4lcolorbalance.c:
22311 * sys/v4l/gstv4ltuner.c:
22312 * sys/v4l/v4lsrc_calls.c:
22313 * sys/v4l2/gstv4l2colorbalance.c:
22314 * sys/v4l2/gstv4l2tuner.c:
22315 compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
22317 2004-08-03 Benjamin Otte <otte@gnome.org>
22319 * examples/dynparams/filter.c: (ui_control_create):
22320 * examples/gstplay/player.c: (print_tag):
22321 * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
22322 * ext/gdk_pixbuf/gstgdkanimation.c:
22323 (gst_gdk_animation_iter_may_advance):
22324 * ext/jack/gstjack.c: (gst_jack_request_new_pad):
22325 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
22326 (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
22327 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
22328 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
22329 * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
22330 * gst-libs/gst/media-info/media-info-test.c: (print_tag):
22331 * gst/sine/demo-dparams.c: (main):
22332 * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
22333 * testsuite/alsa/formats.c: (create_pipeline):
22334 * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
22335 fixes for G_DISABLE_ASSERT and friends
22336 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
22337 (mp3_type_frame_length_from_header), (mp3_type_find),
22339 require mp3 typefinding to have at least MIN_HEADERS valid headers
22340 add typefinding for AAC adts files
22342 2004-08-04 Jan Schmidt <thaytan@mad.scientist.com>
22344 * sys/ximage/ximagesink.c:
22345 (gst_ximagesink_calculate_pixel_aspect_ratio):
22346 * sys/xvimage/xvimagesink.c:
22347 (gst_xvimagesink_calculate_pixel_aspect_ratio):
22348 Make sure we calculate pixel-aspect-ratio using floating point maths
22350 2004-08-03 Thomas Vander Stichele <thomas at apestaart dot org>
22353 updated translation
22355 2004-08-03 Thomas Vander Stichele <thomas at apestaart dot org>
22357 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
22358 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
22359 add debugging for display PAR calculation
22361 2004-08-02 David Schleef <ds@schleef.org>
22363 * configure.ac: Fix mikmod CFLAGS.
22365 2004-07-27 Benjamin Otte <otte@gnome.org>
22367 * gst/audioscale/gstaudioscale.c:
22368 - fix templates to only support S16, it's the only format that works
22369 - make caps nego code use try_set_caps_nonfixed and fixation instead
22370 of try_set_caps twice, which is not nice for autopluggers
22371 - change rank to secondary, so autopluggers can pick it up after
22374 2004-08-02 Iain <iain@prettypeople.org>
22376 * gst/interleave/interleave.c (interleave_init),
22377 (interleave_request_new_pad),
22378 (interleave_pad_removed),
22379 (interleave_buffered_loop): Use the real pad count, not the artificial
22382 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22384 * configure.ac: bump nano back to development
22386 === release 0.8.3 ===
22388 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22390 * configure.ac: releasing 0.8.3, "Water"
22392 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22394 * sys/xvimage/xvimagesink.c:
22395 (gst_xvimagesink_calculate_pixel_aspect_ratio),
22396 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
22397 (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
22398 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22399 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22400 * sys/xvimage/xvimagesink.h:
22401 apply similar PAR fixes as to ximagesink
22403 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22405 patch from: Benjamin Otte
22407 * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
22408 add link function to lame. Fixes #148986.
22410 2004-08-02 Johan Dahlin <johan@gnome.org>
22412 * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
22415 2004-07-30 David Schleef <ds@schleef.org>
22417 * gst/videomixer/Makefile.am: Fix things that should have been
22418 fixed in the last checkin.
22420 2004-07-30 David Schleef <ds@schleef.org>
22422 * gst/multipart/Makefile.am: Fix things that should have been
22423 fixed in the last checkin.
22425 2004-07-30 David Schleef <ds@schleef.org>
22427 * testsuite/multifilesink/Makefile.am: Fix unused variable.
22429 2004-07-30 Thomas Vander Stichele <thomas at apestaart dot org>
22432 bump nano for prerelease
22444 2004-07-30 Wim Taymans <wim@fluendo.com>
22446 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22447 (gst_multifdsink_add), (gst_multifdsink_remove),
22448 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
22449 (gst_multifdsink_client_remove),
22450 (gst_multifdsink_handle_client_write),
22451 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22452 * gst/tcp/gstmultifdsink.h:
22453 Recover from a select with a bad file descriptor by removing
22456 2004-07-30 Thomas Vander Stichele <thomas at apestaart dot org>
22459 fix requirement of core
22460 * gst-libs/gst/play/play.c: (gst_play_error_plugin),
22461 (gst_play_pipeline_setup):
22462 don't use colorspace element. do use hermescolorspace element.
22463 make macro to get a colorspace element.
22464 mark strings for translation.
22476 update translations
22478 2004-07-30 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22480 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
22481 fix default for newmedia flag
22483 2004-07-30 Wim Taymans <wim@fluendo.com>
22485 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22486 (gst_theora_dec_init), (theora_get_formats),
22487 (theora_dec_src_convert), (theora_dec_sink_convert),
22488 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22489 (theora_dec_chain), (theora_dec_set_property),
22490 (theora_dec_get_property):
22491 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
22492 (gst_theora_enc_class_init), (gst_theora_enc_init),
22493 (theora_enc_sink_link), (theora_enc_chain),
22494 (theora_enc_set_property), (theora_enc_get_property):
22495 Added cropping option to theora decoder.
22496 Added border option to theora encoder.
22498 2004-07-30 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22500 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22501 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22502 (gst_pngenc_set_property):
22503 * ext/libpng/gstpngenc.h:
22504 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
22506 2004-07-30 Wim Taymans <wim@fluendo.com>
22508 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
22509 (theora_enc_sink_link), (theora_enc_chain),
22510 (theora_enc_set_property), (theora_enc_get_property):
22511 Fix encoding of non-multiple-of-16 video.
22513 2004-07-29 David Schleef <ds@schleef.org>
22515 * configure.ac: make test for audiofile more strict
22517 2004-07-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
22519 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
22520 give different names to typefind functions
22522 2004-07-28 Thomas Vander Stichele <thomas at apestaart dot org>
22524 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22525 (gst_ximagesink_calculate_pixel_aspect_ratio),
22526 (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
22527 (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
22528 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
22529 (gst_ximagesink_get_property), (gst_ximagesink_init):
22530 * sys/ximage/ximagesink.h:
22531 allocate PAR's dynamically.
22532 use autodetected PAR if no object-set PAR is given.
22533 add workaround for directfb's X not setting physical size.
22534 fix to xvimagesink will follow tomorrow.
22536 2004-07-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22538 * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
22539 * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
22540 (gst_shout2send_get_type), (gst_shout2send_set_clock),
22541 (gst_shout2send_class_init), (gst_shout2send_init),
22542 (set_shout_metadata), (gst_shout2send_set_metadata),
22543 (gst_shout2send_chain), (gst_shout2send_set_property),
22544 (gst_shout2send_get_property), (gst_shout2send_connect),
22545 (gst_shout2send_change_state):
22546 * ext/shout2/gstshout2.h:
22547 - fix for sending mp3 audio to icecast2 server, if pad link function not
22548 called before PAUSED state
22549 - added option to use GStreamer clock sync (as opposed to libshout's own sync)
22550 - added tagging support for mp3 audio broadcasted
22551 * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
22554 2004-07-28 Wim Taymans <wim@fluendo.com>
22556 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
22557 (gst_ogg_demux_push):
22558 Return query failure when we don't know the length of
22559 an ogg stream insteda of returning TRUE with a bogus value.
22561 2004-07-28 Wim Taymans <wim@fluendo.com>
22563 * ext/theora/theoradec.c: (theora_get_formats),
22564 (theora_dec_src_convert), (theora_dec_sink_convert),
22565 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22566 (theora_dec_chain):
22567 Don't screw up the 1 Chroma for 1 luma sample situation when we
22568 have an odd offset/width by adding a black border in those cases.
22570 2004-07-28 Wim Taymans <wim@fluendo.com>
22572 * ext/theora/theoradec.c: (theora_get_formats),
22573 (theora_dec_src_convert), (theora_dec_sink_convert),
22574 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22575 (theora_dec_chain):
22576 * ext/theora/theoraenc.c: (theora_enc_sink_link):
22577 Added first attempt at cropping of the image as required by the
22578 theora spec. We need more properties in the caps (offset_x,
22579 offset_y,stride) to implement this correctly.
22581 2004-07-28 Jan Schmidt <thaytan@mad.scientist.com>
22583 * ext/dvdnav/README:
22584 Update the README to use dvddemux
22585 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
22586 Ensure getcaps returns a subset of the template caps
22587 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
22588 (gst_mpeg2subt_init):
22589 Ensure getcaps returns a subset of the template caps
22590 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
22591 (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
22592 (gst_dvd_demux_get_subpicture_stream),
22593 (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
22594 * gst/mpegstream/gstdvddemux.h:
22595 Set the explicit caps on the current_video pad before pushing
22597 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
22598 (gst_mpeg_demux_get_audio_stream):
22599 Free caps used to gst_pad_set_explicit_caps, which takes a const
22602 2004-07-28 Thomas Vander Stichele <thomas at apestaart dot org>
22604 * configure.ac: update GStreamer requirement to 0.8.4 because of
22607 2004-07-28 Wim Taymans <wim@fluendo.com>
22609 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
22610 (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
22611 Add the pad to the element after setting up the caps. This
22612 makes it a lot easier to autoplug.
22614 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
22616 * gst/median/gstmedian.c:
22617 * gst/mpeg2subt/gstmpeg2subt.c:
22618 * gst/mpegaudioparse/gstmpegaudioparse.c:
22619 * gst/mpegstream/gstdvddemux.c:
22620 * gst/mpegstream/gstmpegdemux.c:
22621 * gst/mpegstream/gstmpegpacketize.c:
22622 * gst/rtjpeg/gstrtjpeg.c:
22623 * gst/rtjpeg/gstrtjpegdec.c:
22624 * gst/rtjpeg/gstrtjpegenc.c:
22625 * gst/sine/gstsinesrc.c:
22626 * gst/smooth/gstsmooth.c:
22627 * gst/smpte/gstsmpte.c:
22628 * gst/smpte/gstsmpte.h:
22629 * gst/stereo/gststereo.c:
22630 * gst/videofilter/gstgamma.c:
22631 * gst/videofilter/gstvideobalance.c:
22632 * gst/videofilter/gstvideofilter.c:
22633 * gst/videofilter/gstvideoflip.c:
22634 * gst/videoscale/gstvideoscale.c:
22635 * gst/videoscale/videoscale.c:
22636 * gst/videotestsrc/gstvideotestsrc.c:
22637 * gst/videotestsrc/videotestsrc.c:
22638 * gst/wavenc/gstwavenc.c:
22639 * gst/wavparse/gstwavparse.c:
22640 fix local includes and 64 bits constants
22642 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
22645 * gst-libs/gst/*/*.vcproj:
22647 more working plugins
22649 2004-07-27 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22651 * testsuite/alsa/Makefile.am:
22652 * testsuite/alsa/srcstate.c:
22653 add test for alsasrc changing state
22655 2004-07-27 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22657 * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
22659 * gst/silence/gstsilence.h:
22660 fix silence generation for 16bit raw audio
22662 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22664 * gst/matroska/matroska-demux.c:
22665 (gst_matroska_demux_parse_metadata),
22666 (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
22667 * gst/mpegaudio/common.c:
22668 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
22669 (gst_videoscale_getcaps), (gst_videoscale_link),
22670 (gst_videoscale_src_fixate), (gst_videoscale_init),
22671 (gst_videoscale_finalize):
22672 * gst/videoscale/gstvideoscale.h:
22673 * gst/videotestsrc/gstvideotestsrc.c:
22674 (gst_videotestsrc_get_capslist):
22675 * gst/wavenc/gstwavenc.c:
22676 * sys/oss/gstossmixer.c: (fill_labels):
22677 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22678 (gst_ximagesink_handle_xevents),
22679 (gst_ximagesink_calculate_pixel_aspect_ratio),
22680 (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
22681 (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
22682 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
22683 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
22684 (gst_ximagesink_init), (gst_ximagesink_class_init):
22685 * sys/ximage/ximagesink.h:
22686 * sys/xvimage/xvimagesink.c:
22687 (gst_xvimagesink_calculate_pixel_aspect_ratio),
22688 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
22689 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
22690 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22691 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22692 * sys/xvimage/xvimagesink.h:
22693 first batch of pixel aspect ratio commits.
22695 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22697 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22698 (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
22699 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
22700 handle stride, needs work if we want to move stride handling
22701 upstream, but works correctly for our purposes.
22703 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22705 * gst/videoscale/README:
22706 add testing examples
22707 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
22708 (gst_videoscale_chain):
22709 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22710 (gst_videoscale_get_size):
22711 add get_size function that handles stride like videotestsrc.
22712 fixes conversion for YUV formats for as much as I can test them.
22714 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22716 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22717 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
22718 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22719 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
22720 (gst_xvimagesink_xvimage_put):
22721 further cleanups, logging, error handling and synchronizing
22723 2004-07-27 Wim Taymans <wim@fluendo.com>
22725 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
22726 (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
22727 (gst_videomixer_pad_set_property),
22728 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
22729 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
22730 (gst_videomixer_class_init), (gst_videomixer_init),
22731 (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
22732 (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
22733 (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
22734 (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
22735 (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
22736 (gst_videomixer_loop), (plugin_init):
22737 Be a nicer negotiation citizen and provide a getcaps function on
22738 the srcpad. This also fixes a crash when resizing.
22740 2004-07-27 Julien MOUTTE <julien@moutte.net>
22742 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22743 (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
22745 2004-07-27 Wim Taymans <wim@fluendo.com>
22747 * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
22748 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22749 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22750 (gst_pngenc_set_property):
22751 * ext/libpng/gstpngenc.h:
22752 Added snapshot property to pngenc.
22753 removed g_print from pngdec
22755 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
22757 * gst/ac3parse/ac3parse.vcproj
22758 * gst/adder/adder.vcproj
22759 * gst/alpha/alpha.vcproj
22760 * gst/alpha/alphacolor.vcproj
22761 * gst/asfdemux/asf.vcproj
22762 * gst/audioconvert/audioconvert.vcproj
22763 * gst/audiorate/audiorate.vcproj
22764 * gst/audioscale/audioscale.vcproj
22765 * gst/auparse/auparse.vcproj
22766 * gst/avi/avi.vcproj
22767 * gst/cdxaparse/cdxaparse.vcproj
22768 * gst/chart/chart.vcproj
22769 * gst/colorspace/colorspace.vcproj
22770 * gst/cutter/cutter.vcproj
22771 * gst/debug/debug.vcproj
22772 * gst/debug/efence.vcproj
22773 * gst/debug/navigationtest.vcproj
22774 * gst/deinterlace/deinterlace.vcproj
22775 * gst/effectv/effectv.vcproj
22776 * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
22777 * gst/filter/filter.vcproj
22778 * gst/flx/flxdec.vcproj
22779 * gst/goom/goom.vcproj
22780 * gst/interleave/interleave.vcproj
22781 * gst/law/alaw.vcproj
22782 * gst/law/mulaw.vcproj
22783 * gst/matroska/matroska.vcproj
22784 * gst/median/median.vcproj
22785 * gst/mixmatrix/mixmatrix.vcproj
22786 * gst/mpeg1sys/mpeg1systemencode.vcproj
22787 * gst/mpeg1videoparse/mp1videoparse.vcproj
22788 * gst/mpeg2sub/mpeg2subt.vcproj
22789 * gst/mpegaudio/mpegaudio.vcproj
22790 * gst/mpegaudioparse/mpegaudioparse.vcproj
22791 * gst/mpegstream/mpegstream.vcproj
22792 * gst/multifilesink/multifilesink.vcproj
22793 * gst/multipart/multipart.vcproj
22794 * gst/oneton/oneton.vcproj
22795 * gst/overlay/overlay.vcproj
22796 * gst/passthrough/passthrough.vcproj
22797 * gst/qtdemux/qtdemux.vcproj
22798 * gst/realmedia/rmdemux.vcproj
22799 * gst/rtjpeg/rtjpeg.vcproj
22800 * gst/rtp/rtp.vcproj
22801 * gst/silence/silence.vcproj
22802 * gst/sine/sinesrc.vcproj
22803 * gst/smooth/smooth.vcproj
22804 * gst/smpte/smpte.vcproj
22805 * gst/spectrum/spectrum.vcproj
22806 * gst/speed/speed.vcproj
22807 * gst/stereo/stereo.vcproj
22808 * gst/switch/switch.vcproj
22809 * gst/tags/tagedit.vcproj
22810 * gst/tcp/tcp.vcproj
22811 * gst/typefind/typefindfunctions.vcproj
22812 * gst/udp/udp.vcproj
22813 * gst/videobox/videobox.vcproj
22814 * gst/videocrop/videocrop.vcproj
22815 * gst/videodrop/videodrop.vcproj
22816 * gst/videofilter/gamma.vcproj
22817 * gst/videofilter/videobalance.vcproj
22818 * gst/videofilter/videofilter.vcproj
22819 * gst/videofilter/videoflip.vcproj
22820 * gst/videoflip/videoflip.vcproj
22821 * gst/videomixer/videomixer.vcproj
22822 * gst/videorate/videorate.vcproj
22823 * gst/videoscale/videoscale.vcproj
22824 * gst/videotestsrc/videotestsrc.vcproj
22825 * gst/virtualdub/virtualdub.vcproj
22826 * gst/volenv/volenv.vcproj
22827 * gst/volume/volume.vcproj
22828 * gst/wavenc/wavenc.vcproj
22829 * gst/wavparse/wavparse.vcproj
22830 * gst/y4m/y4menc.vcproj
22831 * gst-libs/gst/audio/audio.vcproj
22832 * gst-libs/gst/audio/audiofilter.vcproj
22833 * gst-libs/gst/colorbalance/colorbalance.vcproj
22834 * gst-libs/gst/idct/idtc.vcproj
22835 * gst-libs/gst/media-info/media-info.vcproj
22836 * gst-libs/gst/mixer/mixer.vcproj
22837 * gst-libs/gst/navigation/navigation.vcproj
22838 * gst-libs/gst/play/play.vcproj
22839 * gst-libs/gst/propertyprobe/propertyprobe.vcproj
22840 * gst-libs/gst/resample/resample.vcproj
22841 * gst-libs/gst/riff/riff.vcproj
22842 * gst-libs/gst/tuner/tuner.vcproj
22843 * gst-libs/gst/video/video.vcproj
22844 * gst-libs/gst/xoverlay/xoverlay.vcproj
22845 avoid problems with math.h, fix release dependancy
22846 rename GStreamer-0.8.lib to libgstreamer.lib
22848 2004-07-27 Julien MOUTTE <julien@moutte.net>
22850 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
22851 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
22852 the atom is not available we have to unlock the mutex. Fixes #148023
22854 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22856 * gst-libs/gst/media-info/media-info.h:
22857 issue for a vararg macro with MSVC
22859 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22861 * gst/effectv/effectv.vcproj
22862 * gst-libs/gst/idct/idct.vcproj:
22863 * gst-libs/gst/media-info/media-info.vcproj:
22864 * gst-libs/gst/navigation/navigation.vcproj:
22865 * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
22866 * gst-libs/gst/video/video.vcproj:
22867 * gst-libs/gst/xoverlay/xoverlay.vcproj:
22868 fixes for build problems
22870 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22872 * gst-libs/gst/audio/audio.def:
22873 * gst-libs/gst/audio/riff.def:
22874 add some definitions needed by plugins
22876 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22878 * gst/asfdemux/gstasfmux.c
22879 Fix some 64 bits constants to be glib friendly
22881 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22883 * gst/ac3parse/gstac3parse.c
22884 * gst/audioscale/gstaudioscale.c
22885 * gst/auparse/gstauparse.c
22886 * gst/colorspace/gstcolorspace.c
22887 * gst/colorspace/yuv2rgb.h
22888 local include fixes
22890 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22893 add more plugins to the build
22895 2004-07-26 Julien MOUTTE <julien@moutte.net>
22897 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22898 (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
22900 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22902 * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
22903 (gst_level_set_property), (gst_level_get_property),
22904 (gst_level_base_init), (gst_level_class_init):
22905 add debugging categories. cleanups.
22907 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22909 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22910 (gst_videoscale_planar411), (gst_videoscale_planar400),
22911 (gst_videoscale_packed422), (gst_videoscale_packed422rev),
22912 (gst_videoscale_scale_nearest_str1),
22913 (gst_videoscale_scale_nearest_str2),
22914 (gst_videoscale_scale_nearest_str4),
22915 (gst_videoscale_scale_nearest_16bit),
22916 (gst_videoscale_scale_nearest_24bit):
22917 fixed stride issues
22918 tested with 320x240 -> 321, 322, 324 x240
22919 tested with YV12, I420, YUY2, UYVY
22920 fixed packed422rev (don't think it could have worked before)
22921 by testing with UYVY
22923 2004-07-26 Benjamin Otte <otte@gnome.org>
22925 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
22926 (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
22928 add debugging category, add error checks like checking return values
22929 of setup calls, make sure it still works after
22930 PLAYING=>NULL=>PLAYING, fix encoding of mono streams
22932 2004-07-26 Wim Taymans <wim@fluendo.com>
22934 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
22935 (gst_mpeg_demux_get_audio_stream),
22936 (gst_mpeg_demux_process_private):
22937 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
22938 Check for error codes from the negotiation functions. Make sure
22939 we really set the pad caps when a new pad is created.
22941 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22943 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
22944 (gst_ffmpeg_caps_to_pix_fmt):
22945 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
22946 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22947 (gst_ffmpegcolorspace_pad_link):
22948 don't make function do two things at the same time without reason.
22950 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22952 * gst/ac3parse/ac3parse.vcproj
22953 * gst/adder/adder.vcproj
22954 * gst/alpha/alpha.vcproj
22955 * gst/alpha/alphacolor.vcproj
22956 * gst/asfdemux/asf.vcproj
22957 * gst/audioconvert/audioconvert.vcproj
22958 * gst/audiorate/audiorate.vcproj
22959 * gst/audioscale/audioscale.vcproj
22960 * gst/auparse/auparse.vcproj
22961 * gst/avi/avi.vcproj
22962 * gst/cdxaparse/cdxaparse.vcproj
22963 * gst/chart/chart.vcproj
22964 * gst/colorspace/colorspace.vcproj
22965 * gst/cutter/cutter.vcproj
22966 * gst/debug/debug.vcproj
22967 * gst/debug/efence.vcproj
22968 * gst/debug/navigationtest.vcproj
22969 * gst/deinterlace/deinterlace.vcproj
22970 * gst/effectv/effectv.vcproj
22971 * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
22972 * gst/filter/filter.vcproj
22973 * gst/flx/flxdec.vcproj
22974 * gst/goom/goom.vcproj
22975 * gst/interleave/interleave.vcproj
22976 * gst/law/alaw.vcproj
22977 * gst/law/mulaw.vcproj
22978 * gst/matroska/matroska.vcproj
22979 * gst/median/median.vcproj
22980 * gst/mixmatrix/mixmatrix.vcproj
22981 * gst/mpeg1sys/mpeg1systemencode.vcproj
22982 * gst/mpeg1videoparse/mp1videoparse.vcproj
22983 * gst/mpeg2sub/mpeg2subt.vcproj
22984 * gst/mpegaudio/mpegaudio.vcproj
22985 * gst/mpegaudioparse/mpegaudioparse.vcproj
22986 * gst/mpegstream/mpegstream.vcproj
22987 * gst/multifilesink/multifilesink.vcproj
22988 * gst/multipart/multipart.vcproj
22989 * gst/oneton/oneton.vcproj
22990 * gst/overlay/overlay.vcproj
22991 * gst/passthrough/passthrough.vcproj
22992 * gst/qtdemux/qtdemux.vcproj
22993 * gst/realmedia/rmdemux.vcproj
22994 * gst/rtjpeg/rtjpeg.vcproj
22995 * gst/rtp/rtp.vcproj
22996 * gst/silence/silence.vcproj
22997 * gst/sine/sinesrc.vcproj
22998 * gst/smooth/smooth.vcproj
22999 * gst/smpte/smpte.vcproj
23000 * gst/spectrum/spectrum.vcproj
23001 * gst/speed/speed.vcproj
23002 * gst/stereo/stereo.vcproj
23003 * gst/switch/switch.vcproj
23004 * gst/tags/tagedit.vcproj
23005 * gst/tcp/tcp.vcproj
23006 * gst/typefind/typefindfunctions.vcproj
23007 * gst/udp/udp.vcproj
23008 * gst/videobox/videobox.vcproj
23009 * gst/videocrop/videocrop.vcproj
23010 * gst/videodrop/videodrop.vcproj
23011 * gst/videofilter/gamma.vcproj
23012 * gst/videofilter/videobalance.vcproj
23013 * gst/videofilter/videofilter.vcproj
23014 * gst/videofilter/videoflip.vcproj
23015 * gst/videoflip/videoflip.vcproj
23016 * gst/videomixer/videomixer.vcproj
23017 * gst/videorate/videorate.vcproj
23018 * gst/videoscale/videoscale.vcproj
23019 * gst/videotestsrc/videotestsrc.vcproj
23020 * gst/virtualdub/virtualdub.vcproj
23021 * gst/volenv/volenv.vcproj
23022 * gst/volume/volume.vcproj
23023 * gst/wavenc/wavenc.vcproj
23024 * gst/wavparse/wavparse.vcproj
23025 * gst/y4m/y4menc.vcproj
23026 more plugins supported under windows
23028 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
23030 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
23031 (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
23032 (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
23033 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
23034 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
23035 Add debugging statements. Use the sizes as returned by the
23036 *CreateImage calls.
23038 2004-07-26 Johan Dahlin <johan@gnome.org>
23040 * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
23041 the pad is negotiated.
23043 * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
23045 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
23047 * gst-libs/gst/colorbalance/colorbalance.vcproj:
23048 * gst-libs/gst/idct/idct.vcproj:
23049 * gst-libs/gst/media-info/media-info.vcproj:
23050 * gst-libs/gst/mixer/mixer.vcproj:
23051 * gst-libs/gst/navigation/navigation.vcproj:
23052 * gst-libs/gst/play/play.vcproj:
23053 * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
23054 * gst-libs/gst/resample/resample.vcproj:
23055 * gst-libs/gst/tuner/tuner.vcproj:
23056 * gst-libs/gst/video/video.vcproj:
23057 * gst-libs/gst/xoverlay/xoverlay.vcproj:
23058 more plugins supported under windows
23060 2004-07-25 Iain <iain@prettypeople.org>
23062 * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
23063 pad now rather than when the pad is created because state changes wipe
23064 explicit caps (fixes #148043).
23066 2004-07-25 Sebastien Cote <sc5@hermes.usherb.ca>
23068 reviewed by Benjamin Otte <otte@gnome.org>
23070 * ext/mad/gstmad.c:
23071 fix mad plugin crashing on Sun (fixes #148289)
23073 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23076 * gst/avi/avi.vcproj:
23077 * gst/matroska/matroska.def:
23078 * gst/matroska/matroska.vcproj:
23079 remove unused .def files
23081 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23083 * gst-libs/gst/audio/gstaudiofilter.c:
23084 Clean the local include
23086 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23089 * gst-libs/gst/audio/audio.def:
23090 * gst-libs/gst/audio/audio.vcproj:
23091 * gst-libs/gst/audio/audiofilter.vcproj:
23092 * gst-libs/gst/audio/riff.def:
23093 * gst-libs/gst/audio/riff.vcproj:
23094 * gst-libs/gst/gst-libs.def:
23095 * gst-libs/gst/gst-libs.vcproj:
23096 * gst/avi/avi.vcproj:
23097 * gst/avi/avi.vcproj:
23098 Copy the files where needed after building, cleaner projects
23100 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23102 * gst/matroska/ebml-write.c:
23103 Fix some 64 bits constants to be glib friendly
23105 2004-07-24 Steve Lhomme <steve.lhomme@free.fr>
23108 * gst-libs/gst/gst-libs.def:
23109 * gst-libs/gst/gst-libs.vcproj:
23110 * gst/matroska/matroska.def:
23111 * gst/matroska/matroska.vcproj:
23112 Add the preliminary canvas to build plugins on Win32
23114 2004-07-23 Benjamin Otte <otte@gnome.org>
23116 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
23117 don't enfore negotiation from source side, it breaks
23118 sinesrc ! audioconvert ! osssink
23120 2004-07-22 David Schleef <ds@schleef.org>
23122 * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
23123 for ELF files, since they can easily be recognized as audio/mpeg.
23126 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
23128 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
23129 (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
23130 (gst_videoscale_scale_nearest_24bit),
23131 (gst_videoscale_scale_nearest_16bit):
23132 fix 16bit and 24bit for stride (24bit might need testing)
23133 don't pretend we do more than one algorithm
23135 2004-07-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
23139 * gst/multifilesink/Makefile.am:
23140 * gst/multifilesink/gstmultifilesink.c:
23141 (gst_multifilesink_get_formats),
23142 (gst_multifilesink_get_query_types), (_do_init),
23143 (gst_multifilesink_base_init), (gst_multifilesink_class_init),
23144 (gst_multifilesink_init), (gst_multifilesink_dispose),
23145 (gst_multifilesink_set_location), (gst_multifilesink_set_property),
23146 (gst_multifilesink_get_property), (gst_multifilesink_open_file),
23147 (gst_multifilesink_close_file), (gst_multifilesink_next_file),
23148 (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
23149 (gst_multifilesink_chain), (gst_multifilesink_change_state),
23150 (gst_multifilesink_uri_get_type),
23151 (gst_multifilesink_uri_get_protocols),
23152 (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
23153 (gst_multifilesink_uri_handler_init), (plugin_init):
23154 * gst/multifilesink/gstmultifilesink.h:
23155 * testsuite/Makefile.am:
23156 * testsuite/multifilesink/Makefile.am:
23157 * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
23158 (gst_newmedia_class_init), (gst_newmedia_init),
23159 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
23160 (newfile_signal), (test_signal), (main):
23161 multifilesink plugin for creating new files every time a new media
23162 discontinuity event occurs
23164 2004-07-22 Wim Taymans <wim@fluendo.com>
23166 * gst/alpha/Makefile.am:
23167 * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
23168 (gst_alpha_color_base_init), (gst_alpha_color_class_init),
23169 (gst_alpha_color_init), (gst_alpha_color_set_property),
23170 (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
23171 (transform), (gst_alpha_color_chain),
23172 (gst_alpha_color_change_state), (plugin_init):
23173 Stupid plugin to to RGBA to AYUV conversion because none of
23174 the colorspace plugins can handle that yet.
23176 2004-07-22 Wim Taymans <wim@fluendo.com>
23178 * examples/seeking/seek.c: (update_scale), (main):
23179 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23180 (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
23181 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
23182 (gst_decode_bin_init), (gst_decode_bin_dispose),
23183 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23184 (no_more_pads), (close_link), (type_found),
23185 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23187 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23188 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23189 (gst_play_base_bin_dispose), (queue_overrun),
23190 (gen_preroll_element), (remove_prerolls), (unknown_type),
23191 (no_more_pads), (new_stream), (setup_source),
23192 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
23193 (play_base_eos), (gst_play_base_bin_change_state),
23194 (gst_play_base_bin_add_element),
23195 (gst_play_base_bin_remove_element),
23196 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23197 (gst_play_base_bin_unlink_stream),
23198 (gst_play_base_bin_get_streaminfo):
23199 * gst/playback/gstplaybin.c: (gen_video_element),
23200 (gen_audio_element):
23201 * gst/playback/gststreaminfo.h:
23202 More playback updates, attempt to fix things after the state change
23205 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
23207 * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
23208 (gst_videoscale_scale_nearest_16bit):
23211 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
23213 * gst/videotestsrc/gstvideotestsrc.c:
23214 (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
23215 (gst_videotestsrc_init), (gst_videotestsrc_get),
23216 (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
23217 (gst_videotestsrc_get_property):
23218 * gst/videotestsrc/gstvideotestsrc.h:
23219 * gst/videotestsrc/videotestsrc.c:
23220 * gst/videotestsrc/videotestsrc.h:
23221 cleanup and commenting
23223 2004-07-21 Wim Taymans <wim@fluendo.com>
23225 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
23226 (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
23227 (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
23228 (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
23229 (_find_chain_get_unknown_part), (_find_streams_check),
23230 (gst_ogg_demux_push), (gst_ogg_pad_push):
23231 * ext/theora/theoradec.c: (theora_get_formats),
23232 (theora_dec_src_convert), (theora_dec_sink_convert),
23233 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
23234 (theora_dec_chain):
23235 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
23236 (vorbis_dec_convert), (vorbis_dec_src_query),
23237 (vorbis_dec_src_event), (vorbis_dec_event):
23238 More seeking fixes, oggdemux now supports seeking to time and
23239 uses the downstream element to convert granulepos to time.
23240 Seeking in theora-only ogg files now works.
23242 2004-07-21 Wim Taymans <wim@fluendo.com>
23244 * ext/theora/theoradec.c: (gst_theora_dec_init),
23245 (theora_get_formats), (theora_get_event_masks),
23246 (theora_get_query_types), (theora_dec_src_convert),
23247 (theora_dec_sink_convert), (theora_dec_src_query),
23248 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
23249 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
23250 (vorbis_get_event_masks), (vorbis_get_query_types),
23251 (gst_vorbis_dec_init), (vorbis_dec_convert),
23252 (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
23253 Added query/convert/formats functions to vorbis and theora decoders
23254 so that the outside world can use them too. Fixed seeking on an
23255 ogg/theora/vorbis file by disabling the seeking seeking on the
23258 2004-07-21 Julien MOUTTE <julien@moutte.net>
23260 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
23261 (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
23262 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
23263 images creation for both elements. We don't create the image on caps
23264 nego or renego, we just destroy the internal one if present if it does
23265 not match the needs. The chain function takes care of creating a new
23267 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
23268 (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
23269 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
23270 (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
23271 the image format information. The buffer pool checks for the context
23272 image format and discard images with different formats.
23273 * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
23275 2004-07-21 Thomas Vander Stichele <thomas at apestaart dot org>
23277 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23278 (gst_ffmpegcolorspace_chain):
23279 no point in doing any chaining if the pad we want to push from
23282 2004-07-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
23284 * gst-libs/gst/riff/riff-media.c:
23285 (gst_riff_create_audio_caps_with_data):
23286 Fix double end-to-native symbol conversion (#148021).
23288 2004-07-20 David Schleef <ds@schleef.org>
23290 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
23291 Don't use an Atom that doesn't exist.
23293 2004-07-20 Wim Taymans <wim@fluendo.com>
23295 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23296 (gst_multifdsink_add), (gst_multifdsink_get_stats),
23297 (gst_multifdsink_client_remove),
23298 (gst_multifdsink_handle_client_write),
23299 (gst_multifdsink_queue_buffer):
23300 * gst/tcp/gstmultifdsink.h:
23301 More multifdsink stats. Avoid deadlock by releasing locks
23302 before sending out a signal.
23304 2004-07-20 Thomas Vander Stichele <thomas at apestaart dot org>
23308 added Hungarian translation (Laszlo Dvornik)
23310 2004-07-20 Wim Taymans <wim@fluendo.com>
23312 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23313 (gst_multifdsink_add), (gst_multifdsink_client_remove),
23314 (gst_multifdsink_handle_client_write),
23315 (gst_multifdsink_queue_buffer):
23316 * gst/tcp/gsttcp-marshal.list:
23317 Fixed the stupid marshal definition.
23319 2004-07-20 Wim Taymans <wim@fluendo.com>
23321 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23322 (gst_multifdsink_init), (gst_multifdsink_add),
23323 (gst_multifdsink_client_remove),
23324 (gst_multifdsink_handle_client_write),
23325 (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
23326 (gst_multifdsink_set_property), (gst_multifdsink_get_property),
23327 (gst_multifdsink_init_send):
23328 * gst/tcp/gstmultifdsink.h:
23329 Added more stats, added timeout for a client, fixed some typos
23330 and added some comments.
23332 2004-07-20 Wim Taymans <wim@fluendo.com>
23334 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23335 (gst_multifdsink_add), (gst_multifdsink_get_stats),
23336 (gst_multifdsink_client_remove),
23337 (gst_multifdsink_handle_client_write):
23338 * gst/tcp/gstmultifdsink.h:
23339 * gst/tcp/gsttcp-marshal.list:
23340 Added get_stats method that returns a GValueArray of
23343 2004-07-19 Benjamin Otte <otte@gnome.org>
23345 * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
23346 make sure longname, description and author are valid UTF-8
23348 2004-07-19 Thomas Vander Stichele <thomas at apestaart dot org>
23350 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
23351 (gst_ximagesink_set_property):
23352 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
23353 (gst_xvimagesink_set_property):
23354 make sure SYNCHRONOUS is respected after getting the X context
23356 2004-07-18 Thomas Vander Stichele <thomas at apestaart dot org>
23358 * gst/matroska/matroska-demux.c:
23359 (gst_matroska_demux_handle_src_event),
23360 (gst_matroska_demux_parse_blockgroup):
23361 * gst/matroska/matroska-ids.h:
23362 add BlockReference tag and ignore it to clear out log.
23363 ignore NAVIGATION events to clear out log.
23365 2004-07-18 Thomas Vander Stichele <thomas at apestaart dot org>
23367 * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
23368 (gst_matroska_demux_add_stream):
23369 * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
23370 add debug categories
23372 2004-07-16 Wim Taymans <wim@fluendo.com>
23374 * ext/libpng/Makefile.am:
23375 * ext/libpng/gstpng.c: (plugin_init):
23376 * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
23377 (gst_pngdec_get_type), (gst_pngdec_base_init),
23378 (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
23379 (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
23380 * ext/libpng/gstpngdec.h:
23383 2004-07-16 Julien MOUTTE <julien@moutte.net>
23385 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
23386 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
23387 (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
23388 (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
23389 (gst_ximagesink_buffer_alloc):
23390 * sys/ximage/ximagesink.h:
23391 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
23392 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
23393 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
23394 (gst_xvimagesink_buffer_alloc):
23395 * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
23396 again. Using internal data pointer of the x(v)image to store image's
23397 data to be coherent with the buffer alloc mechanism. Investigated the
23398 image destruction code to be sure that everything gets freed correctly.
23400 2004-07-16 Wim Taymans <wim@fluendo.com>
23402 * gst-libs/gst/riff/riff-read.c:
23403 (gst_riff_read_strf_vids_with_data),
23404 (gst_riff_read_strf_auds_with_data):
23405 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
23406 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
23407 Make sure we don't create 0 sized subbuffers in riff-read.
23408 Signal the no more pads signal after reading the avi header.
23410 2004-07-16 Wim Taymans <wim@fluendo.com>
23412 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23413 (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
23414 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
23415 (gst_decode_bin_init), (gst_decode_bin_dispose),
23416 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23417 (no_more_pads), (close_link), (type_found),
23418 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23419 (gst_decode_bin_change_state), (plugin_init):
23420 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23421 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23422 (gst_play_base_bin_dispose), (queue_overrun),
23423 (gen_preroll_element), (remove_prerolls), (unknown_type),
23424 (no_more_pads), (new_stream), (setup_source),
23425 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
23426 (play_base_eos), (gst_play_base_bin_change_state),
23427 (gst_play_base_bin_add_element),
23428 (gst_play_base_bin_remove_element),
23429 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23430 (gst_play_base_bin_unlink_stream),
23431 (gst_play_base_bin_get_streaminfo):
23432 * gst/playback/gstplaybasebin.h:
23433 Better error recovery. Added configurable preroll queue size. Faster
23434 detection of no-more-pads.
23436 2004-07-16 Wim Taymans <wim@fluendo.com>
23438 * gst-libs/gst/video/video.h:
23439 Added 32 bits RGBA. Not sure if we should use another mime-type
23440 for alpha rgb. Currently the presence of the alpha_mask property
23441 signals an alpha channel.
23443 2004-07-16 Wim Taymans <wim@fluendo.com>
23445 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
23446 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
23447 FPS seems to be 0.0 to MAX everywhere else.
23449 2004-07-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
23451 * gst-libs/gst/riff/riff-media.c:
23452 (gst_riff_create_video_caps_with_data):
23453 mp42/mp43 (no caps) exist too.
23454 * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
23455 Set pixel_width/height; we've got them in-caps.
23456 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
23457 * gst/wavparse/gstwavparse.c: (plugin_init):
23458 Both are valid primary.
23459 * sys/oss/gstossmixer.c:
23460 Remove i18n hack and enable translations.
23462 2004-07-15 Benjamin Otte <otte@gnome.org>
23464 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
23465 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
23466 fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
23468 2004-07-15 Benjamin Otte <otte@gnome.org>
23470 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
23471 (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
23472 (gst_alsa_close_audio):
23473 disable some of the debugging code for now. Writing debugging to a
23474 buffer is broken in current alsalib releases.
23476 2004-07-12 Benjamin Otte <otte@gnome.org>
23478 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
23481 2004-07-14 Thomas Vander Stichele <thomas at apestaart dot org>
23483 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
23484 (theora_dec_src_query), (theora_dec_event):
23485 * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
23486 add debugging categories. Remove \n's.
23488 2004-07-13 Johan Dahlin <johan@gnome.org>
23490 * gst/playback/gstplaybin.c (gst_play_bin_set_property)
23491 (gst_play_bin_get_property): Impl.
23493 2004-07-13 Wim Taymans <wim@fluendo.com>
23495 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
23496 When trying to find the stream length, seek back N pages
23497 instead of just one, where N is the number of streams in
23500 2004-07-13 Wim Taymans <wim@fluendo.com>
23502 * gst-libs/gst/riff/riff-media.c:
23503 (gst_riff_create_audio_caps_with_data),
23504 (gst_riff_create_audio_caps),
23505 (gst_riff_create_audio_template_caps):
23506 * gst-libs/gst/riff/riff-media.h:
23507 * gst-libs/gst/riff/riff-read.c:
23508 (gst_riff_read_strf_vids_with_data),
23509 (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
23510 * gst-libs/gst/riff/riff-read.h:
23511 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
23512 (gst_avi_demux_add_stream):
23513 Set codec_data on caps for avidemuxer.
23515 2004-07-12 David Schleef <ds@schleef.org>
23517 * configure.ac: Fix test for Objective C
23519 2004-07-12 Jan Schmidt <thaytan@mad.scientist.com>
23520 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
23521 (gst_gdk_pixbuf_chain):
23522 Add svg and pcx to template caps, and ensure that getcaps returns a
23523 subset of the template caps.
23524 Copy each row manually for output, as gdkpixbuf may pad the
23525 rowstride to a 32-bit word boundary.
23527 2004-07-12 Wim Taymans <wim@fluendo.com>
23529 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
23530 (gst_riff_create_video_template_caps):
23531 Fix the template caps to include some more media types.
23533 2004-07-12 Wim Taymans <wim@fluendo.com>
23535 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23536 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23537 (compare_ranks), (print_feature), (gst_decode_bin_init),
23538 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23539 (try_to_link_1), (new_pad), (close_link), (type_found),
23540 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23541 (gst_decode_bin_change_state), (plugin_init):
23542 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23543 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23544 (gst_play_base_bin_dispose), (queue_overrun),
23545 (gen_preroll_element), (remove_prerolls), (no_more_pads),
23546 (new_stream), (setup_source), (gst_play_base_bin_set_property),
23547 (gst_play_base_bin_get_property), (play_base_eos),
23548 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
23549 (gst_play_base_bin_remove_element),
23550 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23551 (gst_play_base_bin_unlink_stream),
23552 (gst_play_base_bin_get_streaminfo):
23553 * gst/playback/gstplaybasebin.h:
23554 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23555 (gst_play_bin_class_init), (gst_play_bin_init),
23556 (gst_play_bin_dispose), (gst_play_bin_set_property),
23557 (gst_play_bin_get_property), (gen_video_element),
23558 (gen_audio_element), (remove_sinks), (setup_sinks),
23559 (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
23560 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23561 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23562 (gst_play_bin_query), (plugin_init):
23563 * gst/playback/test4.c: (main):
23564 More fixes on reusing of the element.
23566 2004-07-11 Benjamin Otte <otte@gnome.org>
23568 * ext/mad/gstmad.c: (normal_seek):
23569 allow seeking for other methods than just SET
23571 2004-07-11 Andy Wingo <wingo@pobox.com>
23573 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
23574 float, "any" caps -> buffer_frames=[0,MAX].
23576 * gst/interleave/interleave.c (interleave_getcaps): Seems the core
23577 doesn't intersect our caps with the template any more. Do it
23579 (interleave_buffered_loop): Use g_newa instead of malloc/free.
23581 2004-07-09 Wim Taymans <wim@fluendo.com>
23583 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23584 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23585 (compare_ranks), (print_feature), (gst_decode_bin_init),
23586 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23587 (try_to_link_1), (new_pad), (close_link), (type_found),
23588 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23589 (gst_decode_bin_change_state), (plugin_init):
23590 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23591 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23592 (gst_play_base_bin_dispose), (queue_overrun),
23593 (gen_preroll_element), (remove_prerolls), (no_more_pads),
23594 (new_stream), (setup_source), (gst_play_base_bin_set_property),
23595 (gst_play_base_bin_get_property), (play_base_eos),
23596 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
23597 (gst_play_base_bin_remove_element),
23598 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23599 (gst_play_base_bin_unlink_stream),
23600 (gst_play_base_bin_get_streaminfo):
23601 * gst/playback/gstplaybasebin.h:
23602 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23603 (gst_play_bin_class_init), (gst_play_bin_init),
23604 (gst_play_bin_dispose), (gst_play_bin_set_property),
23605 (gst_play_bin_get_property), (gen_video_element),
23606 (gen_audio_element), (remove_sinks), (setup_sinks),
23607 (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
23608 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23609 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23610 (gst_play_bin_query), (plugin_init):
23611 * gst/playback/test4.c: (main):
23612 Work on object reuse and seeking.
23614 2004-07-09 Wim Taymans <wim@fluendo.com>
23616 * examples/seeking/seek.c: (iterate):
23617 Don't consume all CPU in the idle loop.
23619 2004-07-09 Wim Taymans <wim@fluendo.com>
23621 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
23622 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
23623 Add pad to element *after* setting the pad functions so that
23624 the scheduler can use the correct ones.
23626 2004-07-09 Wim Taymans <wim@fluendo.com>
23628 * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23629 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
23630 Sync to keyframe after seek
23632 2004-07-09 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23634 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
23635 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
23636 (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
23637 * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
23638 * ext/libvisual/visual.c: (gst_visual_change_state):
23639 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
23640 * ext/theora/theoradec.c: (theora_dec_change_state):
23641 * ext/theora/theoraenc.c: (theora_enc_change_state):
23642 * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
23643 * gst-libs/gst/navigation/navigation.c:
23644 * gst/adder/gstadder.c: (gst_adder_change_state):
23645 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
23646 (gst_audio_convert_get_buffer):
23647 * gst/multipart/multipartdemux.c:
23648 (gst_multipart_demux_change_state):
23649 * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
23650 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
23651 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
23652 * gst/videoscale/gstvideoscale.c:
23653 (gst_videoscale_handle_src_event):
23654 * gst/volume/gstvolume.c: (volume_chain_int16):
23655 don't assert in state change, this should be done by the base
23657 various debugging fixes.
23659 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23662 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23663 (gst_play_dispose), (gst_play_set_location),
23664 (gst_play_set_data_src), (gst_play_set_video_sink),
23665 (gst_play_set_audio_sink), (gst_play_set_visualization),
23666 (gst_play_connect_visualization), (gst_play_get_sink_element),
23667 (gst_play_get_all_by_interface):
23668 * gst-libs/gst/play/play.h:
23669 add new method to get elements implementing an interface.
23670 add various error logging
23672 2004-07-08 Wim Taymans <wim@fluendo.com>
23674 * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
23675 (make_mpeg_pipeline), (make_mpegnt_pipeline),
23676 (make_playerbin_pipeline), (query_durations_elems),
23677 (query_durations_pads), (query_positions_elems),
23678 (query_positions_pads), (update_scale), (iterate), (stop_seek),
23680 Added playbin seeking example.
23682 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23684 * gst-libs/gst/play/play.c: (gst_play_set_location),
23685 (gst_play_set_data_src), (gst_play_set_video_sink),
23686 (gst_play_set_audio_sink), (gst_play_set_visualization),
23687 (gst_play_connect_visualization), (gst_play_get_framerate):
23688 use a macro to look up elements from hash table
23690 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23692 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23693 (gst_play_get_length_callback), (gst_play_set_location),
23694 (gst_play_seek_to_time), (gst_play_set_data_src),
23695 (gst_play_set_video_sink), (gst_play_set_audio_sink),
23696 (gst_play_set_visualization), (gst_play_connect_visualization),
23697 (gst_play_get_sink_element):
23698 - add debugging info
23699 - fix looking up sink elements by iterating over complete caps
23700 - put everything except for source and autoplugger in a complete bin
23702 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23704 * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
23705 * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
23706 (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
23707 (gst_alsa_sink_write), (gst_alsa_sink_loop):
23708 * ext/alsa/gstalsasink.h:
23709 - add debugging info
23710 - clean up schizophrenia of data/buffer/event
23711 - fix double event unref error
23713 2004-07-08 Wim Taymans <wim@fluendo.com>
23715 * gst/playback/Makefile.am:
23716 Add headers to noinst
23718 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23720 * tools/gst-launch-ext-m.m:
23721 * tools/gst-launch-ext.1.in:
23722 convert to the third millenium
23724 2004-07-07 David Schleef <ds@schleef.org>
23726 * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
23728 2004-07-07 Wim Taymans <wim@fluendo.com>
23730 * gst/playback/Makefile.am:
23731 * gst/playback/README:
23732 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23733 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23734 (compare_ranks), (print_feature), (gst_decode_bin_init),
23735 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23736 (try_to_link_1), (new_pad), (close_link), (type_found),
23737 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23739 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23740 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23741 (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
23742 (gen_preroll_element), (no_more_pads), (new_stream),
23743 (setup_source), (gst_play_base_bin_set_property),
23744 (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
23745 (gst_play_base_bin_add_element),
23746 (gst_play_base_bin_remove_element),
23747 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23748 (gst_play_base_bin_unlink_stream),
23749 (gst_play_base_bin_get_streaminfo):
23750 * gst/playback/gstplaybasebin.h:
23751 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23752 (gst_play_bin_class_init), (gst_play_bin_init),
23753 (gst_play_bin_dispose), (gst_play_bin_set_property),
23754 (gst_play_bin_get_property), (gen_video_element),
23755 (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
23756 (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
23757 (gst_play_bin_get_formats), (gst_play_bin_convert),
23758 (gst_play_bin_get_query_types), (gst_play_bin_query),
23760 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
23761 (gst_stream_info_get_type), (gst_stream_info_class_init),
23762 (gst_stream_info_init), (gst_stream_info_new),
23763 (gst_stream_info_dispose), (gst_stream_info_set_property),
23764 (gst_stream_info_get_property):
23765 * gst/playback/gststreaminfo.h:
23766 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
23768 * gst/playback/test2.c: (main):
23769 * gst/playback/test3.c: (update_scale), (main):
23770 More playbin fixes. Added README. Do better element filtering.
23771 Added base class to preroll media. Added test apps.
23773 2004-07-07 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23775 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
23776 * ext/mpeg2dec/gstmpeg2dec.h:
23777 various debugging improvements. Reset stream to next picture
23778 instead of sequence header, otherwise seeks cannot work.
23780 2004-07-07 Wim Taymans <wim@fluendo.com>
23782 * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
23783 (gst_video_box_class_init), (gst_video_box_set_property),
23784 (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
23785 Use pad_alloc where possible.
23787 2004-07-07 Wim Taymans <wim@fluendo.com>
23789 * sys/oss/gstosselement.c: (gst_osselement_reset),
23790 (gst_osselement_parse_caps):
23791 * sys/oss/gstosselement.h:
23792 * sys/oss/gstosssrc.c: (gst_osssrc_get):
23793 Fix offset on osssrc.
23795 2004-07-07 Wim Taymans <wim@fluendo.com>
23797 * ext/theora/theora.c: (plugin_init):
23798 * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23799 (theora_dec_src_query), (theora_dec_chain):
23800 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
23801 (theora_enc_sink_link), (theora_buffer_from_packet),
23802 (theora_push_packet), (theora_enc_chain):
23803 Fix theora granulepos calculation.
23804 Fix overflow in duration/position calculation.
23805 Bump rank to PRIMARY for theoradec.
23806 Use granulepos of last packet to calculate position.
23807 Set keyframe flag on buffers when needed.
23809 2004-07-06 David Schleef <ds@schleef.org>
23811 * gst/playback/Makefile.am: 'test' in bin_PROGRAMS? Are you
23812 serious? (Fixed, obviously.)
23814 2004-07-06 Thomas Vander Stichele <thomas at apestaart dot org>
23818 added Czech translation (Miloslav Trmac)
23820 2004-07-05 Wim Taymans <wim@fluendo.com>
23822 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23823 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23824 (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23825 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23826 (close_link), (type_found), (gst_decode_bin_set_property),
23827 (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
23828 (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
23829 (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
23830 (gst_decode_bin_query), (plugin_init):
23831 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23832 (gst_play_bin_class_init), (gst_play_bin_init),
23833 (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
23834 (get_video_element), (new_pad), (setup_source),
23835 (gst_play_bin_set_property), (gst_play_bin_get_property),
23836 (gst_play_bin_change_state), (gst_play_bin_add_element),
23837 (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23838 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23839 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23840 (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23841 * gst/playback/test.c: (main):
23842 More fixes, cleaned up playbin, make it use decodebin. Added
23843 threaded property to playbin.
23845 2004-07-05 Wim Taymans <wim@fluendo.com>
23848 * gst/playback/Makefile.am:
23849 * gst/playback/decodetest.c: (main):
23850 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23851 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23852 (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23853 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23854 (close_link), (type_found), (gst_decode_bin_set_property),
23855 (gst_decode_bin_get_property), (gst_decode_bin_change_state),
23856 (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
23857 (gst_decode_bin_get_formats), (gst_decode_bin_convert),
23858 (gst_decode_bin_get_query_types), (gst_decode_bin_query),
23860 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23861 (gst_play_bin_class_init), (gst_play_bin_init),
23862 (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
23863 (collect_sink_pads), (find_compatibles), (close_pad_link),
23864 (try_to_link_1), (new_pad), (close_link), (type_found),
23865 (setup_source), (gst_play_bin_set_property),
23866 (gst_play_bin_get_property), (gst_play_bin_factory_filter),
23867 (compare_ranks), (gst_play_bin_collect_factories),
23868 (gst_play_bin_change_state), (gst_play_bin_add_element),
23869 (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23870 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23871 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23872 (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23873 * gst/playback/test.c: (main):
23874 Added some playback helper elements and some test apps, very alpha
23877 2004-07-04 Benjamin Otte <otte@gnome.org>
23879 * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23880 only restart audio when we indeed have an xrun to fix repeated
23881 xruns. Fix suggested by Giuliano Pochini.
23883 2004-07-03 David Schleef <ds@schleef.org>
23885 * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
23886 call to gst_debug_log() if debugging is disabled (bug #145118)
23888 2004-07-03 Benjamin Otte <otte@gnome.org>
23890 * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23891 use our own functions for restarting the alsa device.
23892 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23893 I should apply patches myself - use MIN for the third argument, not
23894 the second, this fixes seeking
23896 2004-07-02 David Schleef <ds@schleef.org>
23898 * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
23899 (gst_flacdec_write): Actually, GST_PAD_CAPS() has nothing to
23902 2004-07-02 David Schleef <ds@schleef.org>
23904 * ext/flac/gstflacdec.c: (gst_flacdec_write): Set duration on
23905 output buffers. Fix logic mistake. (bug #144866)
23907 2004-07-02 David Schleef <ds@schleef.org>
23909 * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
23910 on X. (bug #144753)
23912 2004-07-02 David Schleef <ds@schleef.org>
23914 * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
23915 (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
23917 * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
23918 (gst_osselement_rate_probe_check): Add another workaround for
23919 buggy drivers (bug #145336)
23921 2004-07-02 David Schleef <ds@schleef.org>
23923 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
23924 Most systems don't have MSG_NOSIGNAL.
23926 2004-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
23929 * gst-libs/gst/colorbalance/Makefile.am:
23930 * gst-libs/gst/mixer/Makefile.am:
23931 * gst-libs/gst/play/Makefile.am:
23932 * gst-libs/gst/tuner/Makefile.am:
23933 (hopefully) fix both install and dist and make error message useful.
23934 needs testing across automakes.
23936 2004-07-02 Benjamin Otte <otte@gnome.org>
23938 * ext/ogg/gstogg.c: (plugin_init):
23939 we require bytestream now
23940 * ext/ogg/gstoggdemux.c:
23941 huge diff to implement chain setup in a fast and generic way. This
23942 improves tag reading and startup of huge files (read: Theora videos)
23943 quite a bit. It probably contains bugs, too, so please test.
23944 Seeking is not improved to the fast method.
23946 2004-06-29 Wim Taymans <wim@fluendo.com>
23948 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
23949 * ext/ogg/gstoggmux.c:
23950 Fix memleak in oggdemux when running unconnected pads.
23951 doc update in mux, start working on keyframe mode.
23953 2004-06-29 Benjamin Otte <otte@gnome.org>
23955 * sys/oss/gstosssink.c:
23956 * sys/oss/gstosssrc.c:
23957 advertise correct template caps - we indeed do non-native endianness
23958 and 8bit audio has no endianness
23959 * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
23960 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
23961 avoid (wrong) duplications in getcaps function and return
23964 2004-06-29 Wim Taymans <wim@fluendo.com>
23966 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23967 (gst_multifdsink_class_init), (gst_multifdsink_add),
23968 (gst_multifdsink_remove), (gst_multifdsink_clear),
23969 (gst_multifdsink_client_remove),
23970 (gst_multifdsink_handle_client_read),
23971 (gst_multifdsink_client_queue_data),
23972 (gst_multifdsink_client_queue_caps),
23973 (gst_multifdsink_client_queue_buffer),
23974 (gst_multifdsink_handle_client_write),
23975 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
23976 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
23977 (gst_multifdsink_init_send), (gst_multifdsink_close):
23978 Fix wrong GList iteration that could crash the server when
23979 more then 2 clients disconnect at the same time. Read all the
23980 pending commands in one batch to recover from command storms under
23983 2004-06-28 Wim Taymans <wim@fluendo.com>
23985 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
23986 (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
23987 (gst_videomixer_pad_set_property),
23988 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
23989 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
23990 (gst_videomixer_class_init), (gst_videomixer_init),
23991 (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
23992 (pad_zorder_compare), (gst_videomixer_sort_pads),
23993 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
23994 (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
23995 (gst_videomixer_update_queues), (gst_videomixer_loop),
23997 Avoid divide by zero, choose masterpad as the pad with the highest
24000 2004-06-27 Julien Moutte <julien@moutte.net>
24002 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
24003 (gst_ximagesink_xwindow_new):
24004 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
24005 (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
24006 function directly. We might want to call it from somewhere else one day.
24008 2004-06-27 Julien Moutte <julien@moutte.net>
24010 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
24011 (gst_ximagesink_xwindow_new):
24012 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
24013 (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
24014 window decorations.
24016 2004-06-27 Wim Taymans <wim@fluendo.com>
24018 * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
24019 (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
24020 (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
24021 (gst_dvdec_set_property), (gst_dvdec_get_property):
24022 * ext/dv/gstdvdec.h:
24023 Implement drop_factor property to lower the framerate with
24026 2004-06-27 Thomas Vander Stichele <thomas at apestaart dot org>
24028 * gst-libs/gst/colorbalance/Makefile.am:
24029 * gst-libs/gst/mixer/Makefile.am:
24030 * gst-libs/gst/play/Makefile.am:
24031 * gst-libs/gst/tuner/Makefile.am:
24032 unbreak Company's fix that didn't install the -enum.h files
24034 2004-06-27 Wim Taymans <wim@fluendo.com>
24036 * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
24037 (gst_dvdec_change_state):
24038 * ext/dv/gstdvdec.h:
24039 Fix timestamp, duration and offset of the buffers.
24041 2004-06-27 Wim Taymans <wim@fluendo.com>
24043 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
24044 (gst_multifdsink_class_init), (gst_multifdsink_add),
24045 (gst_multifdsink_remove), (gst_multifdsink_clear),
24046 (gst_multifdsink_client_remove),
24047 (gst_multifdsink_handle_client_read),
24048 (gst_multifdsink_client_queue_data),
24049 (gst_multifdsink_client_queue_caps),
24050 (gst_multifdsink_client_queue_buffer),
24051 (gst_multifdsink_handle_client_write),
24052 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
24053 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
24054 (gst_multifdsink_init_send), (gst_multifdsink_close):
24055 * gst/tcp/gstmultifdsink.h:
24056 * gst/tcp/gsttcpserversink.c:
24057 (gst_tcpserversink_handle_server_read),
24058 (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
24059 More multifdsink fixes, more recovery policy fixes.
24060 Removed stupid g_print
24062 2004-06-26 Wim Taymans <wim@fluendo.com>
24064 * gst/tcp/Makefile.am:
24065 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
24066 (gst_multifdsink_get_type), (gst_multifdsink_base_init),
24067 (gst_multifdsink_class_init), (gst_multifdsink_init),
24068 (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
24069 (gst_multifdsink_handle_client_read),
24070 (gst_multifdsink_client_queue_data),
24071 (gst_multifdsink_client_queue_caps),
24072 (gst_multifdsink_client_queue_buffer),
24073 (gst_multifdsink_handle_client_write),
24074 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
24075 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
24076 (gst_multifdsink_chain), (gst_multifdsink_set_property),
24077 (gst_multifdsink_get_property), (gst_multifdsink_init_send),
24078 (gst_multifdsink_close), (gst_multifdsink_change_state):
24079 * gst/tcp/gstmultifdsink.h:
24080 * gst/tcp/gsttcpplugin.c: (plugin_init):
24081 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
24082 (gst_tcpserversink_class_init), (gst_tcpserversink_init),
24083 (gst_tcpserversink_handle_server_read),
24084 (gst_tcpserversink_handle_select),
24085 (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
24086 (gst_tcpserversink_init_send), (gst_tcpserversink_close):
24087 * gst/tcp/gsttcpserversink.h:
24088 Added multifdsink, made tcpserversink a subclass of fdsink, removed
24089 one of the locks, added recovery policy to multifdsink.
24091 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
24093 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
24094 fix decision for when getting frames with same timestamp
24095 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
24096 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24097 (gst_v4lsrc_get_property):
24098 * sys/v4l/gstv4lsrc.h:
24099 add latency offset property
24101 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
24103 * gst/videorate/gstvideorate.c: (gst_videorate_chain),
24105 fix debugging. add category.
24107 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
24109 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
24112 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
24114 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24115 (gst_alsa_src_get_time), (gst_alsa_src_loop),
24116 (gst_alsa_src_change_state):
24117 return a time that is in sync with the element's processing
24119 2004-06-25 Wim Taymans <wim@fluendo.com>
24121 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
24122 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
24123 (gst_tcpserversink_client_remove),
24124 (gst_tcpserversink_handle_client_read),
24125 (gst_tcpserversink_client_queue_data),
24126 (gst_tcpserversink_client_queue_caps),
24127 (gst_tcpserversink_client_queue_buffer),
24128 (gst_tcpserversink_handle_client_write),
24129 (gst_tcpserversink_queue_buffer),
24130 (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
24131 (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
24132 (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
24133 (gst_tcpserversink_close):
24134 * gst/tcp/gsttcpserversink.h:
24135 Serversink rewrite. Really do non blocking writes to clients and
24136 maintain an internal queue to handle slower clients while not
24137 disturbing fast clients.
24139 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
24141 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24142 better debug, don't override OFFSET and OFFSET_END
24144 2004-06-25 Iain <iain@prettypeople.org>
24146 * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
24147 name=source for the wavparse pipeline.
24149 2004-06-24 Johan Dahlin <johan@gnome.org>
24151 * ext/theora/theoraenc.c (theora_enc_chain): Call
24152 gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
24153 streamheader caps are set correctly.
24155 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
24157 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
24158 (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
24159 respect minimum bitrate; same could be done for max bitrate
24161 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
24163 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
24164 (gst_vorbisenc_setup):
24165 fix sample rate range
24167 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
24169 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
24170 (gst_oggvorbisenc_setup):
24171 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
24172 (gst_vorbisenc_setup):
24173 resolve ambiguities in code and description
24175 2004-06-24 Wim Taymans <wim@fluendo.com>
24177 * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
24178 * ext/alsa/gstalsa.h:
24179 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24180 (gst_alsa_src_update_avail), (gst_alsa_src_loop):
24181 Use alsa trigger_tstamp to get the timestamp of the first
24182 sample in the buffer for more precise sync. Some cleanups.
24184 2004-06-24 Wim Taymans <wim@fluendo.com>
24186 * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
24187 (gst_audiorate_init), (gst_audiorate_chain),
24188 (gst_audiorate_set_property), (gst_audiorate_get_property):
24189 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24190 (gst_videorate_chain):
24191 Added some logging, fixed an overflow bug in videorate.
24193 2004-06-24 Benjamin Otte <otte@gnome.org>
24195 * ext/kio/Makefile.am:
24196 fix for builddir != srcdir and distcheck
24198 2004-06-24 Benjamin Otte <otte@gnome.org>
24200 * gst-libs/gst/colorbalance/Makefile.am:
24201 * gst-libs/gst/mixer/Makefile.am:
24202 * gst-libs/gst/play/Makefile.am:
24203 * gst-libs/gst/tuner/Makefile.am:
24204 * gst/tcp/Makefile.am:
24205 * sys/dxr3/Makefile.am:
24206 don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
24208 Also add all *.list files that were missing.
24210 add a distcheck hook to ensure the above doesn't happen again.
24212 2004-06-23 David I. Lehn <dlehn@users.sourceforge.net>
24214 * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
24216 2004-06-23 Colin Walters <walters@redhat.com>
24218 * m4/Makefile.am: Distribute gst-fionread.m4.
24220 2004-06-23 Thomas Vander Stichele <thomas at apestaart dot org>
24222 * configure.ac: back to dev
24224 2004-06-23 Wim Taymans <wim@fluendo.com>
24226 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
24227 (gst_alsa_xrun_recovery):
24228 * ext/alsa/gstalsa.h:
24229 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
24230 (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
24231 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24232 (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
24233 (gst_alsa_src_loop):
24234 Add clock to alsasrc. Take new capture timestamp when
24235 restarting after an overrun. Split up some functions between
24236 alsasrc and alsasink.
24238 === release 0.8.2 ===
24240 2004-06-23 Thomas Vander Stichele <thomas at apestaart dot org>
24242 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
24243 (gst_alsa_change_state), (gst_alsa_update_avail),
24244 (gst_alsa_xrun_recovery):
24245 * ext/alsa/gstalsa.h:
24246 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24247 merge back changes from release
24249 2004-06-23 Wim Taymans <wim@fluendo.com>
24251 * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
24252 (gst_audiorate_init), (gst_audiorate_chain),
24253 (gst_audiorate_set_property), (gst_audiorate_get_property):
24254 Implement sample dropping and notify
24256 2004-06-22 Wim Taymans <wim@fluendo.com>
24258 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
24259 (theora_enc_sink_link), (theora_buffer_from_packet),
24260 (theora_push_packet), (theora_enc_chain):
24261 Some cleanups, make sure the timestamps are correct.
24263 2004-06-22 Wim Taymans <wim@fluendo.com>
24265 * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
24266 (gst_alsa_change_state), (gst_alsa_update_avail),
24267 (gst_alsa_xrun_recovery):
24268 * ext/alsa/gstalsa.h:
24269 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
24270 Cleanups, take queued samples into account when reporting
24273 2004-06-22 Wim Taymans <wim@fluendo.com>
24275 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24276 (gst_videorate_init):
24277 Initialize the property as well.
24279 2004-06-22 Wim Taymans <wim@fluendo.com>
24281 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24282 (gst_videorate_init), (gst_videorate_chain),
24283 (gst_videorate_set_property), (gst_videorate_get_property):
24284 Add property to make videorate silent.
24285 Add property to prefer new frames over old ones.
24287 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24289 * sys/osxvideo/Makefile.am:
24290 Workaround so that the osxvideo .so file gets linked with the
24291 Cocoa, OpenGL and QuickTime frameworks
24293 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24295 * sys/osxaudio/Makefile.am:
24296 Workaround so that the osxaudio .so file gets linked with the
24297 CoreAudio framework
24299 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24302 Whoops, my fault...fixed build issues
24304 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24307 Add objective-c support if running in Darwin/Mac OS X
24310 * sys/osxvideo/Makefile.am:
24311 * sys/osxvideo/osxvideosink.h:
24312 * sys/osxvideo/osxvideosink.m:
24313 * sys/osxvideo/cocoawindow.h:
24314 * sys/osxvideo/cocoawindow.m:
24315 Add osxvideosink, a cocoa-based osx video sink
24318 2004-06-19 Jan Schmidt <thaytan@mad.scientist.com>
24319 * ext/dvdnav/gst-dvd:
24320 Grab the gconf key from the right spot
24321 * gst/debug/gstnavseek.c: (gst_navseek_init),
24322 (gst_navseek_segseek), (gst_navseek_handle_src_event),
24323 (gst_navseek_chain):
24324 * gst/debug/gstnavseek.h:
24325 Add 's', 'e' and 'l' keypresses to navseek to define the start,end
24326 and loop parameters of a segment seek.
24327 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
24328 (gst_videotestsrc_get_event_masks),
24329 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
24330 * gst/videotestsrc/gstvideotestsrc.h:
24331 Add seeking support to videotestsrc
24332 Initialise the timestamp_offset variable.
24334 2004-06-18 Wim Taymans <wim@fluendo.com>
24336 * ext/sidplay/gstsiddec.cc:
24337 Fix negotiation and set correct end offset.
24339 2004-06-18 Thomas Vander Stichele <thomas at apestaart dot org>
24341 * configure.ac: branch and prerelease
24343 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24345 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
24346 (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
24347 (gst_tcpclientsrc_init_receive):
24348 * gst/tcp/gsttcpclientsrc.h:
24349 read caps when connecting to server for GDP so we set them correctly
24351 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24353 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
24354 notify drops and duplicates
24355 * gst/videoscale/videoscale.c: (videoscale_get_structure):
24356 no good reason to limit ourselves to 100x100
24358 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24360 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
24361 (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
24362 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24363 (gst_v4lsrc_get_property):
24364 * sys/v4l/gstv4lsrc.h:
24365 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24366 (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
24367 (gst_v4l_set_audio):
24368 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
24369 (gst_v4lsrc_try_capture):
24370 * sys/v4l/v4lsrc_calls.h:
24371 change try_palette to more general try_capture
24372 add autoprobe option so we can turn off autoprobing
24375 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24379 * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
24380 (gst_ximagesink_class_init):
24381 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
24382 (gst_xvimagesink_class_init):
24383 run them as finalize, not dispose, since dispose can be invoked
24386 2004-06-17 Wim Taymans <wim@fluendo.com>
24388 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
24389 (gst_alsa_get_time), (gst_alsa_xrun_recovery):
24390 * ext/alsa/gstalsa.h:
24391 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
24392 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
24393 (gst_alsa_src_change_state):
24394 * ext/alsa/gstalsasrc.h:
24395 Make the xrun code timestamp and offset the buffers correctly.
24396 moved the clock to the base class, use alsa methods to get time.
24397 Do correct timestamping on outgoing buffers.
24399 2004-06-17 Wim Taymans <wim@fluendo.com>
24401 * gst/audiorate/Makefile.am:
24402 * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
24403 (gst_audiorate_base_init), (gst_audiorate_class_init),
24404 (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
24405 (gst_audiorate_set_property), (gst_audiorate_get_property),
24406 (gst_audiorate_change_state), (plugin_init):
24407 Added an audiorate converter that fills in gaps.
24409 2004-06-17 Johan Dahlin <johan@gnome.org>
24411 * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
24413 2004-06-16 Wim Taymans <wim@fluendo.com>
24415 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
24416 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
24417 (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
24418 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24419 (gst_v4lsrc_get_property):
24420 * sys/v4l/gstv4lsrc.h:
24421 Added a copy mode to v4lsrc where it will output a copied version
24422 of its internal hardware buffer.
24423 Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
24426 2004-06-16 Wim Taymans <wim@fluendo.com>
24428 * sys/oss/gstosssrc.c: (gst_osssrc_get):
24431 2004-06-16 Wim Taymans <wim@fluendo.com>
24433 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
24434 (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
24435 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24436 (gst_v4lsrc_get_property):
24437 * sys/v4l/gstv4lsrc.h:
24438 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
24439 Added a sync mode enum property to control v4lsrc timestamp method
24440 Removed the use-fixed-fps property and moved functionality in
24442 Don't error on an error value from v4l-conf, it might not always
24445 2004-06-16 Wim Taymans <wim@fluendo.com>
24447 * gst/videorate/Makefile.am:
24448 * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
24449 (gst_videorate_base_init), (gst_videorate_class_init),
24450 (gst_videorate_getcaps), (gst_videorate_link),
24451 (gst_videorate_init), (gst_videorate_chain),
24452 (gst_videorate_set_property), (gst_videorate_get_property),
24453 (gst_videorate_change_state), (plugin_init):
24454 Added a video timestamp corrector.
24456 2004-06-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24458 fixed a potential leak with previous commit
24460 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
24462 2004-06-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24464 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
24465 Added missing refcount, fixes bug #144425
24466 Cheers Tim for finding the bug
24468 2004-06-15 Thomas Vander Stichele <thomas at apestaart dot org>
24470 * sys/v4l/gstv4l.c: (plugin_init):
24471 * sys/v4l/gstv4lcolorbalance.c:
24472 * sys/v4l/gstv4lcolorbalance.h:
24473 * sys/v4l/gstv4lelement.c:
24474 * sys/v4l/gstv4lelement.h:
24475 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
24476 * sys/v4l/gstv4lmjpegsink.h:
24477 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
24478 * sys/v4l/gstv4lmjpegsrc.h:
24479 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
24480 (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
24481 (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
24482 * sys/v4l/gstv4lsrc.h:
24483 * sys/v4l/gstv4ltuner.c:
24484 * sys/v4l/gstv4ltuner.h:
24485 * sys/v4l/gstv4lxoverlay.c:
24486 * sys/v4l/gstv4lxoverlay.h:
24487 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
24488 (gst_v4l_set_window), (gst_v4l_enable_overlay):
24489 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24490 (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
24491 (gst_v4l_set_audio):
24492 * sys/v4l/v4l_calls.h:
24493 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
24494 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
24495 (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
24496 (gst_v4lmjpegsink_playback_init),
24497 (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
24498 (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
24499 (gst_v4lmjpegsink_playback_stop),
24500 (gst_v4lmjpegsink_playback_deinit):
24501 * sys/v4l/v4lmjpegsink_calls.h:
24502 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
24503 (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
24504 (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
24505 (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
24506 (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
24507 (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
24508 * sys/v4l/v4lmjpegsrc_calls.h:
24509 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
24510 (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
24511 (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
24512 (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
24513 (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
24514 (gst_v4lsrc_try_palette):
24515 * sys/v4l/v4lsrc_calls.h:
24516 bunch of paranoia cleanups
24518 2004-06-14 David Schleef <ds@schleef.org>
24520 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
24521 (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
24522 Send discont events and change timestamps appropriately when
24523 we get a seek event. (bug #144240)
24524 * ext/cdparanoia/gstcdparanoia.h:
24526 2004-06-14 Benjamin Otte <otte@gnome.org>
24528 * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
24529 snd_pcm_hw_params_set_rate since the latter fails for no good
24530 reason on some setups.
24532 2004-06-14 David Schleef <ds@schleef.org>
24534 * gst/volume/demo.c: (value_changed_callback): exp10() is not
24535 standard. Thank you for playing.
24537 2004-06-14 Wim Taymans <wim@fluendo.com>
24539 * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
24540 Patch 1.3 broke the ordering of the colorspace info and
24541 made the plugin basically work by coincidence, reordered
24544 2004-06-14 Thomas Vander Stichele <thomas at apestaart dot org>
24546 * ext/lame/gstlame.c:
24547 * ext/mad/gstmad.c:
24548 sync caps. Make sure mad can only output a list of rates, not
24549 a full range. In the future, have three caps lists for each of the
24550 mpeg versions. Change mpegversion to a double as well.
24552 2004-06-14 Thomas Vander Stichele <thomas at apestaart dot org>
24554 * gst/volume/.cvsignore:
24555 * gst/volume/Makefile.am:
24556 * gst/volume/demo.c: (value_changed_callback), (idler),
24557 (setup_gui), (main):
24558 added small demo app
24560 2004-06-13 Jan Schmidt <thaytan@mad.scientist.com>
24561 * ext/esd/esdsink.c: (gst_esdsink_change_state):
24562 * ext/esd/esdsink.h:
24563 Close the esd connection on pause, because esd will just wait -
24564 blocking all other esd clients indefinitely.
24566 2004-06-12 Christophe Fergeau <teuf@gnome.org>
24568 * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
24569 previous commit with GST_DEBUG
24571 2004-06-12 Thomas Vander Stichele <thomas at apestaart dot org>
24574 add a header check for a dvdread header in dvdnav. Fixes #133002
24576 2004-06-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24578 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
24579 * gst/tcp/gsttcpclientsink.h:
24580 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
24581 * gst/tcp/gsttcpclientsrc.h:
24582 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
24583 (gst_tcpserversink_handle_server_read),
24584 (gst_tcpserversink_init_send):
24585 * gst/tcp/gsttcpserversink.h:
24586 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
24587 * gst/tcp/gsttcpserversrc.h:
24588 Modified the tcp plugins so they are portable (IPv4,IPv6, any future
24591 2004-06-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24594 Added ogg library so that OSX detects libtheora properly
24596 2004-06-11 Wim Taymans <wim@fluendo.com>
24598 * ext/theora/theoradec.c: (theora_dec_chain),
24599 (theora_dec_change_state):
24600 Don't try to decode frames before we received a keyframe.
24602 2004-06-11 Wim Taymans <wim@fluendo.com>
24604 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
24605 (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
24606 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24607 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
24608 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
24609 Added property to set the maximum delay of a page.
24611 2004-06-10 Wim Taymans <wim@fluendo.com>
24613 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
24614 (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
24615 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24616 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
24617 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
24618 Added max-delay property to control the maximum amount
24619 of data to put in one page.
24621 2004-06-10 Wim Taymans <wim@fluendo.com>
24623 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
24624 (gst_theora_enc_init), (theora_enc_sink_link),
24625 (theora_buffer_from_packet), (theora_enc_set_property),
24626 (theora_enc_get_property):
24627 Set duration on encoded buffer, added some more properties
24629 2004-06-10 Wim Taymans <wim@fluendo.com>
24631 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
24632 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24633 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
24634 * ext/theora/theoraenc.c: (theora_enc_chain):
24635 Fix refcounting bugs
24637 2004-06-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
24639 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
24640 (gst_asf_demux_loop), (gst_asf_demux_process_file),
24641 (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
24642 (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
24643 (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
24644 (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
24645 (gst_asf_demux_change_state):
24646 * gst/asfdemux/gstasfdemux.h:
24647 You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
24648 feels like. I think we should set a new requirement for demuxers
24649 from now on to implement sane loop functions, data loops, query
24650 and seek functions before first commit into CVS. And this commit
24651 fixes all of the above.
24653 2004-06-10 Christophe Fergeau <teuf@gnome.org>
24655 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
24656 vorbis comments are properly encoded in UTF-8 before adding them
24659 2004-06-09 Benjamin Otte <otte@gnome.org>
24661 * ext/alsa/gstalsa.c: (add_channels):
24662 handle min <= max correctly
24663 * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
24664 (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
24665 add fixation functions so we fixate correctly. No preferring of alaw
24666 anymore because it's the first structure.
24667 * ext/alsa/gstalsa.h:
24668 * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
24669 (gst_alsa_hw_params_dump):
24670 add functions to ease debugging in alsalib
24671 * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24672 (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24673 (gst_alsa_start_audio):
24674 only specify hw params if we really setup a format (fixes #134007 -
24675 or at least works around it)
24677 2004-06-09 Wim Taymans <wim@fluendo.com>
24679 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
24680 (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
24681 (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
24682 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
24683 (gst_ogg_mux_loop):
24684 Use stream caps to setup the initial pages in the ogg stream.
24685 Correctly set the streamheader caps on the srcpad.
24687 2004-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
24689 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
24690 (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
24691 (gst_v4lsrc_getcaps):
24692 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24693 (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
24694 add querying of fps lists for webcams. Negotiating to a framerate
24697 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24699 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
24700 (theora_push_buffer), (theora_push_packet),
24701 (theora_set_header_on_caps), (theora_enc_chain):
24702 mark buffers and put on streamheader, raw theora streaming
24703 now works too, whee
24705 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24707 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24708 (gst_tcp_gdp_read_caps):
24709 do a looping read for caps and GDP headers too
24711 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24713 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24714 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
24715 return EOS instead of NULL in _get
24717 2004-06-08 Wim Taymans <wim@fluendo.com>
24719 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24720 (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
24721 (gst_tcp_gdp_write_caps):
24722 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24723 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
24724 (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
24727 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24729 * ext/vorbis/Makefile.am:
24730 * ext/vorbis/vorbis.c: (plugin_init):
24731 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
24732 (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
24733 (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
24734 (vorbis_parse_change_state):
24735 * ext/vorbis/vorbisparse.h:
24736 adding a vorbisparse element that marks the buffers, streaming
24737 raw vorbis using GDP now works, whee
24739 2004-06-08 Wim Taymans <wim@fluendo.com>
24741 * ext/jpeg/Makefile.am:
24743 * ext/jpeg/gstjpeg.c: (plugin_init):
24744 * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
24745 (gst_smokedec_base_init), (gst_smokedec_class_init),
24746 (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
24747 * ext/jpeg/gstsmokedec.h:
24748 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
24749 (gst_smokeenc_base_init), (gst_smokeenc_class_init),
24750 (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
24751 (gst_smokeenc_resync), (gst_smokeenc_chain),
24752 (gst_smokeenc_set_property), (gst_smokeenc_get_property):
24753 * ext/jpeg/gstsmokeenc.h:
24754 * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
24755 (smokecodec_flush_destination), (smokecodec_term_destination),
24756 (smokecodec_init_source), (smokecodec_fill_input_buffer),
24757 (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
24758 (smokecodec_term_source), (smokecodec_encode_new),
24759 (smokecodec_decode_new), (smokecodec_info_free),
24760 (smokecodec_set_quality), (smokecodec_get_quality),
24761 (smokecodec_set_threshold), (smokecodec_get_threshold),
24762 (smokecodec_set_bitrate), (smokecodec_get_bitrate),
24763 (find_best_size), (abs_diff), (put), (smokecodec_encode),
24764 (smokecodec_parse_header), (smokecodec_decode):
24765 * ext/jpeg/smokecodec.h:
24766 Added a new simple jpeg based codec
24768 2004-06-08 Wim Taymans <wim@fluendo.com>
24770 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24771 (gst_multipart_mux_loop):
24774 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24776 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24777 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
24778 (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
24779 (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
24780 (gst_tcpserversink_init_send), (gst_tcpserversink_close):
24781 * gst/tcp/gsttcpserversink.h:
24782 take streamheader into account
24784 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24786 * gst/level/Makefile.am:
24787 * gst/level/gstlevel.c: (gst_level_class_init):
24788 clean up marshal generation
24790 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24792 * gst/tcp/Makefile.am:
24793 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
24794 (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
24795 (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
24796 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
24797 (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
24798 (gst_tcpclientsrc_get_property):
24799 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
24800 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
24801 (gst_tcpserversink_handle_client_read),
24802 (gst_tcpserversink_handle_client_write),
24803 (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
24804 * gst/tcp/gsttcpserversink.h:
24805 add signals client-added and client-removed
24806 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
24807 (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
24808 (gst_tcpserversrc_get_property):
24809 uniformized, change default protocol to NONE
24810 * gst/tcp/gsttcp-marshal.list: added
24811 2004-06-07 Benjamin Otte <otte@gnome.org>
24813 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24814 handle discont events if they happen before caps nego
24816 2004-06-07 Wim Taymans <wim@fluendo.com>
24818 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
24819 (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
24820 (gst_multipart_demux_plugin_init):
24821 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24822 (gst_multipart_mux_init), (gst_multipart_mux_loop),
24823 (gst_multipart_mux_change_state):
24824 Small updates, fix a memleak
24826 2004-06-07 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24828 * configure.ac: OSS portability
24829 * ext/arts/gst_arts.c: idem
24830 * sys/oss/gstosselement.c: idem
24831 * sys/oss/gstossmixer.c: idem
24832 * sys/oss/gstosssink.c: idem
24833 * sys/oss/gstosssrc.c: idem
24834 * sys/oss/oss_probe.c: idem
24835 - check for soundcard.h in different places for some BSD
24837 2004-06-07 Jan Schmidt <thaytan@mad.scientist.com>
24840 Add me to the authors file
24842 Increase the libdv requirement to >= version 0.100
24843 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
24844 (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
24845 (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
24846 * ext/dv/gstdvdec.h:
24847 Add support for the new_media flag when sending DISCONT events
24848 Make the querying work when video pad is not linked
24850 2004-06-07 Tim-Philipp Müller <t.i.m@zen.co.uk>
24852 reviewed by Benjamin Otte <otte@gnome.org>
24854 * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
24855 create a NULL-initialized array of pads, so we don't think they
24856 exist already. (fixes #143130)
24858 2004-06-07 Benjamin Otte <otte@gnome.org>
24860 * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
24861 (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
24862 (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
24863 don't use // coments
24865 2004-06-07 Benjamin Otte <otte@gnome.org>
24867 * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
24868 cast to GstClockTime to get higher granularity
24869 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24870 use gst_element_set_time_delay to get the exact time
24871 * ext/mad/gstmad.c: (gst_mad_chain):
24872 use the negotiated rate instead of the current frame's rate which
24873 might be wrong because of bit errors. This avoids emitting totally
24874 bogus timestamps and screwing sync.
24877 2004-06-07 Tim-Philipp Müller <t.i.m@zen.co.uk>
24879 reviewed by Benjamin Otte <otte@gnome.org>
24881 * gst/adder/gstadder.c: (gst_adder_loop):
24882 properly error out when no negotiation has happened yet. (fixes
24885 2004-06-06 Benjamin Otte <otte@gnome.org>
24887 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
24888 forward correctly transformed offset in discont events. Based on
24889 patch by Arwed v. Merkatz. (fixes #142851)
24891 2004-06-06 David Schleef <ds@schleef.org>
24893 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
24894 G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS. Should fix compile
24895 problems on several systems.
24897 2004-06-06 Benjamin Otte <otte@gnome.org>
24899 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
24900 use explicit caps on the srcpad
24901 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
24902 properly error out if caps couldn't be set (fixes #142764)
24904 2004-06-06 Benjamin Otte <otte@gnome.org>
24906 * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24907 (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24908 (gst_alsa_start_audio):
24909 - don't call set_periods_integer anymore, it breaks the
24910 configuration randomly
24911 - call snd_pcm_hw_params_set_access directly instead of using masks
24912 - don't fail if the sw_params can't be set, just use the default
24913 params and hope it works. Alsalib has weird issues when you touch
24914 sw_params and does no proper error reporting about what failed.
24915 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
24916 (gst_alsa_close_audio):
24917 make our alsa debugging go via gst debugging and not conditionally
24919 * ext/alsa/gstalsa.h:
24920 add ALSA_DEBUG_FLUSH macro
24921 * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
24923 wrap alsa errors to be printed via the gst debugging system and not
24926 2004-06-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
24928 * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
24929 (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
24930 (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
24931 (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
24932 (qtdemux_parse_trak):
24933 * gst/qtdemux/qtdemux.h:
24934 Bitch. Also known as seeking, querying & co.
24935 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
24936 (gst_osssink_change_state):
24937 * sys/oss/gstosssink.h:
24938 Resyncing is for weenies, this hack is no longer needed and was
24939 broken anyway (since it - unintendedly - always leaves resync to
24942 2004-06-05 Andrew Turner <zxombie@hotpop.com>
24944 * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
24945 * gst/tcp/gsttcpclientsrc.h: idem
24946 - define MSG_NOSIGNAL if not done
24947 - include unistd.h for off_t
24950 2004-06-05 Benjamin Otte <otte@gnome.org>
24953 * ext/kio/Makefile.am:
24954 check for qt's moc preprocessor explicitly and use it
24956 2004-06-03 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
24958 * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
24959 don't get a signal for EPIPE on socket writes
24960 (somebody check if this works on other platforms)
24962 2004-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
24964 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
24965 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
24966 check error condition on available samples correctly
24968 2004-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
24970 * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
24972 * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
24973 (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
24974 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
24975 (gst_tcpserversrc_gdp_read_header):
24976 use ssize_t over size_t since the former is signed and thus the
24977 check for error codes can work
24979 2004-06-02 Wim Taymans <wim@fluendo.com>
24983 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24984 (gst_multipart_mux_loop):
24987 2004-06-02 Wim Taymans <wim@fluendo.com>
24989 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24990 (gst_multipart_mux_init), (gst_multipart_mux_loop),
24991 (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
24992 (gst_multipart_mux_change_state):
24993 Added configurable boundary specifier, added the value as a
24994 caps field as well.
24996 2004-06-02 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24998 * gst/tcp/gsttcp.c:
24999 * gst/tcp/gsttcpclientsrc.c:
25000 * gst/tcp/gsttcpclientsrc.h:
25001 * gst/tcp/gsttcpserversrc.c:
25002 - portability fix, to compile on OSX
25005 * sys/osxaudio/gstosxaudioelement.c:
25006 * sys/osxaudio/gstosxaudiosink.c:
25007 * sys/osxaudio/gstosxaudiosrc.c:
25008 - compilation warnings on OSX
25011 2004-06-02 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25013 * ext/vorbis/vorbisdec.c : sign warning fixes
25015 * gst-libs/gst/mixer/mixertrack.c :
25016 do no use defines which are glib 2.4 specific
25018 2004-06-01 Christophe Fergeau <teuf@gnome.org>
25020 * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
25021 buffer since libflac doesn't expect it (reports a sync error when
25022 it encounters that)
25025 2004-06-01 Owen Fraser-Green <owen@discobabe.net>
25027 * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
25028 * gst-libs/gst/mixer/mixertrack.c:
25029 (gst_mixer_track_get_property), (get_mixer_track_init),
25030 (get_mixer_track_get_property): Added property accessors
25031 * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
25032 * gst-libs/gst/mixer/mixeroptions.c:
25033 (gst_mixer_options_get_values): Added
25034 * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
25035 * gst-libs/gst/mixer/mixer.c: Fixed comment
25038 2004-06-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
25040 * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
25041 improve error messages on open
25044 2004-06-01 Thomas Vander Stichele <thomas at apestaart dot org>
25046 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
25047 check if v4l-conf is in path
25049 2004-06-01 Thomas Vander Stichele <thomas at apestaart dot org>
25051 * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
25052 change assert to a more readable error message
25054 2004-05-31 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25056 * gst-libs/gst/tuner/tunerchannel.h:
25057 - add a freq_multiplicator field to make the conversion
25058 between internal frequency unit and Hz
25059 * sys/v4l/gstv4lelement.c:
25060 * sys/v4l2/gstv4l2element.c:
25061 - change default video device to /dev/video0
25062 * sys/v4l/v4l_calls.c:
25063 * sys/v4l2/v4l2_calls.c:
25064 - we only expose frequency to the user in Hz instead of
25065 bastard v4lX unit (either 62.5kHz or 62.5Hz)
25067 2004-05-31 Jan Schmidt <thaytan@mad.scientist.com>
25068 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
25069 Initialise b_o_s and e_o_s variables
25070 * gst-libs/gst/riff/riff-media.c:
25071 (gst_riff_create_video_caps_with_data):
25072 Add some unusual fourcc's from mplayer avi's
25073 * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
25074 Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
25077 2004-05-28 Wim Taymans <wim@fluendo.com>
25080 * gst/alpha/Makefile.am:
25081 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
25082 (gst_alpha_get_type), (gst_alpha_base_init),
25083 (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
25084 (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
25085 (gst_alpha_chroma_key), (gst_alpha_chain),
25086 (gst_alpha_change_state), (plugin_init):
25087 A plugin to add an alpha channel to I420 video. Can optionally do
25089 * gst/multipart/Makefile.am:
25090 * gst/multipart/multipart.c: (plugin_init):
25091 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
25092 (gst_multipart_demux_class_init), (gst_multipart_demux_init),
25093 (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
25094 (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
25095 (gst_multipart_demux_change_state),
25096 (gst_multipart_demux_plugin_init):
25097 * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
25098 (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
25099 (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
25100 (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
25101 (gst_multipart_mux_pad_unlink),
25102 (gst_multipart_mux_request_new_pad),
25103 (gst_multipart_mux_handle_src_event),
25104 (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
25105 (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
25106 (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
25107 (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
25108 A Multipart demuxer/muxer. Not sure if it violates specs. Used to
25109 send multipart jpeg images to a browser.
25110 * gst/videobox/Makefile.am:
25111 * gst/videobox/README:
25112 * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
25113 (gst_video_box_get_type), (gst_video_box_base_init),
25114 (gst_video_box_class_init), (gst_video_box_init),
25115 (gst_video_box_set_property), (gst_video_box_get_property),
25116 (gst_video_box_sink_link), (gst_video_box_i420),
25117 (gst_video_box_ayuv), (gst_video_box_chain),
25118 (gst_video_box_change_state), (plugin_init):
25119 Crops or adds borders around an image. can do alpha channel
25121 * gst/videomixer/Makefile.am:
25122 * gst/videomixer/README:
25123 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
25124 (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
25125 (gst_videomixer_pad_get_sink_event_masks),
25126 (gst_videomixer_pad_get_property),
25127 (gst_videomixer_pad_set_property),
25128 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
25129 (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
25130 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
25131 (gst_videomixer_base_init), (gst_videomixer_class_init),
25132 (gst_videomixer_init), (gst_videomixer_request_new_pad),
25133 (gst_videomixer_handle_src_event),
25134 (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
25135 (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
25136 (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
25137 (gst_videomixer_loop), (gst_videomixer_get_property),
25138 (gst_videomixer_set_property), (gst_videomixer_change_state),
25140 Generic video mixer plugin, can handle multiple inputs all with
25141 different framerates and video sizes. Is fully alpha channel
25144 2004-05-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
25146 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
25147 Select first track as master track. Not sure how else to handle
25149 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
25150 Discard discont events. Should fix #142962.
25152 2004-05-26 Ronald Bultje <rbultje@ronald.bitfreak.net>
25154 * ext/alsa/Makefile.am:
25155 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
25156 (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
25157 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
25158 (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
25159 (gst_alsa_mixer_get_option):
25160 * ext/alsa/gstalsamixer.h:
25161 * ext/alsa/gstalsamixeroptions.c:
25162 (gst_alsa_mixer_options_get_type),
25163 (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
25164 (gst_alsa_mixer_options_new):
25165 * ext/alsa/gstalsamixeroptions.h:
25166 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
25167 * ext/alsa/gstalsamixertrack.h:
25168 Add enumerations (as GstMixerOptions). Make correct distinction
25169 between input/output tracks. Add capture/playback private flag.
25170 Use flag to decide on whether to set capture or playback volumes
25171 or switches. Use playback and record switches.
25172 * gst-libs/gst/mixer/Makefile.am:
25173 * gst-libs/gst/mixer/mixer-marshal.list:
25174 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
25175 (gst_mixer_set_option), (gst_mixer_get_option),
25176 (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
25177 (gst_mixer_volume_changed), (gst_mixer_option_changed):
25178 * gst-libs/gst/mixer/mixer.h:
25179 * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
25180 (gst_mixer_options_class_init), (gst_mixer_options_init),
25181 (gst_mixer_options_dispose):
25182 * gst-libs/gst/mixer/mixeroptions.h:
25183 Add GstMixerOptions.
25184 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
25185 Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
25186 broken device detection on computers with multiple OSS sound
25189 2004-05-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
25191 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
25192 fixate nicely even when the peer is not negotiating
25194 2004-05-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
25196 * gst/audioconvert/gstaudioconvert.c:
25197 (gst_audio_convert_parse_caps):
25198 make sure we don't allow depth > width
25199 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
25200 fixate endianness to G_BYTE_ORDER as default
25201 * gst/audioscale/gstaudioscale.c:
25202 we don't handle another endianness as host-endianness
25204 2004-05-25 David Schleef <ds@schleef.org>
25206 * gst/ffmpegcolorspace/mem.c: malloc() is in stdlib.h, not malloc.h
25208 2004-05-24 Benjamin Otte <otte@gnome.org>
25210 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
25211 (gst_oggvorbisenc_setup):
25212 properly fail when we can't setup the vorbis encoder due to
25213 unsupported settings
25214 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
25215 (gst_vorbisenc_setup):
25217 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
25218 fix case where warnings occured when one pad was unlinked while the
25219 other's link function was called
25221 2004-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
25223 * gst/tcp/Makefile.am:
25226 2004-05-24 Benjamin Otte <in7y118@public.uni-hamburg.de>
25228 * gst-libs/gst/resample/private.h:
25229 don't use optimizations that are #if 0'ed
25231 2004-05-24 Wim Taymans <wim@fluendo.com>
25233 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
25234 Fix potential division by zero error and hopefully get
25235 the position query right to get correct timestamps on avi
25238 2004-05-24 Wim Taymans <wim@fluendo.com>
25240 * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
25241 (gst_videoscale_scale_nearest_str2),
25242 (gst_videoscale_scale_nearest_str4),
25243 (gst_videoscale_scale_nearest_32bit),
25244 (gst_videoscale_scale_nearest_24bit),
25245 (gst_videoscale_scale_nearest_16bit):
25246 Fix the scaling algorithm and avoid a buffer overflow.
25247 removed the while loop in the scaling function as it
25248 was used for point sampling only.
25250 2004-05-24 Benjamin Otte <in7y118@public.uni-hamburg.de>
25252 * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
25253 (gst_id3_tag_class_init), (gst_id3_tag_init),
25254 (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
25255 (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
25256 (gst_id3_tag_send_tag_event):
25257 lots of fixes to make id3mux work and id3demux work correctly
25259 2004-05-24 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25262 add rules to build shout2send (was removed by accident
25263 when this module was no more marked experimental/broken)
25265 2004-05-24 Zaheer Abbas Merali <zaheerabbas at merali dot org>
25267 * ext/shout2/gstshout2.c:
25268 * ext/shout2/gstshout2.h:
25269 adding a "connection problem" signal to shout2send
25272 2004-05-21 Thomas Vander Stichele <thomas at apestaart dot org>
25274 * ext/kio/kioreceiver.cpp:
25275 * ext/kio/kioreceiver.h:
25276 fix sign comparison issues
25278 2004-05-21 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25280 * gst/cdxaparse/gstcdxaparse.c:
25281 * gst/cdxaparse/gstcdxaparse.h:
25283 add some checks/sanity
25284 prepare for seek addition
25286 * sys/sunaudio/gstsunaudio.c:
25287 remove exported dupe init function
25289 2004-05-21 Jan Schmidt <thaytan@mad.scientist.com>
25291 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
25292 (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
25293 Fix format conversion and position querying.
25294 * gst/debug/progressreport.c: (gst_progressreport_report):
25295 Don't output a bogus total value that we didn't query.
25296 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
25297 Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
25298 only a blank window after xine has been used.
25300 2004-05-21 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
25303 sync with upstream version to fix test on FC2
25304 readd with -ko to preserve Id header
25306 2004-05-20 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25309 test for FIONREAD ioctl in sys/filio.h for Solaris compat.
25310 * gst/tcp/gsttcpclientsrc.c: idem
25311 * gst/tcp/gsttcpserversink.c: idem
25312 * gst/tcp/gsttcpserversrc.c: idem
25313 * m4/gst-fionread.m4: idem
25315 * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
25317 * configure.ac: enable speex plugin for speex 1.1.5+
25318 * ext/speex/gstspeexenc.c: fix cast warning
25320 * ext/esd/README: fix typo
25322 2004-05-20 David Schleef <ds@schleef.org>
25324 * configure.ac: Minor cosmetic change to convince the buildbot to
25326 * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
25327 (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
25328 (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
25329 (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
25330 (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
25331 (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
25332 More hacking. Plays audio now.
25334 2004-05-20 David Schleef <ds@schleef.org>
25339 2004-05-20 David Schleef <ds@schleef.org>
25341 * sys/osxaudio/Makefile.am: New OS X audio plugin by Zaheer Abbas Merali
25342 * sys/osxaudio/gstosxaudio.c:
25343 * sys/osxaudio/gstosxaudioelement.c:
25344 * sys/osxaudio/gstosxaudioelement.h:
25345 * sys/osxaudio/gstosxaudiosink.c:
25346 * sys/osxaudio/gstosxaudiosink.h:
25347 * sys/osxaudio/gstosxaudiosrc.c:
25348 * sys/osxaudio/gstosxaudiosrc.h:
25350 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
25352 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
25353 (gst_vorbisenc_chain):
25354 put the codec headers on the caps as streamheader as well as
25357 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
25359 * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
25360 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
25361 (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
25362 split up push_packet into two functions
25364 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
25366 * gst/tcp/.cvsignore:
25368 * gst/tcp/Makefile.am:
25370 * gst/tcp/gsttcp.c:
25371 * gst/tcp/gsttcp.h:
25372 * gst/tcp/gsttcpclientsink.c:
25373 * gst/tcp/gsttcpclientsink.h:
25374 * gst/tcp/gsttcpclientsrc.c:
25375 * gst/tcp/gsttcpclientsrc.h:
25376 * gst/tcp/gsttcpplugin.c:
25377 * gst/tcp/gsttcpserversink.c:
25378 * gst/tcp/gsttcpserversink.h:
25379 * gst/tcp/gsttcpserversrc.c:
25380 * gst/tcp/gsttcpserversrc.h:
25381 add new tcp elements
25383 2004-05-19 Wim Taymans <wim@fluendo.com>
25385 * gst/law/mulaw-conversion.c: (mulaw_encode):
25386 Fix overflow bug in ulaw encoding.
25388 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25390 * ext/mad/gstmad.c: (gst_mad_handle_event):
25391 don't unref the event twice
25393 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25396 remove -Wno-sign-compare
25398 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25401 remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
25402 if you want to work against glib 2.2 and 2.4
25404 2004-05-19 Thomas Vander Stichele <thomas at apestaart dot org>
25406 * gst/tcp/Makefile.am:
25407 * gst/tcp/gsttcp.c:
25408 * gst/tcp/gsttcp.h:
25409 * gst/tcp/gsttcpsink.h:
25410 * gst/tcp/gsttcpsrc.h:
25411 gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
25413 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25415 * gst/debug/tests.c: (md5_get_value):
25416 fix segfault on gst-inspect
25418 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25420 * gst/debug/testplugin.c:
25421 * gst/debug/tests.c:
25422 * gst/debug/tests.h:
25423 add new extensible and configurable testing element. Current tests
25424 include buffer count, stream length, timestamp/duration matching and
25426 * gst/debug/Makefile.am:
25427 * gst/debug/gstdebug.c: (plugin_init):
25428 add infrastructure for new element
25430 2004-05-19 Johan Dahlin <johan@gnome.org>
25432 * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
25433 ending of the array. Fixes gst-inspect segfault on ppc.
25435 2004-05-19 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25437 * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
25439 * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
25441 2004-05-18 David Schleef <ds@schleef.org>
25443 * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
25444 warnings (bugs, actually) noticed by gcc but not forte.
25446 2004-05-18 David Schleef <ds@schleef.org>
25448 * sys/sunaudio/Makefile.am:
25449 * sys/sunaudio/gstsunaudio.c: New sunaudiosink
25451 2004-05-18 David Schleef <ds@schleef.org>
25453 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
25454 (gst_qtdemux_loop_header): Patch from dcm@acm.org (David Moore)
25455 to allow qtdemux to use non-seekable streams. (bug #142272)
25457 2004-05-18 David Schleef <ds@schleef.org>
25459 * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
25460 (gst_resample_sinc_ft_float): Remove use of static temporary
25461 buffer. This code was obviously not supposed to last long, but
25462 it's stuck in our ABI, so it required a little hack to make it
25463 ABI-compatible. Fixes #142585.
25464 * gst-libs/gst/resample/resample.h: same.
25466 2004-05-18 David Schleef <ds@schleef.org>
25468 * configure.ac: Add sunaudio
25469 * examples/Makefile.am: make gstplay depend on gconf
25470 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
25471 * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
25472 (convert_table_lookup), (img_convert): remove c99-isms
25473 * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
25474 unsigned, to fix a warning on Solaris
25475 * gst/mpeg1sys/systems.c: bcopy->memcpy
25476 * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
25477 * sys/Makefile.am: Add sunaudio
25479 2004-05-18 Wim Taymans <wim@fluendo.com>
25481 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
25482 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
25483 (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
25484 (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
25485 (gst_ogg_mux_loop):
25486 Fix an ugly memleak where the muxer didn't flush enough ogg
25487 pages. This also resulted in badly muxed ogg files.
25489 2004-05-18 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25491 * gst/asfdemux/asfheaders.c :
25492 * gst/asfdemux/asfheaders.h :
25493 * gst/asfdemux/gstasfdemux.c :
25494 - fix ASF_OBJ_PADDING guid
25495 - add 3 new object guids (language list, metadata,
25496 extended stream properties)
25497 - add a function to parse extended header objects
25499 2004-05-18 Benjamin Otte <in7y118@public.uni-hamburg.de>
25501 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
25502 remove leftover debugging g_print
25504 2004-05-17 Ronald Bultje <rbultje@ronald.bitfreak.net>
25506 * ext/mad/gstmad.c: (gst_mad_handle_event):
25507 Fix for when the first format in a discont event is not a
25508 byte-based one. Should fix #137710.
25510 2004-05-18 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25512 * m4/a52.m4 : fix compilation with -Wall -Werror
25513 * m4/libfame.m4 : idem
25514 * m4/libmikmod.m4 : idem
25516 2004-05-17 Benjamin Otte <otte@gnome.org>
25518 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25519 signal the new tags before giving up the reference
25521 2004-05-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
25523 * ext/shout2/gstshout2.c:
25524 use application/ogg instead of application/x-ogg (patch by Patrick
25525 Guimond, fixes #142432)
25526 * sys/oss/gstosselement.c: (gst_osselement_reset),
25527 (gst_osselement_sync_parms):
25528 don't set fragment size unless specified (fixes #142493)
25530 2004-05-17 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25532 * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
25535 2004-05-17 Benjamin Otte <otte@gnome.org>
25537 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
25538 compute offsets correctly for internal buffers so timestamps are set
25539 correctly when we can't seek. Also handle cases where there are no
25540 offsets. (based on a patch by David Moore, fixes #142507)
25542 2004-05-17 Benjamin Otte <otte@gnome.org>
25544 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25545 use correct variable when determining amount of data to skip so we
25546 don't skip into the void and segfault
25548 2004-05-16 Benjamin Otte <otte@gnome.org>
25550 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
25553 2004-05-16 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25555 * gst/asfdemux/gstasfdemux.c:
25556 - fix a mem leak and always propagate tags
25557 - add WMV3 to known video codecs (but no decoder yet)
25558 - replace "surplus data" at end of audio header for what
25559 it is : codec specific data
25562 2004-05-16 Arwed v. Merkatz <v.merkatz@gmx.net>
25564 reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net>
25566 * gst-libs/gst/audio/audioclock.c:
25567 Fix wrong return type (#142205).
25569 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
25571 * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
25572 Ignore CRCs by default (fixes #142566).
25574 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
25576 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
25577 (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
25578 (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
25579 (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
25580 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
25581 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
25582 Fix for cases where we fail to attach to a mixer.
25584 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
25586 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
25587 Don't touch events after not owning them anymore.
25588 * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
25589 (gst_wavparse_fmt), (gst_wavparse_other),
25590 (gst_wavparse_handle_seek), (gst_wavparse_loop),
25591 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
25592 (gst_wavparse_srcpad_event):
25593 * gst/wavparse/gstwavparse.h:
25594 Add seeking, fix querying.
25596 2004-05-16 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25598 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25599 - process comments even if they don't end with \0\0
25600 g_convert would ignore them if present and works well without them
25602 2004-05-16 Benjamin Otte <otte@gnome.org>
25604 * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
25607 2004-05-16 Benjamin Otte <otte@gnome.org>
25609 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25610 don't write to memory we might not write to - g_convert does that
25611 for us anyway (fixes #142613)
25612 (gst_asf_demux_audio_caps):
25613 comment out gst_util_dump_mem
25615 2004-05-16 Benjamin Otte <otte@gnome.org>
25617 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25618 compute correct expected timestamps after seek (broken since
25620 * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
25621 rename element and debugging category to gdkpixbufscale
25623 2004-05-16 Benjamin Otte <otte@gnome.org>
25625 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25626 add error checking to snd_pcm_delay and remove duplicate call to
25627 snd_pcm_delay that caused issues (see inline code comments)
25628 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
25629 make more readable and fix return value when snd_pcm_delay fails
25632 2004-05-15 Jan Schmidt <thaytan@mad.scientisti.com>
25633 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
25634 (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
25635 (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
25636 (gst_pixbufscale_link), (gst_pixbufscale_init),
25637 (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
25638 (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
25639 (gst_pixbufscale_get_property), (pixbufscale_init):
25640 * ext/gdk_pixbuf/pixbufscale.h:
25641 Add these files I forgot earlier
25643 2004-05-15 Jan Schmidt <thaytan@mad.scientist.com>
25644 * ext/gdk_pixbuf/Makefile.am:
25645 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
25646 * ext/gdk_pixbuf/gstgdkpixbuf.h:
25647 Add new pixbufscale element to scale RGB video
25648 using gdk_pixbuf, because gdk_pixbuf does BILINEAR
25649 and HYPER interpolation correctly.
25650 * ext/theora/theoraenc.c: (theora_enc_chain),
25651 Discard buffer and return if explicit caps could not be set
25652 (theora_enc_get_property):
25653 Make _get return kbps for the bitrate consistent with
25657 2004-05-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
25659 * ext/libvisual/visual.c: (gst_visual_chain):
25660 add missing visual_audio_analyze
25662 2004-05-14 David Schleef <ds@schleef.org>
25664 * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
25665 is killed while we're playing.
25666 * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
25667 gst_element_no_more_pads().
25669 2004-05-14 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25671 * gst-libs/gst/riff/riff-read.c :
25672 - fix INFO tag extraction in RIFF/AVI files
25673 because gst_event_unref (event) also freed taglist
25676 2004-05-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25678 * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
25679 * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
25681 * gst/auparse/gstauparse.c :
25682 - add code (commented for now) to support audio/x-adpcm on src pad
25683 (we have no decoder for those layout yet)
25685 * gst/cdxaparse/gstcdxaparse.c :
25686 * gst/cdxaparse/gstcdxaparse.h :
25687 - partial rewrite using RiffRead (ripped iain's wavparse code)
25689 * gst/rtp/gstrtpL16enc.c : typo
25690 * gst/rtp/gstrtpgsmenc.c : typo
25692 2004-05-13 Benjamin Otte <otte@gnome.org>
25695 check for exact version of libvisual, it's not supposed to be
25698 2004-05-13 Benjamin Otte <in7y118@public.uni-hamburg.de>
25700 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
25701 signal no-more-pads
25703 2004-05-13 Jan Schmidt <thaytan@mad.scientist.com>
25705 * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
25706 Report which format was used for GST_FORMAT_DEFAULT
25707 * gst/debug/Makefile.am:
25708 * gst/debug/gstdebug.c: (plugin_init):
25709 * gst/debug/progressreport.c: (gst_progressreport_base_init),
25710 (gst_progressreport_class_init), (gst_progressreport_init),
25711 (gst_progressreport_report), (gst_progressreport_set_property),
25712 (gst_progressreport_get_property), (gst_progressreport_chain),
25713 (gst_progressreport_plugin_init):
25714 Add progressreport element for testing.
25716 2004-05-13 Thomas Vander Stichele <thomas at apestaart dot org>
25718 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
25719 * sys/v4l/gstv4lsrc.h:
25720 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
25721 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
25722 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
25723 (gst_v4lsrc_grab_frame):
25725 send a discont at start
25727 2004-05-12 Colin Walters <walters@redhat.com>
25729 * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
25730 inflooping if we can't find a chunk. Or in other words, don't blow
25731 chunks if we don't have a chunk to blow.
25733 2004-05-13 Jan Schmidt <thaytan@mad.scientist.com>
25734 * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
25735 Remove old debug output
25736 * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
25737 (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
25738 (gst_dvdec_set_property), (gst_dvdec_get_property):
25739 Change the quality setting to an enum, so it works from gst-launch
25740 Don't renegotiate a non-linked pad. Allows audio only decoding.
25741 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
25742 (gst_deinterlace_link), (gst_deinterlace_init):
25743 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
25744 (gst_videodrop_link):
25745 Some caps negotiation fixes
25747 2004-05-12 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25749 * ext/tarkin/gsttarkin.c :
25750 - Change RANK from NONE to PRIMARY
25751 * ext/gdk_pixbuf/gstgdkpixbuf.c :
25752 - Change RANK from NONE to MARGINAL
25753 * ext/divx/gstdivxenc.c :
25754 - Change RANK from PRIMARY to NONE (encoder/spider issue)
25756 2004-05-12 Thomas Vander Stichele <thomas at apestaart dot org>
25758 * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
25759 (gst_vorbisenc_push_packet):
25760 copy a function that was added between 1.0 and 1.0.1 until we
25761 depend on worthwhile features of post-1.0
25763 2004-05-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
25766 enable shout2 by default
25767 * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
25768 (gst_shout2send_base_init), (gst_shout2send_init),
25769 (gst_shout2send_connect), (gst_shout2send_change_state):
25770 * ext/shout2/gstshout2.h:
25771 make this work again. Based on a patch by Zaheer Abbas Merali (fixes
25773 * ext/theora/theora.c: (plugin_init):
25774 don't set rank on encoders
25776 2004-05-11 Jeremy Simon <jesimon@libertysurf.fr>
25778 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
25779 Use codec_data property instead of flag1 and flag2 for wma
25781 2004-05-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25783 * gst/cdxaparse/gstcdxaparse.c :
25784 - Add mpegversion to CAPS to make it link
25785 - Rank is as GST_RANK_SECONDARY instead of NONE
25786 * gst/auparse/gstauparse.c :
25787 - Document all audio encoding we can encounter from Solaris 9
25788 headers and libsndfile information.
25789 - Increase max. rate from 48000 to 192000 (to match other elements)
25790 - Don't try to play junk data between header and samples
25792 2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
25794 * ext/libvisual/visual.c: (gst_visual_getcaps):
25795 use the right caps depending on endianness (I hope)
25796 * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
25797 use GST_RANK_NONE for all non-decoding elements or spider gets
25800 2004-05-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
25802 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25803 Fix some odd cases and fix BE metadata parsing of unicode16 text.
25805 2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
25807 * gst/switch/gstswitch.c: (gst_switch_release_pad),
25808 (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
25809 (gst_switch_loop), (gst_switch_get_type):
25810 whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
25811 HEADERS. Had to be said.
25813 2004-05-10 David Schleef <ds@schleef.org>
25815 * configure.ac: Add prototype Dirac support.
25817 * ext/dirac/Makefile.am:
25818 * ext/dirac/gstdirac.cc:
25819 * ext/dirac/gstdiracdec.cc:
25821 2004-05-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
25823 * gst/auparse/gstauparse.c: (gst_auparse_class_init),
25824 (gst_auparse_init), (gst_auparse_chain),
25825 (gst_auparse_change_state):
25826 Hack around spider. Remove me some day please.
25828 2004-05-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
25830 * gst/auparse/gstauparse.c: (gst_auparse_chain):
25831 Fix for some uninitialized variables in previous patch, also
25832 makes it work. Fixes #142286 while we're at it.
25834 2004-05-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25836 * gst/auparse/gstauparse.c:
25837 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
25838 only unsupported formats are ADPCM/CCITT G.72x
25840 * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
25842 2004-05-10 Wim Taymans <wim@fluendo.com>
25844 * ext/vorbis/Makefile.am:
25845 * ext/vorbis/README:
25846 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
25847 (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
25848 (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
25849 (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
25850 (gst_oggvorbisenc_convert_sink),
25851 (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
25852 (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
25853 (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
25854 (get_constraints_string), (update_start_message),
25855 (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
25856 (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
25857 (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
25858 * ext/vorbis/oggvorbisenc.h:
25859 * ext/vorbis/vorbis.c: (plugin_init):
25860 * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
25861 (raw_caps_factory), (gst_vorbisenc_class_init),
25862 (gst_vorbisenc_init), (gst_vorbisenc_setup),
25863 (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
25864 (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
25865 * ext/vorbis/vorbisenc.h:
25866 Added a raw vorbis encoder to be used with the oggmuxer.
25867 We still need the old encoder for some gnome applications,
25868 read the README to find out how that works.
25869 The raw encoder is called "rawvorbisenc" until 0.9.
25871 2004-05-10 Wim Taymans <wim@fluendo.com>
25873 * ext/ogg/gstogg.c: (plugin_init):
25874 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
25876 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
25877 (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
25878 (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
25879 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
25880 (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
25881 (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
25882 (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
25883 (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
25884 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
25885 (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
25886 Added an ogg muxer.
25887 Small typo fixes in the demuxer.
25889 2004-05-10 Wim Taymans <wim@fluendo.com>
25891 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
25892 (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
25893 (theora_enc_change_state), (theora_enc_set_property),
25894 (theora_enc_get_property):
25895 Mark the last packet with an EOS flag which is not really needed
25897 Do some better video framerate initialisation.
25898 Update the buffer timestamp.
25900 2004-05-10 Jan Schmidt <thaytan@mad.scientist.com>
25902 * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
25903 Return the result of the parent state change call
25905 2004-05-10 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25907 * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
25908 * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
25909 * gst/law/alaw-encode.c : (idem)
25910 * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
25911 * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
25912 * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
25914 2004-05-09 Benjamin Otte <otte@gnome.org>
25916 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
25917 don't use a fixed buffer size when writing variable length data to
25918 it. Fixes memory corruption and makes alsasrc work
25920 2004-05-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
25922 * ext/gnomevfs/gstgnomevfssink.c:
25923 (_gst_boolean_allow_overwrite_accumulator),
25924 (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
25925 Run glib's default signal handler (??) in RUN_CLEANUP rather than
25926 RUN_LAST, and don't use that to set the accumulator value because
25927 then it's always FALSE.
25929 2004-05-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
25931 * gst-libs/gst/riff/riff-media.c:
25932 (gst_riff_create_video_caps_with_data),
25933 (gst_riff_create_audio_caps),
25934 (gst_riff_create_audio_template_caps):
25935 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
25936 Fix for unaligned RIFF files (i.e. where all the chunks together
25937 in a LIST chunk are not of the same size as the size given in
25938 the LIST chunk header). Fixes several odd WAVE files. Also fix
25939 ADPCM (block_align property) in audio, so that wavparse based
25940 on this works now as it used to stand-alone.
25942 2004-05-09 Edward Hervey <bilboed@bilboed.com>
25944 reviewed by Benjamin Otte <otte@gnome.org>
25946 * ext/a52dec/gsta52dec.c:
25947 * ext/divx/gstdivxdec.c:
25948 * ext/divx/gstdivxenc.c:
25949 * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
25950 * ext/faac/gstfaac.c: (gst_faac_base_init):
25951 * ext/faad/gstfaad.c: (gst_faad_base_init):
25952 * ext/ivorbis/vorbisfile.c:
25953 * ext/lame/gstlame.c:
25954 * ext/libfame/gstlibfame.c:
25955 * ext/mpeg2enc/gstmpeg2enc.cc:
25956 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
25957 * ext/sidplay/gstsiddec.cc:
25958 * ext/speex/gstspeexdec.c:
25959 * ext/speex/gstspeexenc.c:
25960 * ext/xvid/gstxviddec.c:
25961 * ext/xvid/gstxvidenc.c:
25962 correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
25965 2004-05-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
25967 * ext/alsa/gstalsa.c: (device_list),
25968 (gst_alsa_class_probe_devices):
25969 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
25970 Fix alsa oddness in mixer after the combination of using mixer
25971 in source/sink elements and using hw:x,y instead of just hw:x.
25973 2004-05-09 Benjamin Otte <otte@gnome.org>
25975 * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
25976 (gst_wavparse_create_sourcepad):
25977 make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
25980 2004-05-09 Benjamin Otte <otte@gnome.org>
25982 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
25983 allow discont events before caps nego
25985 2004-05-08 Benjamin Otte <otte@gnome.org>
25987 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
25990 2004-05-08 Benjamin Otte <otte@gnome.org>
25992 * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
25993 (gst_level_change_state), (gst_level_init):
25994 * gst/level/gstlevel.h:
25995 figure out if we're initialized directly instead of keeping a
25996 variable that's wrong in 90% of cases
25997 don't initialize pads and then leak them and use a new unitialized
25998 pad. (fixes #142084)
25999 these were bugs so n00bish I didn't find them for an hour :/
26001 2004-05-08 Iain <iain@prettypeople.org>
26003 * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
26004 * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
26005 (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
26006 return the length that was read.
26007 (gst_riff_read_strf_auds): Allow fmt tags as well.
26009 2004-05-07 David Schleef <ds@schleef.org>
26011 * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
26012 signed char assumption in faad.h.
26014 2004-05-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
26016 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
26017 Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
26019 2004-05-07 Colin Walters <walters@redhat.com>
26021 * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
26022 * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
26024 * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
26025 Add dispose function.
26027 2004-05-08 Jan Schmidt <thaytan@mad.scientist.com>
26028 * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
26029 Fix caps nego and pad templates. RGB mode caps should
26031 * ext/dvdnav/gst-dvd:
26032 Move mpeg2dec inside the thread because otherwise the
26033 queue rejects cap changes mid-stream
26034 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
26035 (gst_mpeg2dec_flush_decoder):
26036 For mpeg2dec > 0.4.0, call the flush function instead of
26037 manually extracting all in-flight frames.
26038 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
26039 (gst_dv1394src_init), (gst_dv1394src_iso_receive):
26040 Change mime type video/dv go video/x-dv to match the
26041 rest of gst-plugins
26043 2004-05-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
26045 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
26046 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
26047 (gst_alsa_sink_class_init):
26048 * ext/alsa/gstalsasink.h:
26049 * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
26050 (gst_alsa_src_class_init):
26051 * ext/alsa/gstalsasrc.h:
26052 Make alsasink/src a subclass of alsamixer so that mixer stuff
26053 shows up in gst-rec. Needs some finetuning.
26055 2004-05-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
26057 * ext/lame/gstlame.c: (gst_lame_chain):
26059 * ext/mad/gstmad.c: (gst_mad_handle_event):
26061 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
26062 be able to detect mp3 files < 4096 bytes
26064 2004-05-06 Wim Taymans <wim@fluendo.com>
26066 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
26067 (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
26068 (theora_enc_set_property), (theora_enc_get_property):
26069 Also encode the first frame, cleanup some code.
26071 2004-05-06 Wim Taymans <wim@fluendo.com>
26073 * ext/mpeg2enc/gstmpeg2enc.cc:
26074 Forward events first before deciding that negotiation was
26077 2004-05-06 Wim Taymans <wim@fluendo.com>
26079 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
26080 First process the events before deciding that negotiation
26083 2004-05-06 Wim Taymans <wim@fluendo.com>
26085 * ext/theora/Makefile.am:
26086 * ext/theora/theora.c: (plugin_init):
26087 * ext/theora/theoradec.c: (theora_dec_change_state):
26088 * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
26089 (gst_theora_enc_class_init), (gst_theora_enc_init),
26090 (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
26091 (theora_enc_chain), (theora_enc_change_state),
26092 (theora_enc_set_property), (theora_enc_get_property):
26093 Added a theora encoder, grouped the encoder and decoder into the
26096 2004-05-05 Thomas Vander Stichele <thomas at apestaart dot org>
26098 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26099 (gst_jpegenc_chain):
26100 fix DURATION on outgoing buffers
26101 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
26102 debug using time formats
26103 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
26104 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26105 (gst_xvimagesink_sink_link):
26106 windows with width/height 0 generate X errors, so don't allow them
26108 2004-05-05 Wim Taymans <wim@fluendo.com>
26110 * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
26111 (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
26112 (gst_mpeg2dec_negotiate_format):
26113 * ext/mpeg2dec/gstmpeg2dec.h:
26114 removed the static pad template so that we can add the
26115 more accurate framerate value to the caps.
26118 2004-05-04 Benjamin Otte <otte@gnome.org>
26121 check for kdemacros.h, too (should fix #141821)
26122 * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
26123 don't crash if no header was sent, but nicely error out (fixes part
26126 2004-05-04 Wim Taymans <wim@fluendo.com>
26128 * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
26129 parent dispose function to avoid segfault on destroy.
26131 2004-05-04 Thomas Vander Stichele <thomas at apestaart dot org>
26133 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
26135 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
26136 (gst_xvimagesink_sink_link):
26137 clean up debugging caps
26138 also recreate xvimage when format has changed
26140 2004-05-04 Benjamin Otte <otte@gnome.org>
26142 * ext/libvisual/Makefile.am:
26143 * ext/libvisual/visual.c: (gst_visual_class_init),
26144 (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
26145 (gst_visual_srclink), (gst_visual_chain),
26146 (gst_visual_change_state), (plugin_init):
26147 use a GstAdapter to correctly adapt buffer sizes - allows using a
26150 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26152 * sys/v4l/gstv4lelement.h:
26153 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
26154 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
26155 (gst_v4lsrc_buffer_free):
26156 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
26157 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
26158 (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
26159 (gst_v4lsrc_requeue_frame):
26160 move some debugging categories around
26161 query for fps index and set accordingly if found
26163 2004-05-03 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
26165 * ext/lame/gstlame.c:
26166 correct defaults that lame_init puts out of range
26168 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26170 * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
26171 (gst_divxenc_class_init):
26172 fix range since -1 is the default
26173 * gst/mpeg1sys/gstmpeg1systemencode.c:
26174 (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
26175 * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
26176 (gst_rtjpegdec_chain):
26177 * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
26178 (gst_rtjpegenc_chain):
26179 * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
26180 (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
26181 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
26182 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
26183 * sys/v4l/gstv4lsrc.c:
26184 * sys/v4l/v4l_calls.c: (gst_v4l_open):
26185 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
26186 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
26187 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
26188 * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
26189 remove gst_info calls
26191 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26200 Updated translations
26202 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26204 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26205 refactor/comment code
26207 2004-05-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
26209 * gst/asfdemux/Makefile.am:
26210 * gst/asfdemux/asfheaders.c:
26211 * gst/asfdemux/asfheaders.h:
26212 * gst/asfdemux/gstasf.c: (plugin_init):
26213 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
26214 (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
26215 (gst_asf_demux_setup_pad):
26216 * gst/asfdemux/gstasfdemux.h:
26217 * gst/asfdemux/gstasfmux.c:
26218 * gst/asfdemux/gstasfmux.h:
26219 Add tagging support to demuxer, split out registration in its own
26220 file instead of in demux (hacky), and prevent having some tables
26221 in our memory multiple times (in asfheaders.h).
26223 2004-05-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
26225 * gst/matroska/matroska-demux.c:
26226 (gst_matroska_demux_parse_metadata):
26227 * gst/matroska/matroska-ids.h:
26228 Basic tag reading support.
26230 2004-04-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
26232 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
26233 Really detect ac-3 audio.
26234 * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
26235 really detect matroska files (off-by-1).
26237 2004-04-30 David Schleef <ds@schleef.org>
26239 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26240 (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
26241 (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
26242 (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
26243 (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
26244 hackage -- parse a lot more atoms, extract a few tags. One might even
26245 mistake this for tag support. Maybe it is.
26246 * gst/qtdemux/qtdemux.h:
26248 2004-04-30 Colin Walters <walters@verbum.org>
26250 * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
26252 2004-04-30 Thomas Vander Stichele <thomas at apestaart dot org>
26254 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26255 (gst_ffmpegcolorspace_getcaps):
26256 remove broken nego fix
26258 2004-04-30 Benjamin Otte <otte@gnome.org>
26262 * ext/libvisual/Makefile.am:
26263 * ext/libvisual/visual.c:
26264 add initial support for libvisual (http://libvisual.sourceforge.net)
26265 libvisual is still quite alpha, so expect crashes in there :)
26267 2004-04-29 David Schleef <ds@schleef.org>
26269 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
26270 (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
26271 up qtdemux to make it spit out codec_data. Do _not_ look at this
26272 code; you will no longer respect me.
26274 2004-04-29 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
26276 * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
26277 * ext/alsa/gstalsa.h :
26278 change alsa pcm device discovery to find more than 1 device
26279 per card. code review by Ronald.
26281 2004-04-29 David Schleef <ds@schleef.org>
26283 * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
26284 Add a check for a driver bug on FreeBSD. (bug #140565)
26286 2004-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
26288 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
26289 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26290 (gst_jpegenc_getcaps):
26291 move format setting to inner loop
26292 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26293 (gst_ffmpegcolorspace_getcaps):
26294 use GST_PAD_CAPS if available so that we use already negotiated
26296 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26297 (qtdemux_parse_moov), (qtdemux_parse):
26299 * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
26300 * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
26301 move hardcoded path to DEFINE
26303 2004-04-28 David Schleef <ds@schleef.org>
26305 * gst/speed/gstspeed.c: (speed_parse_caps): Fix caps parsing.
26308 2004-04-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
26310 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
26311 Don't probe for playback device if we're a source element. Fixes
26314 2004-04-29 Benjamin Otte <otte@gnome.org>
26316 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
26317 (gst_id3_tag_chain):
26318 rewrite buffer offset
26320 2004-04-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
26324 * ext/dts/Makefile.am:
26325 * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
26326 (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
26327 (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
26328 (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
26329 (gst_dtsdec_loop), (gst_dtsdec_change_state),
26330 (gst_dtsdec_set_property), (gst_dtsdec_get_property),
26332 * ext/dts/gstdtsdec.h:
26334 * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
26335 (gst_faad_srcconnect):
26336 Add ESDS atom handling (.m4a).
26338 2004-04-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
26340 * ext/divx/gstdivxdec.c: (plugin_init):
26341 Remove comment that makes no sense.
26342 * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
26343 Fix for obvious typo that resulted in warnings during gst-register.
26344 * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
26345 (gst_xviddec_sink_link):
26346 Fix caps negotiation a bit better.
26347 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
26348 We call this 'codec_data', not 'esds'.
26350 2004-04-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
26352 * gst/monoscope/gstmonoscope.c:
26353 make sure we only provide 256x128
26354 * gst/monoscope/monoscope.c: (monoscope_init):
26355 assert size of 256x128
26357 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
26360 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
26361 (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
26362 fixate to max width and height of device
26364 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
26367 * sys/v4l/gstv4l.c:
26368 * sys/v4l/gstv4lsrc.c:
26369 * sys/v4l/v4l_calls.c:
26370 * sys/v4l/v4lsrc_calls.c:
26371 fix for qc-usb driver which fakes having more than one buffer
26372 by handing the same buffer twice, which confused GStreamer's/v4lsrc
26373 buffer_free override
26376 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
26379 * gst/videotestsrc/gstvideotestsrc.c:
26380 (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
26381 (gst_videotestsrc_init), (gst_videotestsrc_get),
26382 (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
26383 * gst/videotestsrc/gstvideotestsrc.h:
26384 add num-buffers property
26386 2004-04-26 Benjamin Otte <otte@gnome.org>
26388 * ext/mad/gstid3tag.c: (plugin_init):
26389 set id3mux rank to NONE so it doesn't confuse spider
26390 require audio/mpeg,mpegversion=1 in id3mux
26392 2004-04-26 Benjamin Otte <otte@gnome.org>
26395 detect faad correctly as non-working if it's indeed non-working
26397 2004-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
26400 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26401 (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
26402 fix _getcaps so it only negotiates to its supported format
26404 2004-04-25 Benjamin Otte <otte@gnome.org>
26406 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26409 2004-04-23 Benjamin Otte <otte@gnome.org>
26411 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
26412 audio/x-raw-int with height rules! not. Now it's depth.
26414 2004-04-22 Ronald Bultje <rbultje@ronald.bitfreak.net>
26416 * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
26417 (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
26418 (gst_wavparse_loop):
26419 Missing variable initialization. Add handling of DVI ADPCM. Fix
26420 mis-parsing of LIST chunks. This works around a bug where we mis-
26421 parse non-aligning LIST chunks (so LIST chunks where the contents
26422 don't align with the actual LIST size). The correct fix is to use
26423 rifflib, I'm not going to fix wavparse - too much work. All this
26426 2004-04-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
26428 reviewed by Benjamin Otte <otte@gnome.org>
26430 * ext/shout/gstshout.c: (gst_icecastsend_change_state):
26431 fix shoutcast not working (fixes #140844)
26433 2004-04-22 Benjamin Otte <otte@gnome.org>
26435 * ext/hermes/gsthermescolorspace.c:
26436 (gst_hermes_colorspace_caps_remove_format_info):
26437 * gst/colorspace/gstcolorspace.c:
26438 (gst_colorspace_caps_remove_format_info):
26439 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26440 (gst_ffmpegcolorspace_caps_remove_format_info):
26441 s/gst_caps_simplify/gst_caps_do_simplify/
26443 2004-04-22 Benjamin Otte <otte@gnome.org>
26445 * gst-libs/gst/riff/riff-media.c:
26446 (gst_riff_create_video_caps_with_data):
26447 mpegversion is an int
26448 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
26449 don't try to create pad templates with NULL caps, use any caps
26452 2004-04-20 David Schleef <ds@schleef.org>
26454 * ext/sdl/Makefile.am: Link against libgstinterfaces, not
26455 libgstxoverlay. jmmv@menta.net (Julio M. Merino Vidal)
26458 2004-04-20 Daniel Gazard <daniel.gazard@epita.fr>
26460 reviewed by David Schleef
26462 * ext/mad/gstid3tag.c: Add stdlib.h
26463 * gst/rtp/gstrtpgsmenc.c: same
26464 * gst/tags/gstid3tag.c: same
26465 * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
26466 * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
26467 GST_DISABLE_LOADSAVE use.
26468 * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
26469 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
26470 * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
26472 * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
26473 * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
26475 * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
26476 * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
26478 * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
26481 2004-04-20 David Schleef <ds@schleef.org>
26483 * gst/realmedia/rmdemux.c: This was supposed to part of the
26484 last checkin. Same idea.
26486 2004-04-20 Daniel Gazard <daniel.gazard@epita.fr>
26488 reviewed by David Schleef
26490 * configure.ac: bump required gstreamer version to 0.8.1.1
26491 because of following changes [--ds]
26493 * gst-libs/gst/riff/riff-read.c: Include gst/gstutils.h.
26494 (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
26495 (gst_riff_read_header): Use GST_READ_UINT*
26496 macros to access possibly unaligned memory.
26498 * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
26499 (mp3_type_find): Use GST_READ_UINT*
26500 macros to access possibly unaligned memory.
26501 (mp3_type_find, mpeg1_parse_header, qt_type_find)
26502 (speex_type_find): Likewise
26504 * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
26506 * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
26507 (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
26508 (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
26509 (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
26510 (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
26511 (qtdemux_tree_get_sibling_by_type): Use GST_READ_UINT*
26512 macros to access possibly unaligned memory.
26514 * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
26517 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
26518 (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
26520 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
26523 * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
26524 (gst_mpeg2subt_chain_subtitle): Likewise.
26526 * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
26527 (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
26530 * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
26533 * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
26536 * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
26539 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
26542 update required version of GStreamer because of GST_TIME_FORMAT
26544 2004-04-20 Benjamin Otte <in7y118@public.uni-hamburg.de>
26546 * ext/mad/gstid3tag.c: (gst_id3_tag_init):
26547 remove leftover g_print
26548 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
26549 don't try setting only a subset of the caps. We don't want to kill
26550 autoplugging on purpose
26552 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
26554 * sys/ximage/ximagesink.c: (plugin_init):
26555 * sys/xvimage/xvimagesink.c: (plugin_init):
26556 add debugging categories
26558 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
26562 Adding en_GB translation (Gareth Owen)
26564 2004-04-20 David Schleef <ds@schleef.org>
26566 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
26567 (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
26568 (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
26569 (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
26570 A number of new features and hacks to extract the esds atom and
26571 put it into the caps. (bug #137724)
26573 2004-04-19 David Schleef <ds@schleef.org>
26575 * gconf/Makefile.am: Fix for non-GNU make
26576 * gst-libs/gst/Makefile.am: Change directory order to handle
26577 GstPlay linking with gstinterfaces
26578 * gst-libs/gst/audio/make_filter: make use of tr portable
26579 * gst-libs/gst/play/Makefile.am: Add intended \
26580 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
26581 (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
26582 function prototype instead of void *.
26583 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
26585 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26586 (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
26587 * gst/videofilter/make_filter: make use of tr portable
26588 * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
26590 2004-04-19 Thomas Vander Stichele <thomas at apestaart dot org>
26594 Added Ukrainian translation (Maxim V. Dziumanenko)
26596 2004-04-18 Ronald Bultje <rbultje@ronald.bitfreak.net>
26598 * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
26599 (gst_gsmdec_link), (gst_gsmdec_chain):
26600 Fix capsnego, simplify chain function slightly.
26601 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
26604 2004-04-18 Ronald Bultje <rbultje@ronald.bitfreak.net>
26606 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
26607 (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
26608 (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
26609 Hack to make wavparse work with spider (always -> sometimes pad).
26610 Fixes #135862 && #140411.
26612 2004-04-18 Benjamin Otte <otte@gnome.org>
26614 * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
26615 (gst_osselement_rate_probe_check),
26616 (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
26617 get rid of \n in debug output
26619 2004-04-17 Iain <iain@prettypeople.org>
26621 * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
26624 2004-04-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
26626 * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
26627 (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
26628 (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
26629 (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
26630 (gst_id3_tag_src_link), (gst_id3_tag_chain),
26631 (gst_id3_tag_change_state), (plugin_init):
26632 deprecate id3tag element and replace with id3demux/id3mux.
26633 great side effect: this ugly file is now even uglier, yay!
26634 * ext/mad/gstmad.h:
26635 remove non-available function
26636 update for new get_type
26638 2004-04-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
26641 require mpeg2dec >= 0.4.0
26643 2004-04-17 Benjamin Otte <otte@gnome.org>
26645 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26646 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
26647 (gst_xvimagesink_set_xwindow_id):
26648 call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
26649 assorted cleanup fixes.
26651 2004-04-16 David Schleef <ds@schleef.org>
26653 * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
26654 * sys/xvimage/xvimagesink.h: same
26656 2004-04-16 Thomas Vander Stichele <thomas at apestaart dot org>
26658 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26659 Fix GST_ELEMENT_ERROR with (NULL)
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 Add div[3456] as fourccs for DivX 3 (fixes #140137).
26667 2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
26669 * gst-libs/gst/riff/riff-media.c:
26670 (gst_riff_create_video_caps_with_data),
26671 (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
26672 (gst_riff_create_video_template_caps),
26673 (gst_riff_create_audio_template_caps):
26674 * gst-libs/gst/riff/riff-media.h:
26675 * gst-libs/gst/riff/riff-read.c:
26676 (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
26677 * gst-libs/gst/riff/riff-read.h:
26678 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
26679 Add MS RLE support. I added some functions to read out strf chunks
26680 into strf chunks and the data behind it. This is usually color
26681 palettes (as in RLE, but also in 8-bit RGB). Also use those during
26682 caps creation. Lastly, add ADPCM (similar to wavparse - which
26683 should eventually be rifflib based).
26684 * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
26685 (gst_matroska_demux_init), (gst_matroska_demux_reset):
26686 * gst/matroska/matroska-demux.h:
26687 Remove placeholders for some prehistoric tagging system. Didn't add
26688 support for any tag system really anyway.
26689 * gst/qtdemux/qtdemux.c:
26690 Add support for audio/x-m4a (MPEG-4) through spider.
26691 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
26692 (gst_wavparse_loop):
26693 ADPCM support (#135862). Increase max. buffer size because we
26694 cannot split buffers for ADPCM (screws references) and I've seen
26695 files with 2048 byte chunks. 4096 seems safe for now.
26697 2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org>
26699 * configure.ac: bump nano to 1
26701 === release 0.8.1 ===
26703 2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org>
26705 * configure.ac: releasing 0.8.1, "Comforting Sounds"
26707 2004-04-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
26709 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26710 Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
26713 2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
26715 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
26716 lower rank of dvddemux so that it's not used for mpeg playback.
26718 2004-04-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
26721 save libs correctly when checking mad
26723 2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
26725 * ext/mad/gstid3tag.c: (plugin_init):
26726 lower rank of id3tag as proposed by Benjamin. Fixes #139926.
26728 2004-04-13 David Schleef <ds@schleef.org>
26730 * common/m4/gst-feature.m4: Call -config scripts with
26731 --plugin-libs if it is supported.
26732 * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
26733 JPEG images are image/jpeg.
26734 * gst/debug/Makefile.am:
26735 * gst/debug/negotiation.c: (gst_negotiation_class_init),
26736 (gst_negotiation_getcaps), (gst_negotiation_pad_link),
26737 (gst_negotiation_update_caps), (gst_negotiation_get_property),
26738 (gst_negotiation_plugin_init): Add a property that acts like
26740 * testsuite/gst-lint: Move license checking to be a standard
26743 2004-04-13 David Schleef <ds@schleef.org>
26745 * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
26746 patch from Sebastien Cote (bug #139958)
26748 2004-04-13 Thomas Vander Stichele <thomas at apestaart dot org>
26750 * examples/gstplay/Makefile.am:
26751 * examples/gstplay/player.c: (main):
26752 make the commandline player example use gconf settings
26754 2004-04-13 Thomas Vander Stichele <thomas at apestaart dot org>
26756 * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
26757 (gst_cacasink_sinkconnect), (gst_cacasink_init),
26758 (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
26759 init/end library during state transition, not object
26760 creation/disposal. get rid of custom dispose handler.
26763 2004-04-12 Christian Schaller <Uraeus@gnome.org>
26765 * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
26768 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26770 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
26771 Handle JUNK chunks inside data section. Prevents warnings.
26773 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26775 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
26776 (gst_riff_create_video_template_caps):
26778 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
26779 (gst_avi_demux_stream_data):
26780 Add support for "rec-list" chunks.
26782 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26784 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
26785 Fix another codecname mismatch.
26787 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26789 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26790 Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
26791 so that MJPEG plays back.
26793 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26795 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
26796 (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
26797 * gst/mpeg1videoparse/gstmp1videoparse.h:
26798 Fix for some slight mis-cuts in buffer parsing, and for some
26799 potential overflows or faults-causers. Adds disconts. Also fixes
26800 #139105 while we're at it.
26802 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26805 * sys/v4l2/gstv4l2element.h:
26806 Workaround for missing struct v4l2_buffer declaration in Suse 9
26807 and Mandrake 10 linux/videodev2.h header file (#135919).
26809 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26811 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26812 Bail out if no filename was given.
26814 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26816 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
26817 (gst_v4l2_fourcc_from_structure):
26818 Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
26821 2004-04-09 Benjamin Otte <otte@gnome.org>
26823 * ext/gnomevfs/gstgnomevfssink.c:
26824 (_gst_boolean_allow_overwrite_accumulator),
26825 (gst_gnomevfssink_class_init):
26826 fix erase signal - if any handler returns false the file will not be
26827 overwritten. If no handler is connected, the file will not be
26828 overwritten either.
26829 renamed signal to "allow-overwrite"
26830 * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
26831 free string when adding it to ID3 failed
26832 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
26833 unref event when done
26834 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26836 * gst/typefind/gsttypefindfunctions.c:
26837 (mpeg_video_stream_type_find):
26840 2004-04-08 David Schleef <ds@schleef.org>
26842 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26843 (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
26845 2004-04-08 David Schleef <ds@schleef.org>
26847 * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
26848 we don't support (bug #139532)
26850 2004-04-07 Thomas Vander Stichele <thomas at apestaart dot org>
26852 * ext/mad/gstmad.c: (gst_mad_handle_event),
26853 (gst_mad_check_caps_reset), (gst_mad_chain),
26854 (gst_mad_change_state):
26855 only set explicit caps if they haven't been set before for
26856 this stream. MPEG-audio sample rate/channels aren't allowed
26857 to change in-stream.
26860 2004-04-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
26862 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
26863 (_gst_boolean_did_something_accumulator),
26864 (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
26865 (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
26866 (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
26867 (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
26868 (gst_gnomevfssink_change_state):
26869 Fix erase signal. Don't erase by default. Remove handoff signal.
26870 Remove erase property. Don't segfault. General cleanup.
26872 2004-04-07 Benjamin Otte <otte@gnome.org>
26874 * gst-libs/gst/gconf/test-gconf.c: (main):
26875 add missing gst_init
26877 2004-04-07 Benjamin Otte <otte@gnome.org>
26879 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26880 free the mutexes, too
26882 2004-04-07 Benjamin Otte <otte@gnome.org>
26884 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26885 actually free the URI string
26886 * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
26887 compute offset correctly when passing discont events
26888 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26889 don't leak discont events
26890 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
26891 add some missing breaks so caps aren't copied randomly
26892 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
26893 if we realloc memory, we better use it
26895 2004-04-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
26897 * ext/mad/gstmad.c: (normal_seek):
26898 fix GST_FORMAT_TIME usage
26900 2004-04-05 David Schleef <ds@schleef.org>
26902 * ext/kio/kiosrc.cpp: Undefine KDE_DEPRECATED so we can use
26903 a deprecated function (hack!)
26905 2004-04-05 Benjamin Otte <otte@gnome.org>
26907 * ext/esd/esdmon.c: (gst_esdmon_get):
26908 fix nonterminated vararg and memleak
26910 2004-04-05 Benjamin Otte <otte@gnome.org>
26912 * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
26913 (gst_ladspa_init), (gst_ladspa_force_src_caps),
26914 (gst_ladspa_set_property), (gst_ladspa_get_property),
26915 (gst_ladspa_instantiate), (gst_ladspa_activate),
26916 (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
26919 2004-04-05 Stefan Kost <kost@imn.htwk-leipzig.de>
26921 reviewed by Benjamin Otte <otte@gnome.org>
26923 * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
26924 check for broken LADSPA parameters (fixes #138635)
26926 2004-04-05 Benjamin Otte <otte@gnome.org>
26928 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
26929 advertise buffer-frames correctly on sinkpads
26931 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
26933 * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
26934 (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
26935 (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
26936 (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
26937 (gst_mad_check_caps_reset), (gst_mad_chain):
26938 add more debugging, only reset caps when we're not in error state
26940 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
26942 * ext/mad/gstmad.c: add debugging category, comment + cleanups
26944 2004-04-05 Julio M. Merino Vidal <jmmv@menta.net>
26946 reviewed by Benjamin Otte <otte@gnome.org>
26949 fix == in test(1) operator
26951 2004-04-05 Julio M. Merino Vidal <jmmv@menta.net>
26953 reviewed by Benjamin Otte <otte@gnome.org>
26956 fix --export-symblos-regex to a working regex.
26958 2004-04-04 Benjamin Otte <otte@gnome.org>
26960 * sys/oss/.cvsignore:
26963 2004-04-03 Tim-Phillip Müller <t.i.m@zen.co.uk>
26965 reviewed by Benjamin Otte <otte@gnome.org>
26967 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26968 add missing 'new_media' argument (fixes #138168)
26969 * gst/matroska/matroska-demux.c:
26970 (gst_matroska_demux_handle_seek_event):
26971 add vararg terminator (fixes #138169)
26973 2004-04-02 David Schleef <ds@schleef.org>
26975 * ext/gdk_pixbuf/Makefile.am: Make sure gstgdkanimation.h is
26976 disted (bug #138914)
26978 2004-04-01 Benjamin Otte <otte@gnome.org>
26980 * ext/alsa/gstalsa.c: (gst_alsa_change_state),
26981 (gst_alsa_close_audio):
26982 handle case better where a soundcard can't pause
26983 * ext/ogg/gstoggdemux.c:
26984 don't crash when we get events but don't have pads yet
26986 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
26988 * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
26989 throw an error if we couldn't probe any caps.
26991 2004-04-01 Jan Schmidt <thaytan@mad.scientist.com>
26993 * ext/dvdnav/gst-dvd:
26994 Add a really simple sample DVD player
26996 2004-04-01 Jan Schmidt <thaytan@mad.scientist.com>
26998 * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
26999 (gst_a52dec_push), (gst_a52dec_handle_event),
27000 (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
27001 (gst_a52dec_change_state):
27002 * ext/a52dec/gsta52dec.h:
27003 Use a debug category, Output timestamps correctly
27004 Emit tag info, Handle events, tell liba52dec about cpu
27005 capabilities so it can use MMX etc.
27006 * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
27007 Fix a crasher accessing invalid memory
27008 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
27009 (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
27010 (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
27011 (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
27013 Some support for byte-format seeking.
27014 Small fixes for still frames and menu button overlays
27015 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
27016 (gst_mpeg2dec_alloc_buffer):
27017 Use a debug category. Adjust the report level of several items to
27018 LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
27019 so it doesn't lose the GstBuffer pointer
27020 * gst/debug/Makefile.am:
27021 * gst/debug/gstdebug.c: (plugin_init):
27022 * gst/debug/gstnavseek.c: (gst_navseek_get_type),
27023 (gst_navseek_base_init), (gst_navseek_class_init),
27024 (gst_navseek_init), (gst_navseek_seek),
27025 (gst_navseek_handle_src_event), (gst_navseek_set_property),
27026 (gst_navseek_get_property), (gst_navseek_chain),
27027 (gst_navseek_plugin_init):
27028 * gst/debug/gstnavseek.h:
27029 Add the navseek debug element for seeking back and forth in a
27030 video stream using arrow keys.
27031 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
27032 (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
27033 (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
27034 (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
27035 (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
27036 (gst_mpeg2subt_parse_header), (gst_get_nibble),
27037 (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
27038 (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
27039 (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
27040 (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
27041 * gst/mpeg2sub/gstmpeg2subt.h:
27042 Pretty much a complete rewrite. Now a loopbased element. May still
27043 require work to properly synchronise subtitle buffers.
27044 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
27045 (gst_dvd_demux_send_subbuffer):
27046 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
27047 Don't attempt to create subbuffers of size 0
27048 Reduce a couple of error outputs to warnings.
27049 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
27050 (gst_y4mencode_chain):
27051 Output the y4m frame header correctly.
27053 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
27055 * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
27056 throw errors instead of allowing SIGFPE
27058 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
27060 * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
27061 (gst_gconf_render_bin_from_key):
27062 leak plugging and style fixing
27064 2004-03-31 David Schleef <ds@schleef.org>
27066 * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
27067 (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
27069 * gst/debug/Makefile.am:
27070 * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
27071 * gst/debug/gstdebug.c: (plugin_init): Merge elements into one
27073 * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
27074 (gst_negotiation_base_init), (gst_negotiation_class_init),
27075 (gst_negotiation_init), (gst_negotiation_getcaps),
27076 (gst_negotiation_pad_link), (gst_negotiation_chain),
27077 (gst_negotiation_set_property), (gst_negotiation_get_property),
27078 (gst_negotiation_plugin_init): New element to talk about random
27079 negotiation things happening in a pipeline.
27081 2004-03-31 Thomas Vander Stichele <thomas at apestaart dot org>
27083 * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
27084 fix integer addition with help of Stefan Kost
27086 2004-03-31 Thomas Vander Stichele <thomas at apestaart dot org>
27088 * po/nl.po: updated Dutch translation (Elros Cyriatan)
27090 2004-03-30 David Schleef <ds@schleef.org>
27092 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
27093 (gst_mpeg2dec_negotiate_format): Handle Y42B-format MPEG
27094 video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
27096 * ext/mpeg2dec/gstmpeg2dec.h:
27098 2004-03-30 David Schleef <ds@schleef.org>
27100 * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
27102 2004-03-30 David Schleef <ds@schleef.org>
27104 * tools/gst-launch-ext-m.m: Applied patch from gnome@flyn.org (W.
27105 Michael Petullo) to handle .mov
27107 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27109 * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
27110 (gst_osselement_rate_check_rate):
27111 probe caps correctly for sound cards that only support one format
27113 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27115 * ext/kio/kiosrc.cpp: (process_events):
27116 update handling event processing if inside KDE - untested
27118 2004-03-29 David Schleef <ds@schleef.org>
27120 * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
27121 by 2 to not interfere with other colorspaces.
27122 * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
27123 * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
27124 one to not interfere with ffmpeg_colorspace.
27126 2004-03-29 David Schleef <ds@schleef.org>
27128 * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
27129 aren't in the caps.
27130 * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
27131 * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
27133 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27135 * gst-libs/gst/riff/riff-media.c:
27136 fail on error, don't try to set stuff on NULL caps
27138 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27142 * ext/kio/Makefile.am:
27143 * ext/kio/kioreceiver.cpp:
27144 * ext/kio/kioreceiver.h:
27145 * ext/kio/kiosrc.cpp:
27146 * ext/kio/kiosrc.h:
27147 add experimental kiosrc plugin
27148 * ext/alsa/gstalsaplugin.c: (plugin_init):
27149 initialize debugging category only when we're sure registering the
27152 2004-03-29 Thomas Vander Stichele <thomas at apestaart dot org>
27154 * examples/gstplay/player.c: (main):
27155 * gst-libs/gst/play/play.c: (gst_play_class_init),
27156 (gst_play_set_location), (gst_play_set_data_src),
27157 (gst_play_set_video_sink), (gst_play_set_audio_sink),
27158 (gst_play_set_visualization), (gst_play_connect_visualization):
27159 check return values of element_set_state and return FALSE where
27162 2004-03-29 Benjamin Otte <otte@gnome.org>
27164 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
27165 try harder to check if an event is really a discont
27167 2004-03-29 Thomas Vander Stichele <thomas at apestaart dot org>
27169 * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
27172 2004-03-28 Benjamin Otte <otte@gnome.org>
27174 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
27175 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
27176 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
27177 get rid of non-standard "..." ranges in case statements.
27179 2004-03-27 Martin Soto <martinsoto@users.sourceforge.net>
27181 * gst/mpegstream/gstmpegdemux.c:
27182 * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
27183 specific functionality split to the new dvddemux element.
27184 * gst/mpegstream/gstdvddemux.c:
27185 * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
27186 streams, derived from mpegdemux.
27187 * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
27188 up. SCR based timestamp rewriting can be turned off (will probably
27189 completely disappear soon).
27190 * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
27191 hacking. General cleanup. All printf statements replaced by
27192 debugging messages. Almost complete libdvdnav support.
27193 (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
27194 by events. New properties for audio and subpicture languages.
27195 (dvdnavsrc_update_highlight): Now uses events.
27196 (dvdnavsrc_user_op): Cleaned up.
27197 (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
27198 based). Lots of cleanup, and propper support for most libdvdnav
27200 (dvdnavsrc_make_dvd_event): New function.
27201 (dvdnavsrc_make_dvd_nav_packet_event): New function.
27202 (dvdnavsrc_make_clut_change_event): New function.
27204 2004-03-26 Benjamin Otte <otte@gnome.org>
27206 * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
27207 fix bug where typefinding would claim it's theora whenever less then
27208 7 bytes of data were available
27210 2004-03-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
27212 * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
27213 (gst_alawdec_base_init), (gst_alawdec_class_init),
27214 (gst_alawdec_init), (gst_alawdec_chain):
27215 * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
27216 (gst_alawenc_base_init), (gst_alawenc_class_init),
27217 (gst_alawenc_init), (gst_alawenc_chain):
27218 * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
27219 (gst_mulawdec_base_init), (gst_mulawdec_class_init),
27220 (gst_mulawdec_init), (gst_mulawdec_chain):
27221 * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
27222 (gst_mulawenc_base_init), (gst_mulawenc_class_init),
27223 (gst_mulawenc_init), (gst_mulawenc_chain):
27224 Fix capsnego in all four, remove the unused property functions and
27225 simplify the chain functions slightly. I guess we could use macros
27226 or something similar for those, since the code is so similar, but
27227 I'm currently too lazy...
27229 2004-03-24 David Schleef <ds@schleef.org>
27231 * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
27232 (gst_osselement_close_audio), (gst_osselement_probe_caps),
27233 (gst_osselement_get_format_structure),
27234 (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
27235 (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
27236 (gst_osselement_rate_int_compare): Add code to handle rate probing
27238 * sys/oss/gstosselement.h: same
27239 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
27240 Use rate probing provided by osselement.
27241 * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
27243 2004-03-24 Ronald Bultje <rbultje@ronald.bitfreak.net>
27245 * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
27246 (gst_xvidenc_get_property):
27249 2004-03-24 David Schleef <ds@schleef.org>
27251 * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
27252 (gst_speexdec_init):
27253 * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
27254 (gst_speexenc_init): Create the pad template correctly (from
27255 the static pad template, not a NULL pointer.)
27257 2004-03-25 Benjamin Otte <otte@gnome.org>
27259 * gst/debug/Makefile.am:
27260 * gst/debug/breakmydata.c:
27261 add element that quasi-randomly changes bytes in the stream.
27262 Intended use is robustness checking of demuxers and decoders in
27265 2004-03-24 Benjamin Otte <otte@gnome.org>
27267 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
27268 (gst_alsa_probe_hw_params):
27269 * ext/alsa/gstalsa.h:
27270 debugging output fixes
27272 2004-03-24 Benjamin Otte <otte@gnome.org>
27274 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
27275 don't g_return_if_fail if element is PLAYING, fail silently as every
27277 * gst/effectv/gstquark.c: (gst_quarktv_chain):
27278 only fix needed for cast lvalue issues in gst-plugins
27279 * gst/volenv/gstvolenv.c: (gst_volenv_init):
27282 2004-03-24 Benjamin Otte <otte@gnome.org>
27284 * gst/level/gstlevel.c: (gst_level_init):
27285 add proxying getcaps function, so level doesn't advertise impossible
27288 2004-03-24 David Schleef <ds@schleef.org>
27290 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
27291 (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
27292 (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
27293 (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
27294 (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
27295 (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
27296 (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
27297 (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
27298 (qtdemux_parse_tree), (qtdemux_parse_trak): Fix debugging
27299 messages. Divide the chunk size by the compression ratio
27300 (needed for MACE audio)
27302 2004-03-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
27304 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
27305 Fix buffer overflow read error.
27307 2004-03-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
27309 * ext/alsa/gstalsa.h:
27310 Remove unused entry.
27311 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
27313 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
27314 (gst_videodrop_link), (gst_videodrop_chain):
27315 Fix, sort of. Was horribly broken with new capsnego. Bah...
27317 2004-03-23 Jeremy Simon <jesimon@libertysurf.fr>
27319 * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
27321 Add a monkeysaudio typefind function
27323 2004-03-23 Johan Dahlin <johan@gnome.org>
27325 * gst-libs/gst/play/play.c (gst_play_audio_fixate)
27326 (gst_play_video_fixate): Check so the structure has the field
27327 before trying to fixate them, this makes it possible to have
27328 fakesinks for video and audio output without printing errors on
27329 the output console.
27331 2004-03-22 David Schleef <ds@schleef.org>
27333 * sys/oss/Makefile.am:
27334 * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
27335 (check_rate), (add_rate): Rate probing test app.
27337 2004-03-21 Benjamin Otte <otte@gnome.org>
27339 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
27340 (_fixate_caps_to_int), (gst_audio_convert_fixate):
27341 add a fixation function that pretty much does the right thing (fixes
27344 2004-03-20 David I. Lehn <dlehn@users.sourceforge.net>
27346 * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
27348 2004-03-20 Tim-Phillip Müller <t.i.m@zen.co.uk>
27350 reviewed by: Benjamin Otte <otte@gnome.org>
27352 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
27353 terminate gst_event_new_discontinuous correctly (fixes parts of
27356 2004-03-19 David Schleef <ds@schleef.org>
27358 * gst-libs/gst/Makefile.am: Enable xoverlay unconditionally,
27359 since it doesn't depend on X, and it's part of our ABI.
27361 2004-03-19 Iain <iain@prettypeople.org>
27363 * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
27364 is_int in the structure, not the local variable.
27366 2004-03-19 David Schleef <ds@schleef.org>
27368 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
27369 (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
27370 (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
27371 Improvements in caps negotiation.
27373 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
27377 adding Afrikaans (Petri Jooste)
27379 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
27381 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27382 (gst_ffmpegcolorspace_chain):
27383 throw error instead of g_critical (#137588)
27385 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
27389 dist common and m4 correctly
27392 2004-03-17 David Schleef <ds@schleef.org>
27394 * pkgconfig/gstreamer-media-info.pc.in: Add Version.
27397 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
27401 adding Swedish translation (Christian Rose)
27403 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
27405 * Makefile.am: use release.mak
27407 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27409 * common/ChangeLog:
27410 * common/gst-autogen.sh:
27411 add some explanation about the version detection
27415 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27417 * configure.ac: bump nano to 1
27419 === release 0.8.0 ===
27421 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27423 * configure.ac: release 0.8.0, "Pharmaceutical Itch"
27425 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27428 update libtool version
27429 * gst-libs/gst/media-info/Makefile.am:
27430 actually use libtool version
27432 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27434 * configure.ac: fix speex detection to work with 1.0 but not 1.1
27436 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27439 * gst-plugins.spec.in:
27440 * pkgconfig/Makefile.am:
27441 * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
27442 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
27443 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
27444 * pkgconfig/gstreamer-libs.pc.in:
27445 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
27446 * pkgconfig/gstreamer-play-uninstalled.pc.in:
27447 * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
27448 * pkgconfig/gstreamer-plugins.pc.in:
27449 remove @VERSION@ from some of the pc files since core and plugins
27451 created gstreamer-plugins.pc as it's a better name, but keeping
27452 -libs around for now to get fixes upstream done first.
27454 2004-03-15 Julien MOUTTE <julien@moutte.net>
27456 * gst-libs/gst/play/play.c: (gst_play_get_framerate),
27457 (gst_play_get_sink_element): First draft of gst_play_get_framerate.
27458 * gst-libs/gst/play/play.h:
27460 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27462 * *.c, *.cc: don't mix tabs and spaces
27464 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27466 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
27467 use the new ffmpegcolorspace
27468 * gst-plugins.spec.in:
27469 package new colorspace and media-info
27471 * pkgconfig/Makefile.am:
27472 fix some more disting issues
27473 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
27474 * pkgconfig/gstreamer-media-info.pc.in:
27475 generate media-info pc files
27477 2004-03-15 Johan Dahlin <johan@gnome.org>
27479 * *.h: Revert indenting
27481 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27484 adding ffmpegcolorspace element
27485 * gst/ffmpegcolorspace/Makefile.am:
27486 * gst/ffmpegcolorspace/avcodec.h:
27487 * gst/ffmpegcolorspace/common.h:
27488 * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
27489 * gst/ffmpegcolorspace/dsputil.h:
27490 * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
27491 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27492 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
27493 (gst_ffmpeg_caps_to_pix_fmt):
27494 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
27495 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27496 (gst_ffmpegcolorspace_caps_remove_format_info),
27497 (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
27498 (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
27499 (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
27500 (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
27501 (gst_ffmpegcolorspace_set_property),
27502 (gst_ffmpegcolorspace_get_property),
27503 (gst_ffmpegcolorspace_register):
27504 * gst/ffmpegcolorspace/imgconvert.c:
27505 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
27506 (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
27507 (avpicture_get_size), (avcodec_get_pix_fmt_loss),
27508 (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
27509 (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
27510 (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
27511 (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
27512 (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
27513 (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
27514 (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
27515 (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
27516 (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
27517 (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
27518 (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
27519 (img_get_alpha_info), (deinterlace_line),
27520 (deinterlace_line_inplace), (deinterlace_bottom_field),
27521 (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
27522 * gst/ffmpegcolorspace/imgconvert_template.h:
27523 * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
27524 * gst/ffmpegcolorspace/mmx.h:
27525 * gst/ffmpegcolorspace/utils.c: (avcodec_init):
27526 adding ffmpegcolorspace element supplied by Ronald after cleaning
27527 up and pulling in the right bits of upstream source.
27528 I'm sure a better C/compiler wizard could do some cleaning up (for
27529 example use GLIB's malloc stuff), but as a first pass this
27532 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27534 * ext/alsa/gstalsa.h:
27535 I assume Ronald forgot to commit the change to have cardname
27536 as a struct member. Expect some public spanking at the next
27539 2004-03-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
27541 * ext/alsa/gstalsa.c: (gst_alsa_get_property),
27542 (gst_alsa_open_audio), (gst_alsa_close_audio):
27543 * ext/alsa/gstalsa.c:
27544 Don't open the device if we're a mixer (= padless).
27545 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
27546 (gst_alsa_mixer_init), (gst_alsa_mixer_open),
27547 (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
27548 Open mixer during state change rather than during object
27549 initialization. Also, get a device name. Currently in a somewhat
27550 hackish fashion, but I didn't really find something better.
27552 2004-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
27554 * *.c, *.h: run gst-indent
27556 2004-03-14 Benjamin Otte <otte@gnome.org>
27558 * gst/modplug/gstmodplug.cc:
27559 * gst/modplug/gstmodplug.h:
27560 set correct timestamps on outgoing buffers
27562 2004-03-14 Benjamin Otte <otte@gnome.org>
27564 * gst/modplug/gstmodplug.cc:
27565 handle events - don't do crap when a discont arrives that's not
27567 This allows correct loading and playback of mods in Rhythmbox
27569 2004-03-14 Benjamin Otte <otte@gnome.org>
27572 * gst-libs/gst/gconf/Makefile.am:
27573 * pkgconfig/Makefile.am:
27574 move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
27575 they get rebuilt properly
27577 when checking for vorbis, try pkgconfig first.
27578 * gst/modplug/gstmodplug.cc:
27579 add fixate function
27581 2004-03-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
27583 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
27584 Fix for obvious mistake, where we first shift the offset and then
27585 read a samplesize element assuming the old offset. Note that this
27586 part still has something weird, i.e. my movies containing those
27587 don't actually play well, but at least there's something that looks
27590 2004-03-14 Jan Schmidt <thaytan@mad.scientist.com>
27591 * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
27593 Add a typefind function for speex format
27595 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
27597 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
27598 (gst_asf_demux_setup_pad):
27599 Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
27600 instead of 0. Reason is simple: some elements have a fps range
27601 of 1-max instead of 0-max. So now ASF video actually works.
27603 2004-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
27607 adding serbian as a language
27609 2004-03-13 Benjamin Otte <otte@gnome.org>
27611 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
27612 return taglist correctly from _get function, don't gst_pad_push it.
27615 2004-03-13 Jan Schmidt <thaytan@mad.scientist.com>
27616 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
27618 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
27620 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
27621 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
27622 (gst_alsa_mixer_track_new):
27623 * ext/alsa/gstalsamixertrack.h:
27624 Fix ancient leftovers... MixerTrack is a GObject.
27626 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
27628 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
27629 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
27630 Don't block during probing...
27632 2004-03-12 Ronald Bultje <rbultje@ronald.bitfreak.net>
27634 * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
27635 (gst_alsa_get_property), (gst_alsa_probe_get_properties),
27636 (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
27637 (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
27638 (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
27639 (gst_alsa_open_audio), (gst_alsa_close_audio):
27640 * ext/alsa/gstalsa.h:
27641 Add propertyprobe interface implementation, add some device-name
27642 property, all this so that it looks good in gnome-volume-control.
27644 2004-03-12 David Schleef <ds@schleef.org>
27646 * configure.ac: the Hermes library controls hermescolorspace, not
27648 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27649 (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
27651 * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
27652 * ext/sdl/sdlvideosink.h: ditto.
27653 * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
27655 2004-03-12 Benjamin Otte <otte@gnome.org>
27657 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
27658 (gst_x_overlay_got_xwindow_id):
27659 * gst-libs/gst/xoverlay/xoverlay.h:
27660 replace XID with unsigned long to get rid of the xlibs dependency in
27661 XOverlay (fixes #137004)
27663 2004-03-13 Jan Schmidt <thaytan@mad.scientist.com>
27664 * gst/effectv/gstaging.c: (gst_agingtv_base_init),
27665 (gst_agingtv_setup):
27666 * gst/effectv/gstdice.c: (gst_dicetv_get_type),
27667 (gst_dicetv_base_init), (gst_dicetv_class_init),
27668 (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
27669 * gst/effectv/gstedge.c: (gst_edgetv_get_type),
27670 (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
27671 (gst_edgetv_setup), (gst_edgetv_rgb32):
27672 * gst/effectv/gsteffectv.c:
27673 * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
27674 (gst_quarktv_set_property):
27675 * gst/effectv/gstrev.c: (gst_revtv_get_type),
27676 (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
27677 (gst_revtv_setup), (gst_revtv_rgb32):
27678 * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
27679 (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
27680 (gst_shagadelictv_init), (gst_shagadelictv_setup),
27681 (gst_shagadelictv_rgb32):
27682 * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
27683 (gst_vertigotv_base_init), (gst_vertigotv_class_init),
27684 (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
27685 * gst/effectv/gstwarp.c:
27686 Port everything that can be ported to videofilter and fix up the caps.
27687 Can someone with a big-endian machine please check these?
27689 2004-03-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
27691 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
27692 (gst_osssink_chain), (gst_osssink_change_state):
27693 Latest fixes for A/V sync, audio playback and such. This is about
27694 all... MPEG playback issues are mostly related to the async build-
27695 up of MPEG files, I cannot fix that. Use basicgthread to solve it.
27697 2004-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
27699 patch from: Stephane Loeuillet
27702 use pkg-config for some libraries, falling back to the old .m4 way
27707 2004-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
27710 * tools/Makefile.am:
27711 * tools/Makefile.in:
27712 * tools/gst-launch-ext-m.m:
27713 * tools/gst-launch-ext.1.in:
27714 * tools/gst-visualise-m.m:
27715 * tools/gst-visualise.1:
27716 * tools/gst-visualise.1.in:
27717 reorganizing generation of script tools
27719 2004-03-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
27721 * ext/divx/gstdivxdec.c:
27722 Downgrade priority. We prefer ffdec_mpeg4.
27723 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
27724 (gst_faad_chain), (gst_faad_change_state):
27725 Fix capsnego. Doesn't work for some sounds because we don't have
27726 a 5:1 to stereo element.
27727 * ext/xvid/gstxvid.c: (plugin_init):
27729 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
27730 (gst_osssink_change_state):
27731 Add discont handling.
27733 2004-03-09 Colin Walters <walters@verbum.org>
27735 * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
27738 2004-03-09 Benjamin Otte <otte@gnome.org>
27740 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
27741 the signals take 2 arguments
27743 2004-03-09 David Schleef <ds@schleef.org>
27745 * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
27746 (gst_alsa_fixate): Add fixate function. (bug #136686)
27747 * ext/alsa/gstalsa.h:
27748 * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
27750 2004-03-09 Benjamin Otte <otte@gnome.org>
27752 * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
27753 (gst_mikmod_change_state):
27754 * ext/mikmod/gstmikmod.h:
27755 make mikmod's loop function not loop infinitely and call
27756 gst_element_yield anymore
27757 * gst/modplug/gstmodplug.cc:
27758 fix pad negotiation (fixes #136590)
27760 2004-03-09 David Schleef <ds@schleef.org>
27762 * ext/lcs/Makefile.am: Fix so that the lcs colorspace plugin
27763 doesn't conflict with the internal colorspace plugin.
27764 * gst-libs/gst/audio/make_filter: Use `` instead of $() to
27765 satisfy the crappy-ass shell shipped by a certain vendor.
27766 * gst/videofilter/make_filter: same (bug #135299)
27768 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27770 * configure.ac: bump nano to 1
27772 === release 0.7.6 ===
27774 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27776 * configure.in: releasing 0.7.6, "There"
27778 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27780 * pkgconfig/gstreamer-play-uninstalled.pc.in:
27781 * pkgconfig/gstreamer-play.pc.in:
27782 synchronize the two
27784 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27786 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
27787 (cdparanoia_open), (cdparanoia_event):
27788 fix/add error handling
27790 add cdparanoia source
27791 * tools/Makefile.am:
27792 make scripts executable
27794 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27797 * ext/vorbis/Makefile.am:
27799 remove id3types, vorbisfile and xvideosink from the build (#133783)
27801 2004-03-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
27803 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
27804 Fix metadata read crash (#136537).
27806 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
27808 * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
27809 * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
27810 adding mime types, fixing the one-stop function
27812 2004-03-08 Christian Schaller <Uraeus@gnome.org>
27814 * ext/nas/nassink.c and /ext/nas/nassink.h:
27815 More NAS love from Arwed von Merkatz
27816 So lets all sing 'Can you feel the NAS tonight'
27818 2004-03-08 Christian Schaller <Uraeus@gnome.org>
27820 * tools/gst-launch-ext.in:
27821 Replace vorbisfile with oggdemux/vorbisdec/audioconvert
27823 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
27825 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27826 (gst_mpeg2dec_init):
27827 remove the user_data pad for now, because it is being used in
27828 fixating causing MPEG playback to fixate on 1000 Hz for playback.
27829 If someone knows how to fix this properly, please do.
27831 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
27833 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27834 (gst_osssink_get_time):
27835 add a warning, IMO this won't get triggered anymore, remove later
27837 2004-03-07 David Schleef <ds@schleef.org>
27839 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Added Cinepak
27840 format (bug #136470)
27842 2004-03-07 Thomas Vander Stichele <thomas at apestaart dot org>
27844 * gst-libs/Makefile.am:
27845 * gst-libs/gst/media-info/Makefile.am:
27846 * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
27847 (error_callback), (gst_media_info_error_create),
27848 (gst_media_info_error_element), (gmip_init), (gmip_reset),
27849 (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
27850 * gst-libs/gst/media-info/media-info-priv.h:
27851 * gst-libs/gst/media-info/media-info-test.c: (main):
27852 * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
27853 (gst_media_info_class_init), (gst_media_info_instance_init),
27854 (gst_media_info_set_source), (gst_media_info_read_with_idler),
27855 (gst_media_info_read_idler), (gst_media_info_read):
27856 * gst-libs/gst/media-info/media-info.h:
27857 fixed, should work now
27859 2004-03-07 Christian Schaller <Uraeus@gnome.org>
27861 * ext/nas/nassink.c:
27862 A bunch of NAS fixes from Arwed von Merkatz
27864 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27866 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
27867 (qtdemux_parse_trak):
27868 Fix crash (j might be greater than n_samples, in which case we're
27869 writing outside the allocated space for the array) and memleak.
27871 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27873 * sys/oss/gstosssink.c: (gst_osssink_chain):
27874 And another caller that couldn't handle delay < 0 (unsigned
27875 integer overflow). Video now continues playing on an audio
27876 buffer underrun, and the clock continues working. Audio still
27879 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27881 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27882 (gst_osssink_get_time):
27883 get_delay() may return values lower than 0. In those cases, we
27884 should not actually cast to *unsigned* int64, that will break
27885 stuff horribly. In my case, it screwed up A/V sync in movies
27886 in totem rather badly.
27888 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27890 * ext/faac/gstfaac.c: (gst_faac_chain):
27891 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
27892 * ext/libpng/gstpngenc.c: (user_write_data):
27893 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
27894 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
27895 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
27896 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
27897 Fix several misuse of gst_buffer_merge (it doesn't take ownership
27898 of any buffer), should fix some leaks. I hope I didn't unref buffers
27899 that shouldn't be...
27901 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27903 * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
27904 (deep_notify_callback), (tag_flag_score), (found_tag_callback),
27905 (error_callback), (gmi_reset), (gmi_seek_to_track),
27906 (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
27907 (gmip_find_type_post), (gmip_find_stream_post),
27908 (gmip_find_track_streaminfo_post):
27909 * gst-libs/gst/media-info/media-info-priv.h:
27910 * gst-libs/gst/media-info/media-info-test.c: (print_tag),
27911 (info_print), (main):
27912 * gst-libs/gst/media-info/media-info.c:
27913 (gst_media_info_error_create), (gst_media_info_error_element),
27914 (gst_media_info_instance_init), (gst_media_info_get_property),
27915 (gst_media_info_new), (gst_media_info_set_source),
27916 (gst_media_info_read_idler), (gst_media_info_read):
27917 * gst-libs/gst/media-info/media-info.h:
27918 first pass at making this work again. This seems to work on
27919 tagged ogg/vorbis and mp3 files.
27921 2004-03-06 Benjamin Otte <otte@gnome.org>
27923 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
27924 fix huge leak: gst_buffer_merge doesn't unref the first argument
27927 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27929 * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
27930 report layer/mode/emphasis
27932 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27934 * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
27936 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27938 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
27941 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27943 * ext/vorbis/vorbis.c: (plugin_init):
27944 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
27945 (gst_vorbis_dec_init), (vorbis_dec_event):
27947 make vorbisdec handle _BYTE and _TIME queries
27949 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27951 * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
27952 from the xing header
27954 2004-03-06 Benjamin Otte <otte@gnome.org>
27956 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
27957 (gst_audio_convert_link), (gst_audio_convert_change_state),
27958 (gst_audio_convert_buffer_from_default_format):
27959 do conversions from/to float correctly, fix some caps nego errors,
27960 export correct supported caps in template and getcaps, use correct
27961 caps in try_set_caps functions
27963 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27965 For some reason, I only committed a ChangeLog entry yesterday and
27966 not the corresponding code...
27967 * ext/mad/gstmad.c: Fix detection of Xing headers
27968 * gst/tags/gstid3tag.c: Changes to support TLEN tags
27970 2004-03-06 Benjamin Otte <otte@gnome.org>
27972 * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
27973 (gst_ogg_demux_src_query):
27974 make sure to handle the case where there's no current chain
27977 2004-03-05 David Schleef <ds@schleef.org>
27979 * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
27980 Add fixate function. (bug #131128)
27981 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
27982 (gst_sdlvideosink_fixate): Add fixate function.
27983 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
27984 Fix attempt to print a non-pointer using GST_PTR_FORMAT.
27985 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
27986 Fix missing break that was causing ulaw to be interpreted as
27989 2004-03-05 David Schleef <ds@schleef.org>
27991 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
27992 Fix code that ignores return value of gst_buffer_merge().
27994 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
27995 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
27996 * testsuite/gst-lint: Check for above.
27998 2004-03-05 David Schleef <ds@schleef.org>
28000 * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Check for unfixed
28001 caps and throw an element error. (bug #136334)
28003 2004-03-05 David Schleef <ds@schleef.org>
28005 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
28006 (gst_faad_chain): Fix negotiation.
28007 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
28008 key and button events.
28009 * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
28011 * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
28013 * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
28014 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
28015 (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
28016 function to encourage better negotiation, particularly between
28017 audioconvert and osssink.
28018 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
28019 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak): Make some debugging
28021 * gst/typefind/gsttypefindfunctions.c: Fix mistake in flash
28023 * gst/vbidec/vbiscreen.c: Add glib header
28024 * pkgconfig/gstreamer-play.pc.in: Depends on gst-interfaces.
28026 2004-03-06 Christophe Fergeau <teuf@users.sourceforge.net>
28028 * ext/mad/gstmad.c: Fix detection of Xing headers
28029 * gst/tags/gstid3tag.c: Changes to support TLEN tags
28031 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
28033 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
28034 (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
28037 2004-03-06 Christophe Fergeau <teuf@gnome.org>
28039 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28040 * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
28041 (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
28042 files, and report the parsed length as a GST_TAG_DURATION tag.
28043 * gst/tags/gstid3tag.c: support TLEN (duration) tag
28045 2004-03-05 Benjamin Otte <otte@gnome.org>
28047 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
28048 convert channels correctly. convert correctly to unsigned.
28050 2004-03-05 Julien MOUTTE <julien@moutte.net>
28052 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
28053 we have a window before clearing it.
28055 2004-03-05 Julien MOUTTE <julien@moutte.net>
28057 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
28058 have a window before clearing it.
28060 2004-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
28062 * gconf/gstreamer.schemas.in:
28063 * gst-libs/gst/gconf/Makefile.am:
28064 version installation path the same way as for 0.6
28065 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
28066 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28067 * pkgconfig/gstreamer-play-uninstalled.pc.in:
28068 remove comment that was fixed
28070 2004-03-05 David Schleef <ds@schleef.org>
28072 * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
28073 (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
28074 (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
28075 (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
28076 Add prototype code for handling seeking and querying.
28078 2004-03-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
28080 * examples/gstplay/player.c: (main):
28081 Initialize variables to NULL. Prevents a segfault because the
28082 (uninitialized) variable is not NULL, resulting in a crash on
28083 trying to reach error->message.
28085 2004-03-05 Benjamin Otte <otte@gnome.org>
28087 * gst/audioconvert/gstaudioconvert.c:
28088 (gst_audio_convert_buffer_to_default_format):
28089 make float=>int conversion work correctly even in cornercases.
28091 2004-03-04 David I. Lehn <dlehn@users.sourceforge.net>
28093 * debian/README.Debian:
28094 * debian/build-deps:
28095 * debian/changelog:
28097 * debian/control.in:
28098 * debian/copyright:
28099 * debian/gstreamer-a52dec.files:
28100 * debian/gstreamer-aa.files:
28101 * debian/gstreamer-alsa.files:
28102 * debian/gstreamer-alsa.manpages:
28103 * debian/gstreamer-arts.files:
28104 * debian/gstreamer-artsd.files:
28105 * debian/gstreamer-audiofile.files:
28106 * debian/gstreamer-avifile.files:
28107 * debian/gstreamer-cdparanoia.files:
28108 * debian/gstreamer-colorspace.files:
28109 * debian/gstreamer-doc.files:
28110 * debian/gstreamer-dv.files:
28111 * debian/gstreamer-dvd.files:
28112 * debian/gstreamer-esd.files:
28113 * debian/gstreamer-festival.files:
28114 * debian/gstreamer-flac.files:
28115 * debian/gstreamer-gconf.conffiles:
28116 * debian/gstreamer-gconf.files:
28117 * debian/gstreamer-gconf.postinst:
28118 * debian/gstreamer-gnomevfs.files:
28119 * debian/gstreamer-gsm.files:
28120 * debian/gstreamer-http.files:
28121 * debian/gstreamer-jack.files:
28122 * debian/gstreamer-jpeg.files:
28123 * debian/gstreamer-mad.files:
28124 * debian/gstreamer-mikmod.files:
28125 * debian/gstreamer-misc.files:
28126 * debian/gstreamer-mpeg2dec.files:
28127 * debian/gstreamer-oss.files:
28128 * debian/gstreamer-plugin-apps.files:
28129 * debian/gstreamer-plugin-apps.manpages:
28130 * debian/gstreamer-plugin-libs-dev.files:
28131 * debian/gstreamer-plugin-libs.files:
28132 * debian/gstreamer-plugin-template.postinst:
28133 * debian/gstreamer-plugin-template.postrm:
28134 * debian/gstreamer-sdl.files:
28135 * debian/gstreamer-sid.files:
28136 * debian/gstreamer-vorbis.files:
28137 * debian/gstreamer-x.files:
28138 * debian/mk.control:
28140 Debian package info not maintained here.
28142 2004-03-04 Thomas Vander Stichele <thomas at apestaart dot org>
28144 * ext/aalib/gstaasink.c: (gst_aasink_class_init):
28145 * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
28146 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
28147 * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
28148 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
28149 * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
28150 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
28151 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
28152 * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
28153 * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
28154 * gst-libs/gst/colorbalance/colorbalance.c:
28155 (gst_color_balance_class_init):
28156 * gst-libs/gst/colorbalance/colorbalancechannel.c:
28157 (gst_color_balance_channel_class_init):
28158 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
28159 * gst-libs/gst/play/play.c: (gst_play_class_init):
28160 * gst-libs/gst/propertyprobe/propertyprobe.c:
28161 (gst_property_probe_iface_init):
28162 * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
28163 * gst-libs/gst/tuner/tunerchannel.c:
28164 (gst_tuner_channel_class_init):
28165 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
28166 * gst/cutter/gstcutter.c: (gst_cutter_class_init):
28167 * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
28168 * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
28169 * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
28170 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
28171 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
28172 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
28173 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
28174 fix signals to use - instead of _
28175 * ext/libcaca/gstcacasink.h:
28176 * ext/sdl/sdlvideosink.h:
28179 2004-03-04 David Schleef <ds@schleef.org>
28181 * testsuite/gst-lint: Add a check for bad signal names.
28183 2004-03-04 Stefan Kost <kost@imn.htwk-leipzig.de>
28185 reviewed by David Schleef
28187 * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
28188 modified the alpha channel and caused a warning. (bug #136192)
28190 2004-04-03 Christian Schaller <Uraeus@gnome.org>
28192 * gst-plugins.spec.in:
28193 Change names of plugins to actually be correct. Try to keep things
28194 alphabetical to avoid getting beat up by Thomas
28196 2004-03-03 Julien MOUTTE <julien@moutte.net>
28198 * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
28199 Using ximagesink as a default if no gconf key found. We should
28200 probably consider using alsasink instead of osssink for the audio
28203 2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
28206 fix --with-plugins, don't think it ever worked before
28207 * gst-plugins.spec.in:
28210 2004-03-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
28212 * ext/sdl/sdlvideosink.h:
28213 * sys/ximage/ximagesink.h:
28214 * sys/xvideo/xvideosink.h:
28215 * sys/xvimage/xvimagesink.h:
28216 Fix for move of gstvideosink.h -> videosink.h.
28218 2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
28220 * gst-libs/gst/xwindowlistener/Makefile.am:
28221 this is a plugin library, not a library
28223 2004-03-01 David Schleef <ds@schleef.org>
28225 * AUTHORS: Added some names. Add yourself if you're still
28228 2004-03-01 David Schleef <ds@schleef.org>
28232 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28234 * gst-plugins.spec.in: clean up spec file
28236 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28238 * gst-libs/gst/video/Makefile.am:
28239 * gst-libs/gst/video/gstvideosink.c:
28240 * gst-libs/gst/video/gstvideosink.h:
28241 rename gstvideosink.h to videosink.h to match other headers
28242 * gst/mixmatrix/Makefile.am:
28243 fix plugin filename
28244 * gst/tags/Makefile.am: fix plugin filename
28246 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28248 * gst/tags/Makefile.am: fix plugin filename
28250 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28252 * examples/gstplay/player.c: (got_time_tick), (main):
28254 display time_tick more readably
28255 * gst/mixmatrix/Makefile.am:
28256 fix plugin file name
28258 2004-02-29 Christophe Fergeau <teuf@gnome.org>
28260 * sys/oss/gstosselement.c: (gst_osselement_probe),
28261 (device_combination_append), (gst_osselement_class_probe_devices):
28262 * sys/oss/gstosselement.h:
28263 Reworked enumeration of oss dsps and mixers so that gst-mixer works
28264 on my system using alsa oss emulation, fixes bug #135597
28266 2004-02-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
28268 * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
28269 (gst_videodrop_chain), (gst_videodrop_change_state):
28270 * gst/videodrop/gstvideodrop.h:
28271 Work based on timestamp of input data, not based on the expected
28272 framerate from the input. The consequence is that this element now
28273 not only scales framerates, but also functions as a framerate
28274 corrector or framerate stabilizer/constantizer.
28276 2004-02-27 David Schleef <ds@schleef.org>
28278 patches from jmmv@menta.net (Julio M. Merino Vidal)
28280 * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
28281 GST_ELEMENT_ERROR call (bug #135634)
28282 * gst/interleave/interleave.c: (interleave_buffered_loop),
28283 (interleave_bytestream_loop): Don't use alloca() (bug #135640)
28284 * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
28285 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
28286 (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
28287 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
28288 (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
28289 (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
28290 Fix GST_ELEMENT_ERROR call.
28291 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
28292 GST_ELEMENT_ERROR call.
28294 2004-02-27 Benjamin Otte <otte@gnome.org>
28296 * gst-libs/gst/audio/audio.h:
28297 add macro to make sure header isn't included twice
28298 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
28299 don't use gst_buffer_free
28300 * gst/playondemand/filter.func:
28301 don't use gst_data_free. Free data only once.
28303 2004-02-26 David Schleef <ds@schleef.org>
28305 * gst-libs/gst/colorbalance/Makefile.am:
28306 * gst-libs/gst/mixer/Makefile.am:
28307 * gst-libs/gst/tuner/Makefile.am:
28308 * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
28309 should not be disted, -marshal.h files should not be installed,
28310 and -enum.h files _should_ be installed. Fix to make this the
28313 === release 0.7.5 ===
28315 2004-02-26 Thomas Vander Stichele <thomas at apestaart dot org>
28317 * configure.ac: release 0.7.5, "Under The Sea"
28319 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
28321 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
28322 (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
28323 * gst/videoscale/gstvideoscale.c:
28324 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
28325 assorted debug/warning fixes
28327 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
28329 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
28330 (gst_videoscale_init), (gst_videoscale_chain),
28331 (gst_videoscale_set_property), (plugin_init):
28332 * gst/videoscale/gstvideoscale.h:
28333 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
28334 (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
28335 (gst_videoscale_planar400), (gst_videoscale_packed422),
28336 (gst_videoscale_packed422rev), (gst_videoscale_32bit),
28337 (gst_videoscale_24bit), (gst_videoscale_16bit),
28338 (gst_videoscale_bilinear), (gst_videoscale_bicubic),
28339 (gst_videoscale_scale_plane_slow),
28340 (gst_videoscale_scale_point_sample),
28341 (gst_videoscale_scale_nearest),
28342 (gst_videoscale_scale_nearest_str2),
28343 (gst_videoscale_scale_nearest_str4),
28344 (gst_videoscale_scale_nearest_32bit),
28345 (gst_videoscale_scale_nearest_24bit),
28346 (gst_videoscale_scale_nearest_16bit):
28347 add debugging category and use it properly
28348 fix use of GST_PTR_FORMAT
28350 2004-02-25 Andy Wingo <wingo@pobox.com>
28352 * gst/interleave/interleave.c (interleave_buffered_loop): Always
28353 push only when channel->buffer is NULL. Prevents segfaults doing
28354 the state change after a nonlocal exit, like a scheme exception.
28356 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
28357 Handle the case where the intersected caps is empty.
28359 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
28361 * gst/law/mulaw-decode.c: (mulawdec_link):
28362 * gst/law/mulaw.c: (plugin_init):
28363 fix mulawdec so it actually works again
28365 2004-02-24 Arwed v. Merkatz <v.merkatz@gmx.net>
28367 reviewed by: David Schleef <ds@schleef.org>
28369 * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
28370 (gst_gamma_init), (gst_gamma_set_property),
28371 (gst_gamma_get_property), (gst_gamma_calculate_tables),
28372 (gst_gamma_rgb24), (gst_gamma_rgb32): Adds gamma correction
28373 for RGB, with separate r g and b correction factors. (#131167)
28375 2004-02-24 Thomas Vander Stichele <thomas at apestaart dot org>
28377 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
28378 only signal tags for bitrate if they're > 0 (#134894)
28380 2004-02-24 David Schleef <ds@schleef.org>
28382 * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
28383 (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
28384 (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
28385 (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
28386 (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
28387 (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
28388 (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
28389 (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
28390 Cleanups. Convert g_prints to GST_LOGs. Add qtdemux debug
28391 category. Attempt to fix timestamp calculation.
28393 2004-02-24 Johan Dahlin <johan@gnome.org>
28395 * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
28397 2004-02-23 Thomas Vander Stichele <thomas at apestaart dot org>
28400 * gconf/Makefile.am:
28401 * gconf/gstreamer.schemas:
28402 * gst-libs/gst/gconf/Makefile.am:
28403 * gst-libs/gst/gconf/gconf.c:
28404 version gconf schemas and install locations
28406 2004-02-23 Benjamin Otte <otte@gnome.org>
28408 * ext/xine/xineinput.c: (gst_xine_input_dispose):
28409 (gst_xine_input_subclass_init):
28410 call parent dispose.
28411 change pad template for CD reader correctly
28412 * ext/xine/Makefile.am:
28413 * ext/xine/gstxine.h:
28414 * ext/xine/xine.c: (plugin_init):
28415 * ext/xine/xineaudiosink.c:
28416 wrap audio sinks, too
28417 * gst-libs/gst/resample/private.h:
28418 * gst-libs/gst/resample/resample.c: (gst_resample_init),
28419 (gst_resample_reinit), (gst_resample_scale),
28420 (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
28421 (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
28422 (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
28423 (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
28424 (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
28425 * gst-libs/gst/resample/resample.h:
28426 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
28427 (gst_audioscale_class_init), (gst_audioscale_link),
28428 (gst_audioscale_get_buffer), (gst_audioscale_init),
28429 (gst_audioscale_chain), (gst_audioscale_set_property),
28430 (gst_audioscale_get_property):
28431 * gst/audioscale/gstaudioscale.h:
28432 s/resample_*/gst_resample_*/i to not clobber namespaces
28434 2004-02-23 Julien MOUTTE <julien@moutte.net>
28436 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
28437 (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
28438 (gst_riff_create_video_template_caps),
28439 (gst_riff_create_audio_template_caps),
28440 (gst_riff_create_iavs_template_caps):
28441 * gst-libs/gst/riff/riff-media.h:
28442 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
28443 (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
28444 (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
28445 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
28446 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
28447 (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
28448 (gst_matroska_demux_plugin_init): First batch implementing audio and
28449 video codec tags in demuxers.
28451 2004-02-22 Benjamin Otte <otte@gnome.org>
28453 * ext/xine/Makefile.am:
28454 * ext/xine/gstxine.h:
28455 * ext/xine/xine.c: (plugin_init):
28456 * ext/xine/xineinput.c:
28457 add input plugin wrapper. Playback from files, http, mms and cdda
28459 * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
28460 remove leftover G_GNUC_UNUSED
28461 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
28462 (gst_asf_demux_identify_guid):
28463 improve debugging output
28465 2004-02-22 Benjamin Otte <otte@gnome.org>
28467 reported by: Padraig O'Briain <padraig.obriain@sun.com>
28470 replace test -e with test -x for mkinstalldirs to be more portable.
28473 2004-02-22 Benjamin Otte <otte@gnome.org>
28475 reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
28477 * gst/audioconvert/gstaudioconvert.c: (plugin_init):
28478 set rank to PRIMARY
28479 * gst/volume/gstvolume.c: (plugin_init):
28483 2004-02-22 Julio M. Merino Vidal <jmmv@menta.net>
28485 reviewed by Benjamin Otte <otte@gnome.org>
28487 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
28488 escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
28490 2004-02-22 Benjamin Otte <otte@gnome.org>
28493 export [_]*{gst,Gst,GST}.* symbols from plugins
28495 2004-02-22 Christophe Fergeau <teuf@gnome.org>
28497 reviewed by: Benjamin Otte <otte@gnome.org>
28499 * ext/lame/gstlame.c: (add_one_tag):
28500 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28501 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
28502 (gst_vorbisenc_metadata_set1):
28503 * gst/tags/gstid3tag.c:
28504 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
28505 apply fixes from bugs #135042 (lame can't write tags) and #133817
28506 (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
28508 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
28510 * configure.ac: Export only gst_plugin_desc from plugins.
28511 Note that this change only makes any effect with Linux using libtool
28512 1.5.2 or higher. Otherwise it is silently ignored, but it would build
28513 fine. And don't try to have several versions of libtool in different
28516 2004-02-20 Andy Wingo <wingo@pobox.com>
28518 * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
28519 interleave respectively.
28521 * gst/interleave/deinterleave.c: New plugin: deinterleave
28522 (replaces on oneton).
28523 * gst/interleave/interleave.c: New plugin: interleave.
28524 * gst/interleave/plugin.h: Support file.
28525 * gst/interleave/plugin.c: Support file.
28527 * configure.ac: Remove intfloat and oneton, add interleave.
28529 * ext/sndfile/gstsf.c: Handle events better.
28531 * gst/audioconvert/gstaudioconvert.c: Change to support int2float
28532 and float2int operation. int2float has scheduling problems as
28533 noted in in2float_chain.
28535 2004-02-20 Benjamin Otte <otte@gnome.org>
28537 * ext/xine/Makefile.am:
28538 * ext/xine/gstxine.h:
28540 * ext/xine/xineaudiodec.c:
28541 * ext/xine/xinecaps.c:
28542 add first version of xine plugin wrapper. Currently only wraps the
28543 QDM2 win32 DLL, and even that only in proof-of-concept quality.
28546 add xine plugin wrapper, disabled by default. Use --enable-xine to
28547 build. Note that it'll segfault on gst-register if you don't remove
28548 the goom and tvtime post plugins from xine.
28549 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
28550 (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
28551 add extradata parsing for QDM2.
28552 change around debugging prints.
28554 2004-02-19 Benjamin Otte <otte@gnome.org>
28556 * ext/lame/gstlame.c: (gst_lame_chain):
28557 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
28558 use gst_tag_list_insert when you want to insert tags
28560 2004-02-18 David Schleef <ds@schleef.org>
28562 * configure.ac: Move massink to gst-rotten
28564 * ext/mas/Makefile.am:
28565 * ext/mas/massink.c:
28566 * ext/mas/massink.h:
28568 2004-02-18 David Schleef <ds@schleef.org>
28570 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
28571 typefinding, since it seems to be worse than nothing.
28572 * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Add ftyp
28573 atom to recognize .mp4 and .m4a files as video/quicktime.
28575 2004-02-18 David Schleef <ds@schleef.org>
28577 * gst/sine/demo-dparams.c: (quit_live),
28578 (dynparm_log_value_changed), (dynparm_value_changed), (main):
28579 Use double dparams, not float.
28580 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28581 (gst_sinesrc_init): Change sync default to FALSE, since multiple
28582 sync'd elements don't really work correctly.
28583 * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
28584 (volume_update_volume), (volume_get_property): Change dparam
28587 2004-02-18 Julien MOUTTE <julien@moutte.net>
28589 * sys/ximage/ximagesink.c:
28590 (gst_ximagesink_xwindow_update_geometry),
28591 (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
28592 (gst_ximagesink_change_state), (gst_ximagesink_expose),
28593 (gst_ximagesink_init): Rework the way software video scaling works. So
28594 now we check on each chain call if the video frames are feeling the
28595 window. If not we try to renegotiate caps. On failure we memorize that
28596 and we won't try again for that PLAYING sessions.
28597 * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
28599 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
28602 2004-02-18 Thomas Vander Stichele <thomas at apestaart dot org>
28604 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
28605 break up _link so we can give a better debug message for errors
28607 2004-02-18 Thomas Vander Stichele <thomas at apestaart dot org>
28609 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
28610 set up debug category
28612 2004-02-18 Julien MOUTTE <julien@moutte.net>
28614 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28615 (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
28616 the way renegotiation work. The event handling function is not taking
28617 care of external windows and renegotiate method check for pad flags
28618 NEGOTIATING. Should fix : #133209
28620 2004-02-17 Julien MOUTTE <julien@moutte.net>
28622 * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
28623 pad is negotiating before trying renegotiation.
28625 2004-02-17 Thomas Vander Stichele <thomas at apestaart dot org>
28627 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
28628 pass on all possible mime types as typefind hints
28630 2004-02-17 Julien MOUTTE <julien@moutte.net>
28632 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
28633 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
28634 possible SHM leak if we crash. All other apps using XShm are doing
28637 2004-02-17 Julien MOUTTE <julien@moutte.net>
28639 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28640 (gst_ximagesink_expose): Renegotiate size on expose.
28641 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
28644 2004-02-16 Benjamin Otte <in7y118@public.uni-hamburg.de>
28646 * testsuite/alsa/sinesrc.c:
28647 cosmetic fix to fix compile issue with gcc 2.95.4
28649 2004-02-16 Julien MOUTTE <julien@moutte.net>
28651 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
28652 (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
28653 failed opening the audio device.
28654 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
28655 (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
28656 (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
28657 (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
28658 (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
28659 (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
28660 (gst_ximagesink_change_state), (gst_ximagesink_chain),
28661 (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
28662 Removing some useless g_return_if_fail like wingo suggested.
28663 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
28664 (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
28665 (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
28666 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
28667 (gst_xvimagesink_update_colorbalance),
28668 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
28669 (gst_xvimagesink_xcontext_clear),
28670 (gst_xvimagesink_get_fourcc_from_caps),
28671 (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
28672 (gst_xvimagesink_set_xwindow_id),
28673 (gst_xvimagesink_colorbalance_list_channels),
28674 (gst_xvimagesink_colorbalance_set_value),
28675 (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
28676 PAUSED. Removing some useless g_return_if_fail like wingo suggested.
28678 2004-02-16 Thomas Vander Stichele <thomas at apestaart dot org>
28680 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
28681 throw error when not negotiated instead of asserting
28683 2004-02-15 Julien MOUTTE <julien@moutte.net>
28685 * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
28686 correct data refcounting.
28688 2004-02-15 Julien MOUTTE <julien@moutte.net>
28690 * gst/switch/gstswitch.c: (gst_switch_change_state),
28691 (gst_switch_class_init): Cleaning the sinkpads correctly on state
28692 change, mostly the EOS flag.
28694 2004-02-15 Julien MOUTTE <julien@moutte.net>
28696 * examples/gstplay/player.c: (got_eos), (main): Adding some
28697 output for debugging.
28698 * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
28699 timeouts if we go to any state different from PLAYING.
28700 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
28701 more EOS bugs in riff lib.
28703 2004-02-14 Julien MOUTTE <julien@moutte.net>
28705 * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
28706 visualization until i find a way to fix switch correctly.
28707 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
28709 * gst/switch/gstswitch.c: (gst_switch_release_pad),
28710 (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
28711 (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
28712 Reworked switch to get a more correct behaviour with events and refing
28713 of data stored in sinkpads.
28714 * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
28715 we don't pull from a pad in EOS.
28717 2004-02-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
28719 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28720 remove v1 tag even if we can't read it (makes sure we don't detect
28723 2004-02-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
28725 * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
28726 (gst_alsa_xrun_recovery):
28727 * ext/alsa/gstalsa.h:
28728 try xrun recovery when wait failed. Make xrun recovery function
28729 return TRUE/FALSE to indicate success. (might fix #134354)
28731 2004-02-13 David Schleef <ds@schleef.org>
28733 * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
28734 (dynparm_value_changed), (main): Convert from float to double.
28735 * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
28737 2004-02-13 David Schleef <ds@schleef.org>
28739 * gst/silence/gstsilence.c: (gst_silence_class_init),
28740 (gst_silence_set_clock), (gst_silence_get),
28741 (gst_silence_set_property), (gst_silence_get_property):
28742 * gst/silence/gstsilence.h: Add sync property.
28743 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28744 (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
28745 (gst_sinesrc_set_property), (gst_sinesrc_get_property):
28746 * gst/sine/gstsinesrc.h: Add sync property.
28748 2004-02-13 David Schleef <ds@schleef.org>
28750 * gst/intfloat/gstint2float.c: (conv_f32_s16),
28751 (gst_int2float_chain_gint16): Change stdint usage to glib types.
28753 2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
28757 * gst-libs/ext/Makefile.am:
28758 move ffmpeg plugin to gst-ffmpeg module
28760 2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
28762 * configure.ac: use GST_ARCH to detect architecture
28764 2004-02-12 Julien MOUTTE <julien@moutte.net>
28766 * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
28768 2004-02-12 Thomas Vander Stichele <thomas at apestaart dot org>
28770 * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
28771 classify LADSPA plugins based on number of src/sink pads
28772 (#133663, Stefan Kost)
28773 * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
28774 fix dparams registration
28775 (#133528, Stefan Kost)
28776 * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
28777 fix use of isprint and use g_ascii_isprint instead
28778 (#133316, Stefan Kost)
28780 2004-02-11 David Schleef <ds@schleef.org>
28782 Convert a few inner loops to use liboil. This is currently
28783 optional, and is only enabled if liboil is present (duh!).
28784 * configure.ac: Check for liboil-0.1
28785 * gst/intfloat/Makefile.am:
28786 * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
28787 (gst_int2float_chain_gint16):
28788 * gst/videofilter/Makefile.am:
28789 * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
28790 (tablelookup_u8), (gst_videobalance_planar411):
28791 * gst/videotestsrc/Makefile.am:
28792 * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
28793 * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
28794 (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
28795 (paint_hline_RGB565), (paint_hline_xRGB1555):
28797 2004-02-11 David Schleef <ds@schleef.org>
28799 * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
28800 (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
28801 (gst_colorspace_getcaps), (gst_colorspace_link),
28802 (gst_colorspace_base_init), (gst_colorspace_init),
28803 (gst_colorspace_chain), (gst_colorspace_change_state),
28804 (plugin_init): Merge Ronald's patch (bug #117897) and update
28805 for new caps and negotiation. Seems to work, although it
28806 shows off bugs in lcs.
28808 2004-02-11 David Schleef <ds@schleef.org>
28810 * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
28811 (bug #133886) Noticed by bugs@leroutier.net (Stephane LOEUILLET)
28813 2004-02-11 David Schleef <ds@schleef.org>
28815 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
28816 (gst_rfbsrc_change_state), (gst_rfbsrc_init),
28817 (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
28818 Add server and port properties
28820 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
28825 * m4/as-liblame.m4:
28826 * m4/as-slurp-ffmpeg.m4:
28827 * m4/check-libheader.m4:
28834 * m4/gst-ivorbis.m4:
28835 * m4/gst-matroska.m4:
28837 * m4/gst-shout2.m4:
28845 fix underquotedness of macros (#133800)
28846 * m4/as-avifile.m4:
28848 removed because no longer used
28850 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
28853 require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
28854 by autopoint (fixes #132996)
28856 2004-02-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
28858 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
28859 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
28860 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
28861 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
28864 2004-02-11 David Schleef <ds@schleef.org>
28866 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
28867 (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
28868 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
28869 (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
28870 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
28871 (gst_jpegenc_class_init), (gst_jpegenc_init),
28872 (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
28873 (gst_jpegenc_chain), (gst_jpegenc_set_property),
28874 (gst_jpegenc_get_property): Fix negotiation. Add some properties.
28875 * ext/jpeg/gstjpegenc.h: Fix negotiation.
28877 2004-02-10 Benjamin Otte <in7y118@public.uni-hamburg.de>
28879 * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
28880 (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
28881 * ext/mikmod/gstmikmod.h:
28882 fix caps negotiation in mikmod
28883 * ext/ogg/gstoggdemux.c: (gst_ogg_print):
28884 output debug information
28886 2004-02-08 Benjamin Otte <in7y118@public.uni-hamburg.de>
28888 * gst-libs/gst/colorbalance/Makefile.am:
28889 * gst-libs/gst/navigation/Makefile.am:
28890 * gst-libs/gst/xoverlay/Makefile.am:
28891 remove unused GST_OPT_CFLAGS from Makefiles
28892 include X_CFLAGS and X_LIBS in xoverlay. (#131948)
28894 2004-02-07 David Schleef <ds@schleef.org>
28896 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
28897 push events to pads that haven't been created (#133508)
28899 2004-02-07 Jan Schmidt <thaytan@mad.scientist.com>
28901 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
28902 (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
28903 (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
28904 (gst_dvdec_loop), (gst_dvdec_change_state):
28905 Second attempt at committing a working dvdec element.
28907 2004-02-06 David Schleef <ds@schleef.org>
28909 Build fixes for OS X: (see #129600)
28910 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
28911 (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
28912 (gst_riff_read_strf_iavs):
28913 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
28914 (gst_avi_demux_stream_odml):
28915 * gst/playondemand/Makefile.am:
28916 * gst/rtp/rtp-packet.c:
28918 2004-02-05 David Schleef <ds@schleef.org>
28920 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
28921 last change, because it Just Doesn't Compile.
28923 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
28925 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28926 skip undecodable id3v2 tag instead of keeping it
28928 2004-02-05 David Schleef <ds@schleef.org>
28930 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
28931 Unref leaked buffer. (Noticed by Ronald)
28933 2004-02-05 David I. Lehn <dlehn@users.sourceforge.net>
28935 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28936 Sync requires with other checks. >= vs =.
28938 2004-02-06 Jan Schmidt <thaytan@mad.scientist.com>
28940 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
28941 (gst_dvdec_video_link), (gst_dvdec_loop):
28942 * ext/dv/gstdvdec.h:
28943 rework the caps negotiation so that dvdec works again instead
28944 of just segfaulting.
28946 === release 0.7.4 ===
28948 2004-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
28950 * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
28951 * configure.ac: changed for release
28953 2004-02-05 Thomas Vander Stichele <thomas at apestaart dot org>
28955 * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
28956 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
28957 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28958 * pkgconfig/gstreamer-play-uninstalled.pc.in:
28959 reworked patch by David Lehn to fix libdir and includedir for
28960 uninstalled libraries
28961 removed play and gconf from gstreamer-libs since they have their
28962 own pkgconfig files
28964 2004-02-04 David Schleef <ds@schleef.org>
28966 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
28969 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
28971 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
28972 use correct GST_TAG_ENCODER tag
28974 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
28976 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
28977 be sure to stop the clock when going to paused
28978 * sys/oss/gstosssink.c: (gst_osssink_change_state):
28979 reset number of transmitted when going to ready.
28982 2004-02-05 Charles Schmidt <cschmidt2@emich.edu>
28984 reviewed by Benjamin Otte
28986 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28987 extract track count (fixes #133410)
28989 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
28991 * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
28992 that should be !=, not == (fixes #132519)
28994 2004-02-04 David Schleef <ds@schleef.org>
28996 Make sure set_explicit_caps() is called before adding pad.
28997 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
28998 * gst/id3/gstid3types.c: (gst_id3types_loop):
28999 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
29000 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
29002 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
29005 bump nano to 2, first prerelease
29006 put back AM_PROG_LIBTOOL
29008 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
29010 * testsuite/alsa/Makefile.am:
29011 these are user test apps, not automatic testsuite tests
29013 2004-02-04 David Schleef <ds@schleef.org>
29015 Convert GST_DEBUG_CAPS() to GST_DEBUG():
29016 * gst/mpeg1videoparse/gstmp1videoparse.c:
29017 (mp1videoparse_parse_seq):
29018 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
29019 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
29020 * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
29021 * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
29022 (gst_xvideosink_getcaps):
29023 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
29024 * testsuite/gst-lint: more tests
29026 2004-02-04 David Schleef <ds@schleef.org>
29028 Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
29029 with the code that they would expand to.
29030 * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
29031 (gst_flacdec_get_src_query_types),
29032 (gst_flacdec_get_src_event_masks):
29033 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
29034 (gst_gnomevfssrc_get_query_types),
29035 (gst_gnomevfssrc_get_event_mask):
29037 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
29039 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
29040 (gst_sinesrc_dispose):
29041 fix memleak by properly disposing sinesrc
29043 2004-02-04 Julien MOUTTE <julien@moutte.net>
29045 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
29046 * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
29047 an overlay to redraw the image because it has been exposed.
29048 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
29049 (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
29050 (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
29051 * sys/ximage/ximagesink.h: Implement expose method from XOverlay
29053 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
29054 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
29055 (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
29056 * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
29059 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29061 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
29062 more memleak fixage
29064 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29066 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
29067 * gst/typefind/gsttypefindfunctions.c:
29068 fix memleaks shown by gst-typefind
29070 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
29072 * common/glib-gen.mak:
29073 add hack rule to touch .Plo files
29074 * gst-libs/gst/colorbalance/Makefile.am:
29075 * gst-libs/gst/mixer/Makefile.am:
29076 * gst-libs/gst/play/Makefile.am:
29077 * gst-libs/gst/tuner/Makefile.am:
29078 remove glib_root variable
29080 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29082 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
29083 set explicit caps before adding the element, so the autopluggers can
29085 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
29086 (mpeg2_sys_type_find), (mpeg1_sys_type_find),
29087 (mpeg_video_type_find), (mpeg_video_stream_type_find),
29089 fix memleaks in typefind functions. gst_type_find_suggest takes a const
29092 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
29094 * gst-libs/gst/colorbalance/Makefile.am:
29095 * gst-libs/gst/colorbalance/colorbalance-marshal.list:
29096 * gst-libs/gst/colorbalance/colorbalance.c:
29097 * gst-libs/gst/colorbalance/colorbalance.h:
29098 * gst-libs/gst/colorbalance/colorbalancemarshal.list:
29099 * gst-libs/gst/mixer/Makefile.am:
29100 * gst-libs/gst/mixer/mixer-marshal.list:
29101 * gst-libs/gst/mixer/mixer.c:
29102 * gst-libs/gst/mixer/mixer.h:
29103 * gst-libs/gst/mixer/mixermarshal.list:
29104 * gst-libs/gst/play/Makefile.am:
29105 * gst-libs/gst/play/play.h:
29106 * gst-libs/gst/tuner/Makefile.am:
29107 * gst-libs/gst/tuner/tuner-marshal.list:
29108 * gst-libs/gst/tuner/tuner.c:
29109 * gst-libs/gst/tuner/tuner.h:
29110 * gst-libs/gst/tuner/tunermarshal.list:
29111 use new glib-gen.mak snippet to clean up Makefile.am
29112 fix various bugs in Makefile.am's
29114 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29116 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
29117 handle chain parsing correctly in the multichain case
29118 * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
29119 (theora_dec_from_granulepos), (theora_dec_to_granulepos),
29120 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
29121 (theora_dec_chain):
29122 handle events and queries correctly
29124 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29127 Ignore generated file _stdint.h.
29129 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29131 * gst-libs/gst/colorbalance/Makefile.am:
29132 * gst-libs/gst/colorbalance/colorbalance.h:
29133 * gst-libs/gst/mixer/Makefile.am:
29134 * gst-libs/gst/mixer/mixer.h:
29135 * gst-libs/gst/play/Makefile.am:
29136 * gst-libs/gst/play/play.h:
29137 * gst-libs/gst/tuner/Makefile.am:
29138 * gst-libs/gst/tuner/tuner.h:
29139 Generate enum type code with glib-mkenums.
29140 * gst-libs/gst/colorbalance/.cvsignore:
29141 * gst-libs/gst/mixer/.cvsignore:
29142 * gst-libs/gst/play/.cvsignore:
29143 * gst-libs/gst/tuner/.cvsignore:
29144 Ignore generated files.
29146 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29148 * gst-libs/gst/audio/.cvsignore:
29149 Ignore generated file.
29150 * gst-libs/gst/audio/Makefile.am:
29151 Do not install example filter.
29153 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29155 * examples/switch/.cvsignore:
29156 Ignore generated file.
29158 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29160 * common/m4/ax_create_stdint_h.m4:
29162 add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
29165 remove generated _stdint.h in DISTCLEANFILES
29166 * ext/a52dec/gsta52dec.c:
29167 include _stdint.h for a52dec. (should fix #133064)
29169 2004-02-02 Jeremy Simon <jesimon@libertysurf.fr>
29171 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
29172 (gst_tag_to_vorbis_comments):
29173 Add replaygain support to vorbistag
29175 2004-02-02 Jeremy Simon <jesimon@libertysurf.fr>
29176 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
29177 (gst_ffmpeg_caps_to_extradata):
29178 Fix SVQ3 caps flag properties
29179 Use glib macro for bytes swap
29181 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29183 * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
29184 * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
29185 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
29186 * ext/sndfile/gstsf.c: (plugin_init):
29187 * gst/avi/gstavi.c: (plugin_init):
29188 * sys/dxr3/dxr3init.c: (plugin_init):
29189 * sys/oss/gstossaudio.c: (plugin_init):
29190 * sys/v4l/gstv4l.c: (plugin_init):
29191 * sys/v4l2/gstv4l2.c: (plugin_init):
29192 remove textdomain calls
29194 update Dutch translation
29196 2004-02-02 Julien MOUTTE <julien@moutte.net>
29198 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
29199 (gst_play_set_audio_sink): Moving volume in the audio thread for
29200 instantaneous volume change. Maybe i will add another volume in front
29201 of visualization later, not sure yet though.
29203 2004-02-02 Julien MOUTTE <julien@moutte.net>
29205 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
29206 (gst_ximagesink_handle_xevents): Better X events handling, only take
29207 the latest events for configure and motion.
29208 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
29210 2004-02-02 Jon Trowbridge <trow@gnu.org>
29212 reviewed by: David Schleef <ds@schleef.org>
29215 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
29216 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
29218 2004-02-02 David Schleef <ds@schleef.org>
29220 code cleanup. Change bzero() to memset(). Remove duplicate ; at ends
29222 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
29223 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
29224 * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
29225 * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
29226 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
29227 * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
29228 * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
29229 * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
29230 (gst_float2_2_int_link):
29231 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
29232 * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
29233 * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
29234 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
29235 * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
29236 * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
29237 * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
29238 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
29239 * testsuite/gst-lint: Add tests for bzero and ;;
29241 2004-02-02 David Schleef <ds@schleef.org>
29243 * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
29245 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29247 * ext/aalib/gstaasink.c: (gst_aasink_open):
29248 * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
29249 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29250 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
29251 * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
29252 (gst_afsink_close_file):
29253 * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
29254 (gst_afsrc_close_file):
29255 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
29256 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
29257 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
29258 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
29259 * ext/esd/esdmon.c: (gst_esdmon_get):
29260 * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
29261 * ext/faac/gstfaac.c: (gst_faac_chain):
29262 * ext/faad/gstfaad.c: (gst_faad_chain):
29263 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
29264 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
29265 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
29266 * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
29267 (gst_flacdec_loop):
29268 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
29269 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
29270 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
29271 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
29272 (gst_gnomevfssink_close_file):
29273 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
29274 (gst_gnomevfssrc_open_file):
29275 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
29276 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
29277 * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
29278 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
29279 (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
29280 * ext/mad/gstmad.c: (gst_mad_chain):
29281 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
29282 * ext/mpeg2dec/gstmpeg2dec.c:
29283 * ext/mpeg2enc/gstmpeg2enc.cc:
29284 * ext/mplex/gstmplex.cc:
29285 * ext/mplex/gstmplexibitstream.cc:
29286 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
29287 (gst_ogg_demux_push):
29288 * ext/raw1394/gstdv1394src.c:
29289 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
29290 (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
29291 * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
29293 * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
29294 * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
29295 * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
29296 * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
29297 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
29298 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
29299 * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
29300 * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
29301 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29302 (gst_riff_read_element_data), (gst_riff_read_seek),
29303 (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
29304 * gst/adder/gstadder.c: (gst_adder_loop):
29305 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
29306 (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
29307 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
29308 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
29309 * gst/avi/gstavimux.c: (gst_avimux_stop_file):
29310 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
29311 * gst/goom/gstgoom.c: (gst_goom_chain):
29312 * gst/id3/gstid3types.c: (gst_id3types_loop):
29313 * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
29314 * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
29315 * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
29316 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29317 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
29318 (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
29319 (gst_ebml_read_float), (gst_ebml_read_header):
29320 * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
29321 (gst_matroska_demux_parse_blockgroup):
29322 * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
29323 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
29324 * gst/oneton/gstoneton.c: (gst_oneton_chain):
29325 * gst/silence/gstsilence.c: (gst_silence_get):
29326 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
29327 * gst/smpte/gstsmpte.c: (gst_smpte_loop):
29328 * gst/speed/gstspeed.c: (speed_loop):
29329 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
29330 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
29331 * gst/volenv/gstvolenv.c: (gst_volenv_chain):
29332 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
29333 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
29334 (gst_wavparse_loop):
29335 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
29336 (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
29337 (dxr3audiosink_close):
29338 * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
29339 * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
29340 (dxr3videosink_close), (dxr3videosink_write_data):
29341 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
29342 * sys/oss/gstosssink.c: (gst_osssink_chain):
29343 * sys/oss/gstosssrc.c: (gst_osssrc_get):
29344 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
29345 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
29346 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
29347 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
29348 (gst_v4l_set_window), (gst_v4l_enable_overlay):
29349 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
29350 (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
29351 (gst_v4l_get_frequency), (gst_v4l_set_frequency),
29352 (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
29353 (gst_v4l_set_audio):
29354 * sys/v4l/v4l_calls.h:
29355 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
29356 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
29357 (gst_v4lmjpegsink_playback_init),
29358 (gst_v4lmjpegsink_playback_start):
29359 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
29360 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
29361 (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
29362 (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
29363 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
29364 * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
29365 (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
29366 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
29367 (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
29368 (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
29369 (gst_v4l2_get_output), (gst_v4l2_set_output),
29370 (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
29371 (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
29372 (gst_v4l2_set_attribute):
29373 * sys/v4l2/v4l2_calls.h:
29374 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
29375 (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
29376 (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
29377 (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
29378 (gst_v4l2src_capture_stop):
29379 * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
29380 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
29381 (gst_ximagesink_chain):
29382 * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
29383 (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
29384 (gst_xvideosink_xwindow_new):
29385 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29386 (gst_xvimagesink_chain):
29388 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29390 * gst/volume/gstvolume.c: (gst_volume_set_volume),
29391 (gst_volume_get_volume), (volume_class_init), (volume_init),
29392 (volume_chain_int16), (volume_update_volume):
29393 * gst/volume/gstvolume.h:
29394 make code more readable by removing magic numbers
29395 make mixer interface export 0-100 range
29396 make it internally map to 0.0-1.0 range so users don't distort
29397 output by putting the sliders at full volume
29399 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29401 * gst-libs/gst/play/play.c: (gst_play_tick_callback),
29402 (gst_play_state_change), (gst_play_seek_to_time):
29403 block the tick callback for 0.5 secs after doing a seek
29405 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29407 * gst-libs/gst/play/play.c: (gst_play_new):
29410 2004-02-01 Julien MOUTTE <julien@moutte.net>
29412 * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
29413 (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
29414 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
29415 (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
29416 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
29417 (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
29419 2004-02-01 Thomas Vander Stichele <thomas at apestaart dot org>
29422 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29423 check for a function added in vorbis 1.1
29425 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
29427 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
29428 (gst_alsa_drain_audio), (gst_alsa_stop_audio):
29429 really start/stop clock only on PLAYING <=> PAUSED
29430 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29431 remove \n from debugging lines
29432 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
29433 make it work when seeking does not
29434 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29437 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
29439 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
29440 start clock on PAUSED=>PLAYING, not later
29441 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
29442 extract correct time for different discont formats
29443 (gst_alsa_sink_get_time):
29444 don't segfault when no format is negotiated yet, just return 0
29445 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29446 (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
29447 (gst_ogg_pad_push):
29448 handle flush and discont events correctly
29449 * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
29450 handle discont events correctly
29452 2004-01-31 Thomas Vander Stichele <thomas at apestaart dot org>
29454 * gst-libs/gst/play/play.c: (gst_play_error_quark),
29455 (gst_play_error_create), (gst_play_error_plugin),
29456 (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
29457 * gst-libs/gst/play/play.h:
29458 add error handling during creation
29459 * examples/gstplay/player.c: (main):
29460 use new gst_play_new
29463 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
29465 * ext/theora/theoradec.c: (theora_dec_chain):
29467 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
29468 (vorbis_dec_src_event), (vorbis_dec_chain):
29469 add encoder tag, fix tag reading to be more error tolerant, change
29470 BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
29471 gst_pad_event_default.
29472 * gst/tags/gstvorbistag.c:
29473 (gst_tag_list_from_vorbiscomment_buffer):
29474 undefine function specific define at end of function
29476 2004-01-31 Jeremy Simon <jesimon@libertysurf.fr>
29478 * ext/flac/gstflac.c: (plugin_init):
29479 * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
29480 * ext/flac/gstflacdec.h:
29481 * ext/flac/gstflacenc.h:
29484 2004-01-30 David I. Lehn <dlehn@users.sourceforge.net>
29486 * examples/gstplay/player.c: s/gstplay.h/play.h/
29488 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29490 * gst-libs/gst/play/Makefile.am:
29491 * gst-libs/gst/play/gstplay.c:
29492 * gst-libs/gst/play/gstplay.h:
29493 * gst-libs/gst/play/play.c:
29494 more surgery, operation complete
29496 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29498 * gst-libs/gst/play/play.old.c:
29499 * gst-libs/gst/play/play.old.h:
29500 after CVS surgery by moving, remove
29501 * gst-libs/gst/play/playpipelines.c:
29504 * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
29505 add negotiation error
29507 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29509 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29510 (gst_ogg_demux_push):
29511 add some seeking debug info
29512 send a flush when seeking
29514 2004-01-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
29520 * ext/theora/Makefile.am:
29521 * ext/theora/theoradec.c:
29522 add theora video decoder. Does just do simple decoding for now and
29523 has been tested against Theora cvs only. It only works when theora
29524 is compiled with --enable-static.
29525 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29526 always reset packetno on DISCONT
29528 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29530 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
29533 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29535 * gst/mpegaudioparse/gstmpegaudioparse.c:
29536 (mp3_type_frame_length_from_header):
29537 Fix header parsing - stolen from ffmpeg (thank you! :) ).
29539 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29541 * ext/esd/esdsink.c: (gst_esdsink_init):
29542 Since we have static pad template caps, we don't need to negotiate;
29543 either the core errors out or we know the format.
29545 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29547 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29548 (gst_riff_read_seek):
29549 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29550 (gst_ebml_read_seek):
29551 Fix event handling.
29553 2004-01-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
29555 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
29556 removee video/x-theora from vp3 decoder, it doesn't handle raw
29558 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
29559 fix bug with finalizing element that never went to PAUSED
29560 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
29561 length and position queries were swapped
29562 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
29563 (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
29564 (vorbis_dec_src_event):
29565 implement querying time and bytes
29567 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29569 * just about every source file:
29570 gst_element_error -> GST_ELEMENT_ERROR
29572 2004-01-29 Julien MOUTTE <julien@moutte.net>
29574 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
29575 emiting FLUSH and even before DISCONT.
29576 * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
29577 get the best instant seeking as possible yay!
29579 2004-01-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
29581 * gst/mpeg1videoparse/gstmp1videoparse.c:
29582 (gst_mp1videoparse_real_chain):
29583 Committed wrong version last week... Grr... Didn't notice until now.
29585 2004-01-29 Julien MOUTTE <julien@moutte.net>
29587 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
29588 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
29589 have_xwindow_id signal in xwindow_create.
29591 2004-01-29 Benjamin Otte <in7y118@public.uni-hamburg.de>
29593 * ext/ogg/gstoggdemux.c:
29594 lots of changes - mainly support for chained bitstreams, seeking,
29595 querying and bugfixes of course
29596 * ext/vorbis/Makefile.am:
29597 * ext/vorbis/vorbisdec.c:
29598 * ext/vorbis/vorbisdec.h:
29599 add vorbisdec raw vorbis decoder
29600 * ext/vorbis/vorbis.c: (plugin_init):
29601 register vorbisdec as PRIMARY, vorbisfile as SECONDARY
29602 * gst/intfloat/Makefile.am:
29603 * gst/intfloat/float22int.c:
29604 * gst/intfloat/float22int.h:
29605 * gst/intfloat/gstintfloatconvert.c: (plugin_init):
29606 add float2intnew plugin. It converts multichannel interleaved float to
29607 multichannel interleaved int. The name should probably be changed.
29608 * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
29610 add typefinding for raw theora video so oggdemux can detect it.
29612 2004-01-28 Julien MOUTTE <julien@moutte.net>
29614 * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
29615 sink element first.
29616 * gst/videoscale/gstvideoscale.c:
29617 (gst_videoscale_handle_src_event): Fixing src event handler.
29619 2004-01-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
29621 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
29622 (gst_v4lsrc_open), (gst_v4lsrc_close),
29623 (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
29624 (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
29625 * sys/v4l/gstv4lsrc.h:
29626 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
29627 (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
29628 Implement resizing... Hack. But that's why v4l is b0rked...
29630 2004-01-28 Julien MOUTTE <julien@moutte.net>
29632 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
29633 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
29634 (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
29635 (gst_ximagesink_xwindow_destroy):
29636 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
29637 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
29638 (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
29639 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
29640 (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
29641 correctly cleaning the image created to check xshm calls on succes,
29642 added a lot of XSync calls in X11 functions, and fixed a segfault when
29643 no image format was defined before negotiation happened.
29645 2004-01-28 Benjamin Otte <in7y118@public.uni-hamburg.de>
29647 * ext/alsa/gstalsa.c: (gst_alsa_query_func):
29648 use gst_element_get_time to get correct time
29650 2004-01-28 Julien MOUTTE <julien@moutte.net>
29652 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
29653 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
29654 (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
29655 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
29656 (gst_xvimagesink_check_xshm_calls),
29657 (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
29658 X plugins are now able to detect that XShm calls will fail even if the
29659 server claims that it has XShm support (remote displays most of the
29660 time). We then log the error as a GST_DEBUG and set use_shm to FALSE
29661 so that we use non XShm functions. This feature is almost useless for
29662 xvimagesink as Xv is not supported on remote displays anyway, but
29663 it might happen than even on the local display XShm calls fail.
29665 2004-01-27 David Schleef <ds@schleef.org>
29667 * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
29668 (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
29669 (gst_esdsink_change_state): Fix sync issues in esdsink. Also
29670 changed esdsink to only use 44100,16,2, since esd sucks at rate
29671 conversion and esdsink has had difficulty negotiating.
29673 2004-01-27 Julien MOUTTE <julien@moutte.net>
29675 * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
29676 (gst_play_seek_to_time): Fixing the way to get current position.
29678 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
29680 * sys/oss/gstosssink.c: (gst_osssink_sink_query):
29681 use gst_element_get_time to get correct time
29683 2004-01-27 Julien MOUTTE <julien@moutte.net>
29685 * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
29686 fix ever... Inverting 2 lines of code make spider autoplug correctly
29689 2004-01-27 David Schleef <ds@schleef.org>
29691 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
29692 Use gst_pad_try_set_caps_nonfixed().
29694 2004-01-27 David Schleef <ds@schleef.org>
29696 * gst/ac3parse/gstac3parse.c: update to checklist 5
29697 * gst/adder/gstadder.c: rewrite negotiation. update to checklist 5
29698 * gst/audioconvert/gstaudioconvert.c: update to checklist 5
29699 * gst/audioscale/gstaudioscale.c: same
29700 * gst/auparse/gstauparse.c: same
29701 * gst/avi/gstavidemux.c: same
29703 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
29705 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
29706 stop processing after EOS
29708 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
29710 * gst/asfdemux/asfheaders.h:
29711 * gst/asfdemux/gstasfdemux.c:
29712 * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
29713 (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
29714 (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
29715 lot's of fixes to make data extraction simpler and get the code
29716 architecture and compiler independant. Add debugging category
29717 * gst/goom/gstgoom.c: (gst_goom_change_state):
29718 reset channel count on PAUSED=>READY, not READY=>PAUSED
29720 2004-01-26 Colin Walters <walters@verbum.org>
29722 * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
29723 code to pull a bigger buffer in iradio mode. This as a side effect
29724 makes typefinding work.
29726 2004-01-26 Jeremy Simon <jesimon@libertysurf.fr>
29728 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
29729 Fix SVQ3 decoding on PPC
29731 2004-01-26 Julien MOUTTE <julien@moutte.net>
29733 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
29734 that one managed to stay there... Fixed.
29736 2004-01-26 Jeremy Simon <jesimon@libertysurf.fr>
29738 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
29739 (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
29740 * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
29741 (qtdemux_video_caps):
29742 * gst/qtdemux/qtdemux.h:
29743 Add SVQ3 specific flags to qtdemux and ffmpeg
29745 2004-01-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
29747 * gst-libs/gst/audio/audio.h:
29748 remove buffer-frames from audio caps
29749 * gst/audioconvert/gstaudioconvert.c:
29750 fix plugin to really work.
29752 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29754 * gst-libs/gst/mixer/mixer.c:
29755 * gst-libs/gst/propertyprobe/propertyprobe.c:
29756 * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
29757 (gst_tuner_find_channel_by_name):
29758 * gst-libs/gst/tuner/tuner.h:
29759 Add gtk-doc style comments. Also fix a function name.
29761 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29763 * ext/divx/gstdivxdec.c: (gst_divxdec_init),
29764 (gst_divxdec_negotiate):
29765 Fix for new capsnego - also fixes gst-player with divxdec.
29767 2004-01-25 Julien MOUTTE <julien@moutte.net>
29769 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29770 (gst_play_identity_handoff), (gst_play_set_location),
29771 (gst_play_set_visualization), (gst_play_connect_visualization): Another
29772 try in visualization implementation. Still have an issue with switch
29773 blocking when pulling from video_queue and only audio comes out of
29775 * gst/switch/gstswitch.c: (gst_switch_release_pad),
29776 (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
29777 release method. And check if the pad is usable before pulling.
29779 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29781 * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
29782 (gst_videobalance_init),
29783 (gst_videobalance_colorbalance_list_channels),
29784 (gst_videobalance_colorbalance_set_value),
29785 (gst_videobalance_colorbalance_get_value),
29786 (gst_videobalance_update_properties),
29787 (gst_videobalance_update_tables_planar411),
29788 (gst_videobalance_planar411):
29789 * gst/videofilter/gstvideobalance.h:
29790 Implement lookup-tables. +/- 10x faster.
29792 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29794 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29795 (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29796 The index reading was broken. The rest worked fine, but the whole
29797 goal of my rewrite was to make avidemux readable, and this was
29798 not at all readable. Please use typed variables.
29800 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29802 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29803 Additional pad usability check.
29804 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
29805 (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
29806 (gst_mp1videoparse_real_chain):
29807 Fix MPEG video stream parsing. The original plugin had several
29808 issues, including not timestamping streams where the source was
29809 not timestamped (this happens with PTS values in mpeg system
29810 streams, but MPEG video is also a valid stream on its own so
29811 that needs timestamps too). We use the display time code for that
29812 for now. Also, if one incoming buffer contains multiple valid
29813 frames, we push them all on correctly now, including proper EOS
29814 handling. Lastly, several potential segfaults were fixed, and we
29815 properly sync on new sequence/gop headers to include them in next,
29816 not previous frames (since they're header for the next frame, not
29817 the previous). Also see #119206.
29818 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
29820 Move caps setting so we only do it after finding several valid
29821 MPEG-1 fraes sequentially, not right after the first one (which
29822 might be coincidental).
29823 * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
29824 (mpeg_video_type_find), (mpeg_video_stream_type_find),
29826 Add unsynced MPEG video stream typefinding, and change some
29827 probability values so we detect streams rightly. The idea is as
29828 follows: I can have an unsynced system stream which contains
29829 video. In the current code, I would randomly get a type for either
29830 system or video stream type found, because the probabilities are
29831 being calculated rather randomly. I now use fixed values, so we
29832 always prefer system stream if that was found (and that is how it
29833 should be). If no system stream was found, we can still identity the stream as video-only.
29835 2004-01-23 Benjamin Otte <in7y118@public.uni-hamburg.de>
29837 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29838 (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29839 don't write to buffer. Extract data without the need of
29840 __attribute__ ((packed))
29842 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29844 * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
29845 (mpeg1_sys_type_find):
29846 Fix MPEG-1 stream typefinding.
29848 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29850 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
29851 Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
29853 2004-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
29855 * ext/esd/esdsink.c: (gst_esdsink_open_audio):
29856 * ext/esd/gstesd.c: (plugin_init):
29857 private debugging, better error reporting
29859 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29861 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
29862 (gst_riff_read_init), (gst_riff_read_change_state):
29863 * gst-libs/gst/riff/riff-read.h:
29864 Remove stuff fromold metadata system.
29866 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29868 * ext/ogg/gstoggdemux.c:
29869 Fix wrong file comment.
29870 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29871 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
29872 Add metadata reading properly.
29874 2004-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
29877 Fix nas DIST_SUBDIRS
29879 Fix bug where make distcheck doesn't get run on adding stuff to
29882 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29884 * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
29885 * ext/divx/gstdivxdec.h:
29886 Fix divx3 ("msmpeg4") playback using divxdec.
29888 2004-01-23 Benjamin Otte <in7y118@public.uni-hamburg.de>
29890 * gst/typefind/gsttypefindfunctions.c:
29891 (mp3_type_frame_length_from_header): fix bug in length computation
29892 (mp3_type_find): improve debugging output
29894 2004-01-23 Julien MOUTTE <julien@moutte.net>
29896 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29897 (gst_play_set_location), (gst_play_seek_to_time),
29898 (gst_play_set_audio_sink), (gst_play_set_visualization),
29899 (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
29900 the pipeline from scratch. Visualization is back and switch went out as
29901 i realized it was not possible to use the way i wanted.
29902 * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
29903 (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
29904 clearing in state change from READY to NULL. So that one can clean the
29905 X ressources keeping the element.
29906 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29907 (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
29908 (gst_xvimagesink_colorbalance_set_value),
29909 (gst_xvimagesink_colorbalance_get_value),
29910 (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
29911 (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
29912 change from READY to NULL and fixed some stupid bugs in colorbalance
29913 get/set values. Also added the following feature : when nobody tries to
29914 set some values to the colorbalance levels before the xcontext is
29915 grabbed, then when creating channels list from Xv attributes we set the
29916 internal values to the Xv defaults. This way we handle buggy Xv drivers
29917 that set default hue values far from the middle of the range (Thanks
29918 to Jon Trowbridge for pointing that issue).
29919 * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
29920 colorbalance levels have been set before xcontext is grabbed.
29922 2004-01-22 Ronald Bultje <rbultje@ronald.bitfreak.net>
29924 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
29925 Fix the ossmixer case where we shouldn't open /dev/dsp* because
29926 it might block operations (which is bad for a mixer).
29928 2004-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
29930 * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
29931 (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
29932 (gmip_find_type_pre):
29933 * gst-libs/gst/media-info/media-info-priv.h:
29934 * gst-libs/gst/media-info/media-info.c:
29935 (gst_media_info_instance_init), (gst_media_info_read_idler):
29936 add fakesink to get caps on decoder src pad again
29937 fix callback prototype to match new have_type signal signature
29939 2004-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
29941 * gst/adder/gstadder.c: (gst_adder_link):
29942 fix non-compile and cut-n-paste code
29944 2004-01-21 David Schleef <ds@schleef.org>
29946 * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
29947 (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
29948 (gst_swfdec_init), (gst_swfdec_change_state):
29949 * ext/swfdec/gstswfdec.h:
29951 * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
29952 (gst_adder_request_new_pad): Fix negotiation.
29953 * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
29954 Add a fixate function.
29955 * gst/intfloat/gstfloat2int.c:
29956 * gst/intfloat/gstfloat2int.h:
29957 * gst/intfloat/gstint2float.c:
29958 * gst/intfloat/gstint2float.h:
29959 Completely rewrite the negotiation. Doesn't quite work yet,
29960 due to some buffer-frames problem.
29962 2004-01-21 Thomas Vander Stichele <thomas at apestaart dot org>
29964 * ext/gnomevfs/gstgnomevfssrc.c:
29965 * sys/v4l2/v4l2_calls.h:
29966 fix includes for distcheck
29968 2004-01-21 Christian Schaller <uraeus@gnome.org>
29971 Add libnas (network audio system) plugin, patch from Arwed von Merkatz
29972 based on earlier patch from Laurent Vivier
29974 2004-01-20 Jeremy Simon <jesimon@libertysurf.fr>
29976 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
29977 Fix wma caps property
29978 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
29979 Fix typo (flags1 and flags2)
29981 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
29983 * gst-libs/gst/media-info/media-info-priv.c:
29984 (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
29985 (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
29986 (gmip_find_stream), (gmip_find_track_metadata),
29987 (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
29988 (gmip_find_track_format):
29989 * gst-libs/gst/media-info/media-info-priv.h:
29990 * gst-libs/gst/media-info/media-info-test.c: (main):
29991 * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
29992 (gst_media_info_read_idler), (gst_media_info_read):
29993 * gst-libs/gst/media-info/media-info.h:
29994 register debugging category and use it for debugging
29996 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
29998 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
29999 (gst_vorbisfile_new_link):
30000 signal streaminfo through tags
30002 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
30004 * ext/mplex/gstmplex.cc:
30005 * ext/mplex/gstmplexibitstream.cc:
30006 g++ doesn't like NULL in our i18n/error macros, should be
30007 either (NULL) or ("").
30009 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
30011 * sys/dxr3/dxr3audiosink.c:
30012 * sys/dxr3/dxr3init.c:
30013 * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
30014 * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
30015 Fix more error error error errors (missing includes here).
30017 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
30019 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30020 fix thomas' error errors.
30022 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
30024 * ext/mpeg2enc/gstmpeg2enc.cc:
30027 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
30029 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
30030 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
30031 Fix for new error system.
30033 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
30035 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
30036 fix for new error reporting
30038 2004-01-20 David Schleef <ds@schleef.org>
30040 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
30041 (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
30042 (gst_ximagesink_set_xwindow_id): Change to using a framerate
30043 of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
30044 and neither is 100+, most likely.
30045 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
30046 (gst_xvimagesink_getcaps): same
30048 2004-01-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
30051 Up version requirement to 2.0.3 (not yet released) to avoid symbol
30052 clashes with ffmpeg.
30054 2004-01-20 Julien MOUTTE <julien@moutte.net>
30056 * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
30057 (gst_switch_init): Fixed switch element : proxying link and setting
30058 caps from src to sink on request.
30060 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30062 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
30063 * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
30064 (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
30067 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30069 * sys/v4l/v4l_calls.h:
30070 * sys/v4l2/v4l2_calls.h:
30071 element_error fixes
30073 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30075 * gst-libs/gst/gst-i18n-plugin.h:
30077 remove config.h inclusion
30079 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30082 adding autopoint invocation
30085 * gst-libs/gst/gettext.h:
30086 adding gettext bits
30087 * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
30088 * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
30089 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
30090 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
30091 (gst_gnomevfssink_close_file):
30092 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
30093 * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
30094 * gst-libs/gst/gst-i18n-plugin.h:
30095 * gst/avi/gstavi.c: (plugin_init):
30096 * sys/dxr3/dxr3init.c: (plugin_init):
30097 * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
30098 * sys/oss/gstossaudio.c: (plugin_init):
30099 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
30100 * sys/v4l/gstv4l.c: (plugin_init):
30101 * sys/v4l/v4l_calls.c: (gst_v4l_open):
30102 * sys/v4l2/gstv4l2.c: (plugin_init):
30103 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
30104 (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
30105 (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
30106 (gst_v4l2_set_output), (gst_v4l2_get_frequency),
30107 (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
30108 (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
30109 make sure locale and translation domain are set
30110 fix translated strings
30116 put translation files into place
30117 * sys/xvideo/imagetest.c: (main):
30118 * ext/dv/demo-play.c: (main):
30119 fix unnecessary translations
30121 2004-01-19 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
30123 * ext/sndfile/gstsf.c:
30124 * gst/avi/gstavimux.c:
30125 * ext/audiofile/gstafsink.c:
30126 * ext/audiofile/gstafsrc.c:
30127 * ext/gnomevfs/gstgnomevfssink.c:
30128 * ext/gnomevfs/gstgnomevfssrc.c:
30129 * sys/oss/gstosselement.c:
30130 * sys/v4l/v4l_calls.h:
30133 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30135 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
30136 (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
30137 (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
30138 (gst_v4l2_get_output), (gst_v4l2_set_output),
30139 (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
30140 (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
30141 (gst_v4l2_set_attribute):
30142 update to new error handling
30144 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30146 * ext/sidplay/gstsiddec.cc:
30147 * gst/modplug/gstmodplug.cc:
30148 parenthese NULL because C++ seems angry about it
30150 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30152 * gst-libs/gst/gst-i18n-plugin.h:
30153 add skeleton i18n stuff, but needs to be further implemented
30155 2004-01-18 Thomas Vander Stichele <thomas at apestaart dot org>
30157 * examples/gstplay/player.c: (main):
30158 * ext/aalib/gstaasink.c: (gst_aasink_open):
30159 * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
30160 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
30161 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
30162 * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
30163 (gst_afsink_close_file):
30164 * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
30165 (gst_afsrc_close_file):
30166 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
30167 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
30168 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
30169 * ext/esd/esdmon.c: (gst_esdmon_get):
30170 * ext/esd/esdsink.c: (gst_esdsink_chain):
30171 * ext/faac/gstfaac.c: (gst_faac_chain):
30172 * ext/faad/gstfaad.c: (gst_faad_chain):
30173 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
30174 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
30175 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
30176 * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
30177 (gst_flacdec_loop):
30178 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
30179 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
30180 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
30181 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
30182 (gst_gnomevfssink_close_file):
30183 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
30184 (gst_gnomevfssrc_open_file):
30185 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
30186 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
30187 * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
30188 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
30189 (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
30190 * ext/mad/gstmad.c: (gst_mad_chain):
30191 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
30192 * ext/mpeg2dec/gstmpeg2dec.c:
30193 * ext/mpeg2enc/gstmpeg2enc.cc:
30194 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30195 * ext/mplex/gstmplex.cc:
30196 * ext/mplex/gstmplexibitstream.cc:
30197 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
30198 (gst_ogg_demux_push), (gst_ogg_pad_push):
30199 * ext/raw1394/gstdv1394src.c:
30200 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
30201 (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
30202 * ext/sidplay/gstsiddec.cc:
30203 * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
30205 * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
30206 * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
30207 * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
30208 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
30209 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
30210 * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
30211 * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
30212 * gst-libs/gst/Makefile.am:
30213 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
30214 (gst_riff_read_element_data), (gst_riff_read_seek),
30215 (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
30216 * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
30217 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
30218 (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
30219 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
30220 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
30221 * gst/avi/gstavimux.c: (gst_avimux_stop_file):
30222 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
30223 * gst/goom/gstgoom.c: (gst_goom_chain):
30224 * gst/id3/gstid3types.c: (gst_id3types_loop):
30225 * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
30226 * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
30227 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
30228 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
30229 (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
30230 (gst_ebml_read_float), (gst_ebml_read_header):
30231 * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
30232 (gst_matroska_demux_parse_blockgroup):
30233 * gst/modplug/gstmodplug.cc:
30234 * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
30235 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
30236 * gst/oneton/gstoneton.c: (gst_oneton_chain):
30237 * gst/silence/gstsilence.c: (gst_silence_get):
30238 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
30239 * gst/smpte/gstsmpte.c: (gst_smpte_loop):
30240 * gst/speed/gstspeed.c: (speed_loop):
30241 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
30242 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30243 * gst/volenv/gstvolenv.c: (gst_volenv_chain):
30244 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
30245 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
30246 (gst_wavparse_loop):
30247 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
30248 (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
30249 (dxr3audiosink_close):
30250 * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
30251 * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
30252 (dxr3videosink_close), (dxr3videosink_write_data):
30253 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
30254 * sys/oss/gstosselement.h:
30255 * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
30256 (gst_osssink_chain):
30257 * sys/oss/gstosssrc.c: (gst_osssrc_get):
30258 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
30259 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
30260 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
30261 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
30262 (gst_v4l_enable_overlay):
30263 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
30264 (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
30265 (gst_v4l_get_frequency), (gst_v4l_set_frequency),
30266 (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
30267 (gst_v4l_set_audio):
30268 * sys/v4l/v4l_calls.h:
30269 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
30270 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
30271 (gst_v4lmjpegsink_playback_init),
30272 (gst_v4lmjpegsink_playback_start):
30273 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
30274 (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
30275 (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
30276 (gst_v4lmjpegsrc_requeue_frame):
30277 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
30278 (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
30279 (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
30280 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
30281 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
30282 (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
30283 (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
30284 (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
30285 (gst_v4l2src_capture_stop):
30286 * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
30287 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
30288 (gst_ximagesink_chain):
30289 * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
30290 (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
30291 (gst_xvideosink_xwindow_new):
30292 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30293 (gst_xvimagesink_chain):
30294 use new error signal, function and categories
30296 2004-01-18 Jeremy Simon <jesimon@libertysurf.fr>
30300 * ext/musicbrainz/gsttrm.c:
30301 * ext/musicbrainz/gsttrm.h:
30302 * ext/musicbrainz/Makefile.am:
30305 2004-01-18 Julien MOUTTE <julien@moutte.net>
30307 * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
30308 (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
30309 synchronous property for debugging.
30310 * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
30311 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30312 (gst_xvimagesink_set_property): Moving a pointer declaration to a
30313 smaller block, fixing indent.
30315 2004-01-16 David Schleef <ds@schleef.org>
30317 * gst/videofilter/gstvideobalance.c: Fix regression; changing a
30318 property affects the video stream.
30319 * sys/xvimage/xvimagesink.c:
30320 * sys/xvimage/xvimagesink.h:
30321 Add synchronous property for debugging. Should probably be
30322 disabled in non-CVS builds. Make sure that the Xv attribute
30323 exists before we set it (crash!). Fix a silly float bug that
30324 caused colorbalance to just not work.
30326 2004-01-17 Christian Schaller <Uraeus@gnome.org>
30328 * tools/gst-launch-ext.in - update for new plugins
30330 2004-01-16 David Schleef <ds@schleef.org>
30332 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
30333 already-freed caps.
30335 2994-01-16 Christian Schaller <Uraeus@gnome.org>
30337 * Update spec for new colorspace plugin and libcaca plugin
30338 * Fix compilation of libcaca plugin (clock -> id)
30340 2004-01-16 Julien MOUTTE <julien@moutte.net>
30342 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
30343 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
30344 (gst_xvimagesink_set_xwindow_id),
30345 (gst_xvimagesink_colorbalance_set_value),
30346 (gst_xvimagesink_colorbalance_get_value),
30347 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
30348 (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
30349 correct colorbalance properties. They can now be set when the element
30350 is still in NULL state. The values will be committed to the Xv Port
30351 when xcontext is initialized.
30352 * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
30353 brightness int values in the GstXvImagesink structure.
30355 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
30357 * gst-libs/gst/Makefile.am:
30358 restructure so having local patches works easier.
30360 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
30362 * ext/mpeg2enc/Makefile.am:
30363 * ext/mpeg2enc/gstmpeg2enc.cc:
30364 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30365 Bugfix with respect to EOS handling.
30367 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
30369 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
30370 Link with right caps (else, it segfaults).
30371 * ext/mplex/gstmplexjob.cc:
30372 Fix for slight API change in 1.6.1.93 release of mjpegtools.
30374 2004-01-15 David Schleef <ds@schleef.org>
30376 * gst-libs/gst/audio/Makefile.am:
30377 Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
30379 * gst-libs/gst/audio/gstaudiofilter.c:
30380 * gst-libs/gst/audio/gstaudiofilter.h:
30381 Add bytes_per_sample and size and n_samples calculation.
30382 * gst-libs/gst/audio/gstaudiofilterexample.c:
30383 Remove, now autogenerated.
30384 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
30385 Moved from gstaudiofilterexample, object name changed, code added
30386 so that it actually works.
30387 * gst-libs/gst/audio/make_filter:
30388 Script to build an audiofilter subclass from the template.
30389 * gst/colorspace/Makefile.am:
30390 * gst/colorspace/yuv2yuv.c:
30391 Remove file, since it's GPL, and we don't use it.
30393 2004-01-15 Julien MOUTTE <julien@moutte.net>
30395 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30396 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
30397 them use the buffer free function to test how the buffer was allocated.
30399 2004-01-15 David Schleef <ds@schleef.org>
30401 * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
30402 that handles osssink fallback.
30403 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
30404 (gst_audio_convert_getcaps):
30405 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
30406 Add audio/x-qdm2 for QDM2 audio.
30407 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
30408 * gst/sine/gstsinesrc.h: Add example of how to implement tags.
30409 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
30410 Decrease minimum size to 16x16.
30411 * gst/wavparse/gstwavparse.c:
30412 Convert disabled pad template caps to new caps.
30413 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
30414 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30415 (gst_xvimagesink_chain): Throw element error when display cannot
30416 be opened. Increase minimum framerate to 1.0. Check the data
30417 free function on a buffer to make sure it is the type we expect
30418 before manipulating it.
30420 2004-01-15 Julien MOUTTE <julien@moutte.net>
30422 * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
30423 (gst_videobalance_colorbalance_set_value): Implement passthru if
30424 settings are in the middle.
30425 * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
30427 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30429 * gst/videofilter/Makefile.am:
30430 * gst/volume/Makefile.am:
30431 Since we use videofilter symbols, link to it.
30433 2004-01-15 Julien MOUTTE <julien@moutte.net>
30435 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
30436 mixer interface type to HARDWARE.
30437 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
30439 * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
30440 * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
30441 * gst/volume/gstvolume.c: (gst_volume_interface_supported),
30442 (gst_volume_interface_init), (gst_volume_list_tracks),
30443 (gst_volume_set_volume), (gst_volume_get_volume),
30444 (gst_volume_set_mute), (gst_volume_mixer_init),
30445 (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
30446 (volume_init): Implementing mixer interface.
30447 * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
30448 * sys/oss/gstosselement.c: (gst_osselement_get_type),
30449 (gst_osselement_change_state): Removing some trailing commas in
30451 * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
30452 interface type to HARDWARE.
30453 * sys/v4l/gstv4lcolorbalance.c:
30454 (gst_v4l_color_balance_interface_init): Setting colorbalance interface
30456 * sys/v4l2/gstv4l2colorbalance.c:
30457 (gst_v4l2_color_balance_interface_init): Setting colorbalance
30458 interface type to HARDWARE.
30459 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
30460 same code than ximagesink for event handling.
30462 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30464 * ext/snapshot/Makefile.am:
30465 * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
30466 (gst_snapshot_chain):
30467 * ext/snapshot/gstsnapshot.h:
30468 This has to be a joke... Snapshot should be connected to a tee,
30469 colorspace element before it and EOS after that, where the other
30470 src of the tee receives normal data.
30471 The current way is *wrong*.
30473 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30475 * ext/hermes/gsthermescolorspace.c:
30476 Fix another compile error. Same as below.
30478 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30480 * gst/colorspace/gstcolorspace.c:
30481 * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
30482 (gst_colorspace_i420_to_yv12):
30483 Fix compiling... Didn't test if it actually works.
30485 2004-01-15 David Schleef <ds@schleef.org>
30488 * gst/colorspace/Makefile.am:
30489 * gst/colorspace/gstcolorspace.c:
30490 * gst/colorspace/gstcolorspace.h:
30491 * gst/colorspace/yuv2rgb.c:
30492 * gst/colorspace/yuv2rgb.h:
30493 Duplicate the ext/hermes colorspace plugin, and remove Hermes
30494 code and GPL code. Fix for new caps negotiation. Rewrite
30495 much of the format handling code, and some of the conversion
30496 code. Basically, rewrote almost everything. This element
30497 handles I420, YV12 to RGB conversions.
30498 * ext/hermes/Makefile.am:
30499 * ext/hermes/gsthermescolorspace.c:
30500 Rename colorspace to hermescolorspace. Fix negotiation issues.
30501 Remove non-Hermes related code. This element handles lots of
30502 RGB to RGB conversions, but no YUV.
30503 * ext/hermes/gstcolorspace.c:
30504 * ext/hermes/gstcolorspace.h:
30505 * ext/hermes/rgb2yuv.c:
30506 * ext/hermes/yuv2rgb.c:
30507 * ext/hermes/yuv2rgb.h:
30508 * ext/hermes/yuv2rgb_mmx16.s:
30509 * ext/hermes/yuv2yuv.c:
30510 * ext/hermes/yuv2yuv.h:
30513 2004-01-14 Colin Walters <walters@verbum.org>
30515 * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
30516 they've already been.
30518 2004-01-15 Benjamin Otte <in7y118@public.uni-hamburg.de>
30520 * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
30521 assume tag mode when pad is not connected
30523 2004-01-15 Benjamin Otte <in7y118@public.uni-hamburg.de>
30525 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30526 Don't update the time of the clock
30527 (gst_alsa_sink_loop):
30528 sync to the clock given to alsasink, not the own clock
30529 * sys/oss/gstosssink.c: (gst_osssink_chain):
30531 (gst_osssink_change_state):
30533 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30534 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
30535 remove bogus code that made DISCONT events unhandled
30536 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
30537 explicitly case to double in _set_simple. (fixes 2nd warning in bug
30539 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
30540 (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
30541 (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
30542 convert g_warning because of wrong asf data to GST_WARNINGs (fixes
30543 2nd warning in bug #131502)
30545 2004-01-14 Julien MOUTTE <julien@moutte.net>
30547 * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
30548 (gst_videobalance_colorbalance_set_value),
30549 (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
30550 for colorbalance interface implementation.
30551 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
30552 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
30553 (gst_ximagesink_dispose), (gst_ximagesink_init),
30554 (gst_ximagesink_class_init): Adding DISPLAY property.
30555 * sys/ximage/ximagesink.h: Adding display_name to store display.
30556 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30557 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
30558 (gst_xvimagesink_dispose), (gst_xvimagesink_init),
30559 (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
30560 properties (they still need polishing though for gst-launch use : no
30561 xcontext yet, i ll do that tomorrow).
30562 * sys/xvimage/xvimagesink.h: Adding display_name to store display.
30564 2004-01-14 Julien MOUTTE <julien@moutte.net>
30566 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
30567 (gst_play_set_location), (gst_play_set_visualization): Preparing
30568 switch integration, adding videobalance in the pipeline.
30570 2004-01-14 Julien MOUTTE <julien@moutte.net>
30572 * gst-libs/gst/colorbalance/colorbalance.c:
30573 (gst_color_balance_class_init): Adding a default type.
30574 * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
30576 * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
30577 (gst_videobalance_dispose), (gst_videobalance_class_init),
30578 (gst_videobalance_init), (gst_videobalance_interface_supported),
30579 (gst_videobalance_interface_init),
30580 (gst_videobalance_colorbalance_list_channels),
30581 (gst_videobalance_colorbalance_set_value),
30582 (gst_videobalance_colorbalance_get_value),
30583 (gst_videobalance_colorbalance_init): Implementing colorbalance
30585 * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
30587 * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
30588 bug which was triggering a BadAccess X error when setting an overlay
30589 before pad was really negotiated.
30590 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
30591 Using the colorbalance type macro.
30593 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30595 * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
30596 (gst_flacenc_chain):
30597 handle tags correctly
30598 * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
30599 extract ID3v1 tags correctly
30601 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
30603 * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
30605 Improve matroska typefinding for odd-typed headers...
30607 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
30609 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
30610 Fix for using incremental number on padnames.
30612 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
30614 * ext/divx/gstdivxdec.c:
30615 * ext/divx/gstdivxenc.c:
30616 Set category to divx4linux instead of divx (too generic).
30617 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
30618 (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
30619 (gst_wavparse_loop), (gst_wavparse_change_state):
30620 * gst/wavparse/gstwavparse.h:
30621 fix parsing of WAV files with non-standard fmt-tag size and fix
30622 skipping of unrecognized chunks... Someone please fix this thing
30623 to use rifflib so all this is automated.
30624 * sys/v4l/Makefile.am:
30625 * sys/v4l2/Makefile.am:
30626 Add X_CFLAGS because we depend on X (for overlay).
30628 2004-01-14 Jan Schmidt <thaytan@mad.scientist.com>
30630 * ext/mpeg2dec/gstmpeg2dec.c:
30631 Don't issue a timestamp unless we tagged the frame
30634 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30636 * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
30637 Query the audio element to get the time, not the clock. We're
30638 interested in the element's time here.
30640 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30642 * ext/aalib/gstaasink.c: (gst_aasink_chain):
30643 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30644 * ext/esd/esdsink.c: (gst_esdsink_chain):
30645 * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
30646 * ext/mas/massink.c: (gst_massink_chain):
30647 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
30648 * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
30649 (gst_matroska_demux_parse_metadata):
30650 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
30651 (gst_mpeg_parse_release_locks):
30652 * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
30653 * gst/udp/gstudpsink.c: (gst_udpsink_chain):
30654 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30655 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
30656 (gst_osssink_change_state):
30657 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
30658 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30659 * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
30660 (gst_xvideosink_release_locks):
30661 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
30663 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
30664 (gst_alsa_clock_stop):
30665 * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
30666 (gst_audio_clock_get_internal_time):
30667 simplify for use with new clocking code.
30668 * testsuite/alsa/Makefile.am:
30669 * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
30670 fix testsuite for new caps system
30672 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30674 * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
30675 * ext/flac/gstflacenc.c: (add_one_tag):
30676 length is already host endian, no need to convert. Fixes playback of
30677 tagged files on PPC. (bug #128384)
30679 2004-01-13 Julien MOUTTE <julien@moutte.net>
30681 * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
30682 colorbalance interface stating if it is hardware based or software
30684 * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
30685 Removing a trailing comma.
30686 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30687 (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
30688 Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
30689 the documentation seems to be wrong on the -1000 to 1000 interval.
30691 2004-01-12 David Schleef <ds@schleef.org>
30693 * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
30694 (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
30695 (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
30696 Fix negotiation. Add a bufferalloc function for the sink pad,
30697 and generally clean up some of the code.
30699 2004-01-12 Julien MOUTTE <julien@moutte.net>
30701 * gst-libs/gst/colorbalance/colorbalancechannel.c:
30702 (gst_color_balance_channel_dispose): Adding safety check in dispose
30704 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30705 (gst_xvimagesink_xcontext_clear),
30706 (gst_xvimagesink_interface_supported),
30707 (gst_xvimagesink_colorbalance_list_channels),
30708 (gst_xvimagesink_colorbalance_set_value),
30709 (gst_xvimagesink_colorbalance_get_value),
30710 (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
30711 Adding colorbalance interface support to set XV parameters such as
30712 HUE, BRIGHTNESS, CONTRAST, SATURATION.
30713 * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
30716 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
30718 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
30719 (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
30720 (gst_audio_convert_init), (gst_audio_convert_set_property),
30721 (gst_audio_convert_get_property), (gst_audio_convert_chain),
30722 (gst_audio_convert_link),
30723 (gst_audio_convert_buffer_to_default_format),
30724 (gst_audio_convert_buffer_from_default_format), (plugin_init):
30725 - implement _getcaps and use it
30727 - remove float caps since no float conversion is actually done
30728 - remove properties and arguments that were to be used for rate
30731 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
30733 * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
30734 (gst_audio_structure_set_int):
30735 * gst-libs/gst/audio/audio.h:
30736 add helper functions for _getcaps matching the standard audio
30739 2004-01-12 David Schleef <ds@schleef.org>
30741 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
30742 Test that pad is negotiated before getting its caps.
30744 2004-01-12 Julien MOUTTE <julien@moutte.net>
30746 * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
30747 analyzing the pads of an element the bin is mostly in READY state so
30748 no caps were negotiated. This helper function needs to work with
30749 _get_caps directly then. I was not freeing them though, added that to
30752 2004-01-12 Julien MOUTTE <julien@moutte.net>
30754 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30755 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
30756 direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
30757 than the free_func.
30759 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
30761 * sys/oss/gstossaudio.c: (plugin_init):
30762 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
30763 * sys/oss/gstosselement.h:
30764 make an oss debugging category
30765 make failure more descriptive
30767 2004-01-11 David Schleef <ds@schleef.org>
30769 * ext/ffmpeg/gstffmpeg.c:
30770 * ext/ffmpeg/gstffmpegcodecmap.c:
30771 * ext/ffmpeg/gstffmpegdec.c:
30772 * ext/ffmpeg/gstffmpegenc.c:
30773 * ext/ffmpeg/gstffmpegprotocol.c:
30774 * ext/gdk_pixbuf/gstgdkanimation.c:
30775 * ext/jpeg/gstjpeg.c:
30776 * ext/libpng/gstpng.c:
30777 * ext/mpeg2dec/perftest.c:
30778 * ext/speex/gstspeex.c:
30779 * gst-libs/gst/resample/dtos.c:
30780 * gst/intfloat/gstintfloatconvert.c:
30781 * gst/oneton/gstoneton.c:
30782 * gst/rtjpeg/RTjpeg.c:
30783 * gst/rtp/gstrtp.c:
30784 * sys/dxr3/dxr3init.c:
30785 * sys/glsink/gstgl_nvimage.c:
30786 * sys/glsink/gstgl_pdrimage.c:
30787 * sys/glsink/gstglsink.c:
30788 * testsuite/gst-lint:
30789 Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
30791 2004-01-11 David Schleef <ds@schleef.org>
30793 * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
30794 * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
30795 * ext/gdk_pixbuf/gstgdkanimation.c:
30796 (gst_gdk_animation_iter_create_pixbuf):
30797 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30798 (gst_gdk_pixbuf_chain):
30799 * ext/gdk_pixbuf/gstgdkpixbuf.h:
30800 * ext/jack/gstjack.c: (gst_jack_change_state):
30801 * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
30802 * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
30803 * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
30804 * gst/videofilter/gstvideofilter.c:
30805 (gst_videofilter_set_output_size):
30806 Remove all usage of gst_pad_get_caps(), and replace it with
30807 gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
30809 2004-01-11 David Schleef <ds@schleef.org>
30812 * ext/Makefile.am: Fixes to make ext/libcaca compile.
30813 * ext/divx/gstdivxdec.c:
30814 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30815 (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
30816 handle images that span multiple buffers. Now work with both
30817 filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
30818 * ext/gdk_pixbuf/gstgdkpixbuf.h:
30819 * ext/libcaca/gstcacasink.h: Fixes needed due to recent
30820 video/video.h changes
30821 * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
30822 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30823 (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
30824 of GstData free function.
30825 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30828 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
30830 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
30831 (gst_v4l2element_dispose), (gst_v4l2element_set_property),
30832 (gst_v4l2element_get_property):
30833 * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
30834 add norm, channel and frequency properties.
30835 * sys/v4l2/gstv4l2tuner.c:
30836 fixes for tuner interface changes
30837 * sys/v4l2/gstv4l2element.h:
30838 * sys/v4l2/gstv4l2src.c:
30839 * sys/v4l2/gstv4l2src.h:
30840 * sys/v4l2/v4l2src_calls.c:
30841 * sys/v4l2/v4l2src_calls.h:
30842 rework v4l2src to work with saa1734 cards and allow mmaped buffers.
30844 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
30846 * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
30847 (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
30848 (gst_tuner_channel_changed), (gst_tuner_norm_changed),
30849 (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
30850 * gst-libs/gst/tuner/tuner.h:
30851 GObjects aren't const.
30852 Add find_by_name functions.
30853 Add checks to _changed functions.
30854 * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
30855 (gst_v4l_tuner_get_norm):
30858 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
30860 * gst-libs/gst/video/video.h:
30861 Fix caps template names to be understandable.
30862 Prefix everything with GST_VIDEO.
30863 * ext/aalib/gstaasink.c:
30864 * ext/divx/gstdivxdec.c:
30865 * ext/divx/gstdivxenc.c:
30866 * ext/gdk_pixbuf/gstgdkpixbuf.c:
30867 * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
30868 * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
30869 * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
30870 * ext/libcaca/gstcacasink.c:
30871 * ext/libpng/gstpngenc.c: (raw_caps_factory):
30872 * ext/snapshot/gstsnapshot.c:
30873 * ext/swfdec/gstswfdec.c:
30874 * ext/xvid/gstxviddec.c:
30875 * ext/xvid/gstxvidenc.c:
30876 * gst/chart/gstchart.c:
30877 * gst/deinterlace/gstdeinterlace.c:
30878 * gst/effectv/gsteffectv.c:
30879 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
30880 * gst/goom/gstgoom.c:
30881 * gst/median/gstmedian.c:
30882 * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
30883 (gst_monoscope_srcconnect), (gst_monoscope_chain):
30884 * gst/overlay/gstoverlay.c:
30885 * gst/smooth/gstsmooth.c:
30886 * gst/smpte/gstsmpte.c:
30887 * gst/synaesthesia/gstsynaesthesia.c:
30888 * gst/videocrop/gstvideocrop.c:
30889 * gst/videodrop/gstvideodrop.c:
30890 * gst/y4m/gsty4mencode.c:
30891 * sys/qcam/gstqcamsrc.c:
30892 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
30893 Make them work with new video.h file.
30894 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30895 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
30896 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30897 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
30898 Make it work with new buffer allocation system.
30900 2004-01-11 Julien MOUTTE <julien@moutte.net>
30902 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
30903 pad_alloc_buffer implementation to use ->srcpad
30904 * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
30905 pad_alloc_buffer implementation to use ->srcpad
30906 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Fixing the
30907 pad_alloc_buffer implementation to use ->srcpad
30908 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
30909 (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
30910 (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
30911 a reference to everything we need.
30912 * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
30913 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
30914 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
30915 (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
30916 a reference to everything we need.
30917 * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
30919 2004-01-11 David Schleef <ds@schleef.org>
30921 * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
30922 * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
30923 (gst_fenced_buffer_default_copy): Fix for rename of buffer private
30925 * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
30926 value during a resize/renegotiation.
30927 * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
30928 gst_pad_alloc_buffer();
30929 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30930 (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
30932 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30933 Fix for rename of buffer private structure members.
30934 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30935 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
30936 Fix for rename of buffer private structure members.
30937 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30938 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
30939 Fix for rename of buffer private structure members.
30941 2004-01-11 Arwed v. Merkatz <v.merkatz@gmx.net>
30943 reviewed by: David Schleef <ds@schleef.org>
30945 * gst/videofilter/Makefile.am:
30946 * gst/videofilter/gstgamma.c: Gamma correction filter. Modified
30947 from the patch by ds to fit in with recent make_filter changes.
30949 2004-01-11 Julien MOUTTE <julien@moutte.net>
30951 * configure.ac: Adding examples/switch/Makefile
30952 * examples/Makefile.am: Adding examples/switch
30953 * examples/switch/Makefile.am: Adding switcher example.
30954 * examples/switch/switcher.c: (got_eos), (idle_iterate),
30955 (switch_timer), (main): Adding an example demonstrating switch usage
30956 with 2 videotestsrc showing different patterns.
30957 * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
30958 (gst_switch_init): Fixing switch with the new caps system.
30960 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
30962 * gst-libs/gst/video/video.h:
30963 Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
30964 They should probably be like
30965 GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
30967 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
30969 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
30970 (qtdemux_parse_trak):
30971 fix audio chunk size/timestamp calculation
30973 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
30975 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
30978 2004-01-11 Steve Baker <steve@stevebaker.org>
30980 * gst/effectv/gstaging.c: (gst_agingtv_get_type),
30981 (gst_agingtv_base_init), (gst_agingtv_class_init),
30982 (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
30983 (gst_agingtv_set_property), (gst_agingtv_get_property):
30984 Port agingTV to videofilter
30986 2004-01-09 Julien MOUTTE <julien@moutte.net>
30988 * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
30989 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30991 2004-01-09 Julien MOUTTE <julien@moutte.net>
30993 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
30994 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30995 * gst-libs/gst/xoverlay/xoverlay.c:
30996 (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
30997 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
30998 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
30999 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
31000 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
31001 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
31002 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
31003 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_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.
31007 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
31008 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
31009 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
31010 the bufferalloc_function to replace bufferpools, fixing the XOverlay
31011 interface implementation to handle xid being 0 and fix some bugs
31012 triggered by Benjamin's testcase.
31014 2004-01-09 David Schleef <ds@schleef.org>
31016 * ext/librfb/gstrfbsrc.c: Hacking. Added actual decoding and
31017 mouse pointer events. It works.
31019 2004-01-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
31021 * ext/divx/gstdivxenc.c: (gst_divxenc_init):
31022 Use explicit caps - fix capsnego.
31023 * ext/xvid/gstxviddec.c:
31024 * ext/xvid/gstxvidenc.c:
31025 Remove macro-inside-macro which caused compile errors.
31026 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
31027 Error out if it's not a RIFF file. Else we error out without
31028 gst_element_error() which is not good...
31030 2004-01-08 David Schleef <ds@schleef.org>
31032 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
31033 Fix pad_link function to handle formats that ffmpeg returns
31034 as multiple caps structures.
31035 * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
31036 Only complain if source buffer is _smaller_ than expected.
31037 * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
31038 (gst_videoscale_handle_src_event): Resize navigation events
31039 when passing them upstream.
31040 * gst/videotestsrc/gstvideotestsrc.c:
31041 * gst/videotestsrc/gstvideotestsrc.h:
31042 * gst/videotestsrc/videotestsrc.c:
31043 * gst/videotestsrc/videotestsrc.h:
31044 Rewrite many of the buffer painting functions to handle odd
31045 sizes (for many formats, size%4!=0 or size%8!=0). Most have
31046 been verified to work with my video card.
31047 * testsuite/gst-lint: Add check for elements calling
31048 gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
31050 2004-01-08 David Schleef <ds@schleef.org>
31052 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
31053 (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
31055 2004-01-08 Julien MOUTTE <julien@moutte.net>
31057 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
31058 configure event is not emiting the desired size signal. That fixes
31059 aspect ratio issues with gst-player.
31061 2004-01-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
31063 * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
31066 2004-01-08 Julien MOUTTE <julien@moutte.net>
31068 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
31069 public method to fire size signal.
31071 2004-01-07 Julien MOUTTE <julien@moutte.net>
31073 * examples/gstplay/Makefile.am: Adding the interface library.
31074 * gst-libs/gst/play/Makefile.am: Adding the interface library.
31075 * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to the XOverlay size signal instead of GstVideoSink.
31076 * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
31077 GST_IS_X_OVERLAY before signal connect.
31078 * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
31079 Removing the have_video_size signal.
31080 * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
31081 and associated public method.
31082 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
31083 (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
31085 * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
31086 (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
31088 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
31089 Using XOverlay public method to fire size signal.
31091 2004-01-07 David Schleef <ds@schleef.org>
31093 * gst/videofilter/Makefile.am:
31094 * gst/videofilter/gstvideotemplate.c:
31095 * gst/videofilter/make_filter:
31096 Create gstvideoexample.c in a srcdir!=builddir friendly way.
31097 Convert make_filter to /bin/sh script.
31099 2004-01-07 Thomas Vander Stichele <thomas at apestaart dot org>
31101 * gst/modplug/gstmodplug.cc: fix element description
31103 2004-01-07 Julien MOUTTE <julien@moutte.net>
31105 * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
31106 (got_video_size): Adding some new lines in g_print calls.
31107 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
31108 (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
31109 (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
31110 (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
31111 (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
31112 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
31113 Complete code review, reverting some stuff i disagree with, adding
31114 some fixes : time synchronization on invalid timestamps, renegotiation
31116 * sys/ximage/ximagesink.h:
31117 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
31118 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
31119 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
31120 (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
31121 (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
31122 (gst_xvimagesink_buffer_new),
31123 (gst_xvimagesink_navigation_send_event),
31124 (gst_xvimagesink_set_xwindow_id),
31125 (gst_xvimagesink_get_desired_size),
31126 (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
31127 stuff i disagree with, adding some fixes : Renegotiation of private
31128 window, implementing get_desired_size.
31130 2004-01-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
31132 * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
31133 (gst_afsink_handle_event):
31134 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
31135 * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
31136 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
31137 * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
31138 * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
31139 Fix for instantiate-test (see core). Also remove dead code from
31140 jpegenc (which still needs fixing, but that's lower on my TODO
31142 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
31143 Never return NULL as caps.
31145 2004-01-07 David Schleef <ds@schleef.org>
31149 * ext/librfb/Makefile.am:
31150 * ext/librfb/gstrfbsrc.c:
31151 New source plugin based on librfb-0.1. RFB (remote framebuffer)
31152 is the protocol used by VNC.
31154 2004-01-07 David Schleef <ds@schleef.org>
31156 * gst/videofilter/gstvideotemplate.c:
31157 * gst/videofilter/gstvideotemplate.h:
31158 * gst/videofilter/make_filter:
31159 Merge videotemplate header into source file.
31160 * gst/effectv/Makefile.am:
31161 * gst/effectv/gsteffectv.c: (plugin_init):
31162 * gst/effectv/gstwarp.c:
31163 Make warpTV a subclass of videofilter.
31165 2004-01-07 Benjamin Otte <in7y118@public.uni-hamburg.de>
31167 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
31168 Add guard against invalid utf-8 conversions in mad. Just in case.
31170 2004-01-07 Benjamin Otte <in7y118@public.uni-hamburg.de>
31172 * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
31173 Fix for bug shown by poisoning
31175 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
31177 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
31178 (gst_v4lmjpegsrc_buffer_free):
31179 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
31180 (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
31181 (gst_v4lsrc_buffer_free):
31182 Fix for removed bufferpools.
31184 2004-01-07 Jan Schmidt <thaytan@mad.scientist.com>
31186 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
31187 Fix caps negotiation.
31189 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
31190 (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
31191 (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
31193 * ext/mpeg2dec/gstmpeg2dec.c:
31194 * gst-libs/gst/navigation/navigation.c:
31195 (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
31196 * gst-libs/gst/navigation/navigation.h:
31197 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
31198 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
31199 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
31200 Super-simple first version of mouse and keyboard events. Clicking
31201 on a DVD menu now works, although it may not take you where you
31204 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
31205 * gst/videotestsrc/gstvideotestsrc.c:
31206 (gst_videotestsrc_src_fixate):
31207 These fixate functions were broken - they never actually
31210 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
31212 * ext/shout/gstshout.c: (gst_icecastsend_base_init),
31213 (gst_icecastsend_init):
31214 fix for new caps system.
31215 * gst-libs/gst/mixer/mixertrack.h:
31216 * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
31217 Add 'master track' flag (for tools like ACME that only want to
31218 change the main volume).
31220 2004-01-07 Jan Schmidt <thaytan@mad.scientist.com>
31222 * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
31223 (gst_xvid_csp_to_caps):
31224 * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
31225 * ext/xvid/gstxvidenc.c:
31226 ifdef out ARGB type when it isn't available
31227 in xvidcore 1.0.0beta2
31229 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
31231 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
31232 When we have received a new SCR right in the first buffer after
31233 a seek (so in the same cycle that handles the discont), we should
31234 handle the buffer instead of unreffing it, else we lose data.
31236 2004-01-06 Iain <iain@prettypeople.org>
31238 * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
31239 buffer-frames caps too.
31241 * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
31242 caps that we need, don't destroy them all and rebuild them. And when
31243 creating src pads, use the src pad template rather than the sink...
31245 2004-01-05 Ronald Bultje <rbultje@ronald.bitfreak.net>
31247 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
31248 Add pad to element *after* setting functions such as event handler.
31249 Without this, the scheduler (opt) will link pads, set the event
31250 handler from the default event function (dispatcher in gstpad.c)
31251 and *after* that, we will set our own event function, which will
31252 thus never be used (and thus mpegdemux doesn't handle events).
31254 2004-01-04 David Schleef <ds@schleef.org>
31256 Fix the fixate functions to handle new prototype:
31257 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
31258 * gst/videotestsrc/gstvideotestsrc.c:
31259 (gst_videotestsrc_src_fixate):
31260 * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
31261 * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
31262 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
31264 2004-01-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
31266 * sys/ximage/ximagesink.h:
31267 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
31268 (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
31269 (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
31270 (gst_ximagesink_xoverlay_init):
31271 assorted fixes to make (re)embedding work
31272 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
31273 (gst_ximagesink_get_desired_size):
31274 implement desired size additions to XOverlay
31276 2004-01-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
31278 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
31279 (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
31280 (gst_x_overlay_got_desired_size):
31281 * gst-libs/gst/xoverlay/xoverlay.h:
31282 Add optional "desired size" signal and querying.
31284 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31286 * gst/matroska/matroska-demux.c:
31287 (gst_matroska_demux_parse_blockgroup):
31288 Fix EBML-laced block parsing. Diffs are relative to previous
31289 lace, not the first lace. Thanks to Mosu from the Matroska
31290 team for detecting this.
31291 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
31292 (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
31293 (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
31294 (gst_wavparse_change_state):
31295 * gst/wavparse/gstwavparse.h:
31296 Quickfix for capsnego.
31298 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31300 * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
31301 Fix indenting, fix pad creation.
31303 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31305 * ext/xvid/gstxviddec.c: (gst_xviddec_init),
31306 (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
31307 (gst_xviddec_sink_link):
31308 Implement src_getcaps() so proper size caps is negotiated.
31310 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31312 * ext/flac/gstflacdec.c: (gst_flacdec_loop):
31313 Finish flac decoder on EOS. See #116178.
31315 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31317 * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
31318 (gst_matroska_demux_add_stream):
31319 * gst/matroska/matroska-ids.h:
31320 Add getcaps() function to fix capsnego...
31322 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31324 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
31325 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
31326 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
31327 Fix more integer overflows. Again, see #126967.
31329 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31331 * ext/mpeg2dec/gstmpeg2dec.c:
31332 Add support for mpeg2dec-0.4.0 (released two weeks ago). See
31335 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31338 * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
31339 (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
31340 * ext/xvid/gstxvid.h:
31341 * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
31342 (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
31343 (gst_xviddec_src_link), (gst_xviddec_sink_link),
31344 (gst_xviddec_change_state):
31345 * ext/xvid/gstxviddec.h:
31346 * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
31347 (gst_xvidenc_base_init), (gst_xvidenc_class_init),
31348 (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
31349 (gst_xvidenc_link), (gst_xvidenc_set_property),
31350 (gst_xvidenc_get_property), (gst_xvidenc_change_state):
31351 * ext/xvid/gstxvidenc.h:
31352 Update xvid plugin to latest xvid (1.0.0-beta3) API.
31354 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31356 * gst/rtp/rtp-packet.c:
31357 Add sys/types.h include, since OS X doesn't define in_addr_t
31358 in netinet/in.h, like it does on Linux (see #129600).
31360 2004-01-03 Thomas Canty <tommydal@optushome.com.au>
31362 reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net>
31364 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
31365 Correct logic of dispose function (see #129306).
31367 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31369 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
31370 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
31371 (gst_mpeg_parse_init):
31372 * gst/mpegstream/gstmpegparse.h:
31373 Remove clock (which was never provided, i.e. dead code), and
31374 also fix integer overflows at high PTS values (see #126967).
31376 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31378 * ext/flac/gstflacdec.c:
31379 * ext/libpng/gstpngenc.h:
31380 * ext/mikmod/gstmikmod.h:
31381 OS X fixes (see #126628).
31383 2004-01-02 David Schleef <ds@schleef.org>
31385 * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
31386 (gst_alsa_src_base_init): Remove bogus "src" request pad.
31387 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
31388 (gst_mpeg_parse_class_init): Move pad template registration
31389 to class_init, since the derived class (mpegdemux) doesn't
31392 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31394 * sys/ximage/Makefile.am:
31395 * sys/xvideo/Makefile.am:
31396 * sys/xvimage/Makefile.am:
31397 Move interface libs from LDFLAGS to LIBADD, fix relocation errors
31398 after installation (see #127664).
31400 2004-01-02 David Schleef <ds@schleef.org>
31402 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
31403 (gst_ffmpegenc_connect): Negotiation fixes.
31404 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
31405 Remove inappropriate gst_caps_free().
31406 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31407 Reenable Ronald's internal resize code, since the core handles
31410 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31412 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
31413 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
31414 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
31415 Fix pad template stuff.
31417 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31419 * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
31420 * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
31421 fix signed integer reading/writing.
31423 2004-01-02 Benjamin Otte <in7y118@public.uni-hamburg.de>
31426 Remove outdated document
31428 2004-01-03 Jan Schmidt <thaytan@mad.scientist.com>
31430 * gst/cutter/gstcutter.c: (gst_cutter_init):
31431 src pad was being created twice - oops.
31433 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31435 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31436 Comment out internal resize. It doesn't handle the resulting
31437 XEvent internally, does another try_set_caps() which leads to
31438 a really nice loop.
31439 Real fix will come when Julien and Dave are awake. ;).
31441 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31443 * ext/mpeg2enc/gstmpeg2enc.cc:
31444 fix const/nonconst compile issue.
31446 2004-01-02 David Schleef <ds@schleef.org>
31448 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
31449 (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
31450 Add fixate function and a check for bad formats.
31452 2004-01-01 David Schleef <ds@schleef.org>
31455 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
31456 (gst_audiofilter_init):
31457 * gst/debug/efence.c: (gst_efence_init):
31458 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
31459 (gst_deinterlace_init):
31460 * gst/volume/gstvolume.c: (volume_connect):
31462 2004-01-01 David Schleef <ds@schleef.org>
31464 Convert elements to use gst_pad_use_explicit_caps() where
31466 * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
31467 * ext/audiofile/gstafparse.c: (gst_afparse_init),
31468 (gst_afparse_open_file):
31469 * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
31470 (gst_afsrc_open_file):
31471 * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
31472 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
31473 (gst_ffmpegdec_chain):
31474 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
31475 * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
31476 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
31477 (gst_gdk_pixbuf_chain):
31478 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
31479 (gst_jpegdec_chain):
31480 * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
31481 * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
31482 (gst_mikmod_negotiate):
31483 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
31484 (gst_mpeg2dec_negotiate_format):
31485 * ext/mpeg2enc/gstmpeg2enc.cc:
31486 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
31487 * ext/speex/gstspeexdec.c: (gst_speexdec_init),
31488 (gst_speexdec_sinkconnect):
31489 * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
31490 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
31491 (gst_vorbisfile_new_link):
31492 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
31493 (gst_ac3parse_chain):
31494 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
31495 (gst_asf_demux_setup_pad):
31496 * gst/auparse/gstauparse.c: (gst_auparse_init),
31497 (gst_auparse_chain):
31498 * gst/id3/gstid3types.c: (gst_id3types_loop):
31499 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
31500 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
31501 (mp1videoparse_parse_seq):
31502 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
31504 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
31505 (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
31506 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
31507 (gst_mpeg_parse_send_data):
31508 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
31509 (gst_qtdemux_add_stream):
31510 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
31511 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
31512 (gst_wavparse_parse_fmt):
31514 2004-01-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
31517 Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
31518 1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
31519 it therefore uses the wrong include paths. Too bad... Note
31520 that 1.6.1.93 is not release yet. ;).
31521 Also add a check for mplex, which is now using the lib'ified
31522 mplex from mjpegtools, too.
31523 * ext/ffmpeg/gstffmpegcodecmap.c:
31524 Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
31525 issues. I don't think ffmpeg handles 3ivx correctly, so this
31526 probably won't work. But it won't hurt either.
31527 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
31528 (gst_ffmpegdec_chain):
31529 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
31530 (gst_ffmpegenc_chain_audio):
31531 Fix memleak in audio encoding. Close codec if open fails, this
31532 calls the cleanup routines so we can re-use the context.
31533 * ext/mpeg2enc/gstmpeg2enc.cc:
31534 Fix pad template names/types, fix memory issue with getcaps().
31535 * ext/mpeg2enc/gstmpeg2encoder.cc:
31536 * ext/mpeg2enc/gstmpeg2encoder.hh:
31537 Fix compile issue with new caps system (const thingy).
31538 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
31539 * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
31540 We read a first frame right on initing, so that we have a caps
31541 when we init the output. This caps is cached in padprivate and
31542 read as first frame.
31543 * ext/mplex/Makefile.am:
31544 * ext/mplex/gstmplex.cc:
31545 * ext/mplex/gstmplex.h:
31546 * ext/mplex/gstmplex.hh:
31547 * ext/mplex/gstmplexibitstream.cc:
31548 * ext/mplex/gstmplexibitstream.hh:
31549 * ext/mplex/gstmplexjob.cc:
31550 * ext/mplex/gstmplexjob.hh:
31551 * ext/mplex/gstmplexoutputstream.cc:
31552 * ext/mplex/gstmplexoutputstream.hh:
31553 We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
31554 had issues, didn't do capsnego, supported only a subset of the
31555 mplex features and required a mplex fork in our local CVS. Plus
31556 that it worked agaist a very old mplex version. Rewriting was
31557 faster than updating it.
31558 * gst-libs/ext/Makefile.am:
31559 * gst-libs/ext/mplex/INSTRUCT:
31560 * gst-libs/ext/mplex/Makefile.am:
31561 * gst-libs/ext/mplex/README:
31562 * gst-libs/ext/mplex/TODO:
31563 * gst-libs/ext/mplex/ac3strm_in.cc:
31564 * gst-libs/ext/mplex/audiostrm.hh:
31565 * gst-libs/ext/mplex/audiostrm_out.cc:
31566 * gst-libs/ext/mplex/aunit.hh:
31567 * gst-libs/ext/mplex/bits.cc:
31568 * gst-libs/ext/mplex/bits.hh:
31569 * gst-libs/ext/mplex/buffer.cc:
31570 * gst-libs/ext/mplex/buffer.hh:
31571 * gst-libs/ext/mplex/fastintfns.h:
31572 * gst-libs/ext/mplex/format_codes.h:
31573 * gst-libs/ext/mplex/inputstrm.cc:
31574 * gst-libs/ext/mplex/inputstrm.hh:
31575 * gst-libs/ext/mplex/lpcmstrm_in.cc:
31576 * gst-libs/ext/mplex/mjpeg_logging.cc:
31577 * gst-libs/ext/mplex/mjpeg_logging.h:
31578 * gst-libs/ext/mplex/mjpeg_types.h:
31579 * gst-libs/ext/mplex/mpastrm_in.cc:
31580 * gst-libs/ext/mplex/mpegconsts.cc:
31581 * gst-libs/ext/mplex/mpegconsts.h:
31582 * gst-libs/ext/mplex/mplexconsts.hh:
31583 * gst-libs/ext/mplex/multplex.cc:
31584 * gst-libs/ext/mplex/outputstream.hh:
31585 * gst-libs/ext/mplex/padstrm.cc:
31586 * gst-libs/ext/mplex/padstrm.hh:
31587 * gst-libs/ext/mplex/stillsstream.cc:
31588 * gst-libs/ext/mplex/stillsstream.hh:
31589 * gst-libs/ext/mplex/systems.cc:
31590 * gst-libs/ext/mplex/systems.hh:
31591 * gst-libs/ext/mplex/vector.cc:
31592 * gst-libs/ext/mplex/vector.hh:
31593 * gst-libs/ext/mplex/videostrm.hh:
31594 * gst-libs/ext/mplex/videostrm_in.cc:
31595 * gst-libs/ext/mplex/videostrm_out.cc:
31596 * gst-libs/ext/mplex/yuv4mpeg.cc:
31597 * gst-libs/ext/mplex/yuv4mpeg.h:
31598 * gst-libs/ext/mplex/yuv4mpeg_intern.h:
31599 * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
31600 We don't fork mjpegtools' mplex in our CVS anymore.
31601 * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
31602 (gst_avi_demux_add_stream):
31603 * gst/avi/gstavidemux.h:
31604 Add getcaps() function for proper caps nego. This makes some
31605 parts of AVI playback/reading work.
31606 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31607 Resize window on new capsnego. This is probably wrong, but
31608 I'm still committing it because with current capsnego, the
31609 first successfull capsnego is auto-fixated, therefore rounded
31610 down to the lowest values in the caps. this results in a 16x16
31611 XWindow that is not reized when real capsnego finishes.
31612 Dave, I see more cases of this, do you know a proper solution?
31613 * tools/gst-launch-ext.in:
31614 Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
31616 2003-12-31 David Schleef <ds@schleef.org>
31618 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
31619 * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
31620 Change gst_pad_proxy_link() to gst_pad_try_set_caps()
31622 2003-12-30 David Schleef <ds@schleef.org>
31624 * ext/ffmpeg/gstffmpegcolorspace.c:
31625 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
31626 (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
31627 (gst_ffmpegcsp_chain): Negotiation fixes
31628 * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
31629 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
31630 (gst_audio_convert_link), (gst_audio_convert_channels):
31631 * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
31632 (gst_audioscale_link), (gst_audioscale_get_buffer),
31633 (gst_audioscale_chain): Negotiation fixes
31634 * gst/audioscale/gstaudioscale.h:
31635 * gst/videofilter/gstvideofilter.c:
31636 (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
31637 (gst_videofilter_link), (gst_videofilter_init),
31638 (gst_videofilter_set_output_size), (gst_videofilter_setup),
31639 (gst_videofilter_find_format_by_structure):
31640 * gst/videofilter/gstvideofilter.h: Negotiation fixes
31641 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
31642 (gst_videoscale_link):
31643 * gst/videoscale/videoscale.c: (videoscale_get_structure),
31644 (videoscale_find_by_structure), (gst_videoscale_setup):
31645 * gst/videoscale/videoscale.h: Negotiation fixes
31646 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
31647 (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
31648 function, restrict resizing to a multiple of 4 (hack until
31649 everyone supports odd sizes correctly).
31651 2003-12-29 Colin Walters <walters@verbum.org>
31653 * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
31656 2003-12-30 Jan Schmidt <thaytan@mad.scientist.com>
31658 * ext/sndfile/gstsf.c: (gst_sf_loop):
31659 Fix warning about discarding const qualifier
31661 2003-12-27 Jeremy Simon <jesimon@libertysurf.fr>
31663 * gst/cutter/gstcutter.c:
31664 * gst/videoscale/gstvideoscale.c:
31665 * gst/volenv/gstvolenv.c:
31666 * gst-libs/gst/audio/audio.c:
31667 * gst-libs/gst/video/video.c:
31670 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31672 * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
31673 Don't send ALSA debugging to stderr.
31674 * ext/alsa/gstalsa.h:
31675 Use GST_WARNING instead of g_warning when ALSA functions fail.
31677 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31679 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
31680 Free XVAdapterInfo correctly.
31682 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31684 * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
31685 (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
31686 Make id3tag use correct caps nego.
31688 2003-12-27 Amaury Jacquot <sxpert@esitcom.org>
31690 * ext/ivorbis/vorbis.c:
31691 * ext/ivorbis/vorbisenc.h:
31692 * ext/ivorbis/vorbisfile.c:
31693 Modify so that it uses the new caps things
31695 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31697 * testsuite/spider/spider1.c: (main):
31698 * testsuite/spider/spider2.c: (main):
31699 * testsuite/spider/spider3.c: (main):
31700 Make tests compile again. They probably don't work.
31702 2003-12-24 Colin Walters <walters@verbum.org>
31704 * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
31705 we can't fixate the caps anymore.
31707 2003-12-23 David Schleef <ds@schleef.org>
31709 * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
31710 * sys/oss/gstosssink.c: (gst_osssink_init),
31711 (gst_osssink_sink_fixate): Add fixate function.
31713 2003-12-24 Ronald Bultje <rbultje@ronald.bitfreak.net>
31715 * ext/ffmpeg/gstffmpegcodecmap.c:
31716 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
31717 (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
31718 (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
31719 (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
31720 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
31721 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
31722 (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
31723 fix typo in RGB masks, and move back to "old" colorspace
31724 capsnego code until whoever wrote this new crap has actually
31725 tested it so that it works.
31726 And yes, this works, keep it that way please.
31728 2003-12-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
31730 * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
31731 (gst_divxdec_init), (gst_divxdec_negotiate):
31732 * ext/divx/gstdivxdec.h:
31733 * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
31734 (gst_divxenc_init):
31735 * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
31736 (gst_faac_sinkconnect), (gst_faac_srcconnect):
31737 * ext/mpeg2enc/gstmpeg2enc.cc:
31738 * ext/mpeg2enc/gstmpeg2encoder.cc:
31739 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
31740 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
31741 (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
31742 * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
31743 (dxr3spusink_init):
31744 * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
31745 (dxr3videosink_init):
31746 Fix caps breakage after Dave's caps branch merge.
31748 2003-12-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
31750 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
31751 Fix for 24bpp display.
31753 2003-12-23 Colin Walters <walters@verbum.org>
31755 * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
31756 a GnomeVFSHandle directly.
31758 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31760 * gst/volume/Makefile.am:
31761 * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
31762 (volume_base_init), (volume_init):
31763 Reenable volume element and fix to work with new caps stuff.
31764 Rhythmbox needs this.
31766 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31768 * gst/qtdemux/qtdemux.c: (plugin_init):
31769 qtdemux requires bytestream
31771 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31773 * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
31774 Fix remaining caps handling errors due to CAPS merge.
31776 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31778 * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
31779 (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
31780 (gst_faad_srcconnect):
31781 Port to new caps system.
31783 2003-12-21 Julien MOUTTE <julien@moutte.net>
31785 * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
31786 (got_video_size), (main): using g_print instead of g_message.
31787 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
31788 signal which was not emitted because of "switch" element added to the
31789 bin but not connected. (Removing from the bin temporarily)
31791 2003-12-21 Julien MOUTTE <julien@moutte.net>
31793 * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
31794 find X development files. I don't understand the previous tests and
31795 they fail on my debian/ppc unstable. This one works.
31796 * examples/gstplay/player.c: (main): Set the pipeline to READY before
31798 * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
31799 (gst_play_set_video_sink), (gst_play_set_audio_sink),
31800 (gst_play_set_visualization): Add some safety checks in set_ methods
31801 and state_change. This was throwing some ugly CRITICAL messages when
31802 pipeline was getting disposed and casts were failing.
31804 2003-12-21 Ronald Bultje <rbultje@ronald.bitfreak.net>
31807 Improve mpeg2enc detection. This is for distributions that do
31808 ship mjpegtools, but without mpeg2enc. Also does object check
31809 for might there ever be ABI incompatibility.
31810 * ext/mpeg2enc/gstmpeg2enc.cc:
31811 Add Andrew as second maintainer (he's helping me), and also add
31812 an error if no caps was set. This happens if I pull before capsnego
31813 and that's something I should solve sometime else.
31814 * gst/matroska/matroska-demux.c:
31815 (gst_matroska_demux_parse_blockgroup):
31817 * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
31818 (gst_matroska_mux_track_header):
31819 Add caps to templates.
31820 * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
31821 Add mpegversion=1 to prevent confusion with MPEG/AAC.
31822 * gst/mpegstream/gstmpegdemux.c:
31823 Remove layer since it causes warnings about unfixed caps.
31824 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
31825 Fix obvious typo (we error out if caps were set, we should of
31826 course error out if *no* caps were set).
31827 * sys/oss/gstosselement.c: (gst_osselement_convert):
31828 Fix format conversion, we confused bits/bytes.
31829 * sys/oss/gstosselement.h:
31830 Improve documentation for 'bps'.
31832 Remove stuff about plugins that need removing - this was done
31834 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
31835 (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
31836 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
31837 (gst_v4lsrc_src_query):
31838 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
31839 (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
31840 Add get_query_types(), get_formats() and query() functions.
31842 2003-12-21 Thomas Vander Stichele <thomas at apestaart dot org>
31844 * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
31845 * moved CVS to freedesktop.org